:root {
  --cream: #f8f4ec;
  --cream-2: #f1e9dc;
  --ink: #26221d;
  --ink-soft: #5c5348;
  --charcoal: #1c1a17;
  --rope: #c69a6d;
  --rope-dark: #a97c50;
  --olive: #7d8b5a;
  --heart: #b5342b;
  --whatsapp: #25d366;
  --line: rgba(38, 34, 29, .14);
  --radius: 14px;
  --shadow: 0 12px 34px rgba(38, 34, 29, .10);
  --wrap: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--cream); padding: .7rem 1.1rem;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rope-dark);
  margin-bottom: .9rem;
  font-weight: 400;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 244, 236, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; }
.brand-tag {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rope-dark);
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  text-decoration: none; font-size: .95rem; position: relative; padding: .25rem 0;
  transition: color .2s;
}
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rope-dark); transition: width .25s ease;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--charcoal); color: var(--cream);
  padding: .55rem 1.1rem !important; border-radius: 999px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--rope-dark); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: .55rem;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; text-decoration: none;
  font-size: .95rem; letter-spacing: .02em; border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .65rem 1.25rem; font-size: .88rem; }

.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { background: var(--rope-dark); }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--rope-dark); color: var(--rope-dark); }

.btn-outline { border-color: rgba(248, 244, 236, .4); color: var(--cream); }
.btn-outline:hover { border-color: var(--cream); background: rgba(248, 244, 236, .08); }

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(198, 154, 109, .16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(125, 139, 90, .14), transparent 50%),
    var(--cream);
}

.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--rope-dark); }

.lead { font-size: 1.1rem; max-width: 52ch; color: var(--ink-soft); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 2rem; }

.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem .6rem;
  padding: 0; margin: 0;
}
.hero-badges li {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  border: 1px dashed var(--rope); border-radius: 999px;
  padding: .35rem .95rem; color: var(--rope-dark);
}

.hero-figure { display: flex; justify-content: center; }

.hoop {
  position: relative; width: min(100%, 400px); aspect-ratio: 1;
  border-radius: 50%; padding: 14px;
  background: linear-gradient(140deg, #e2b98e, #b8834f 45%, #e6c49e);
  box-shadow: var(--shadow);
}
.hoop img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 6px solid var(--cream);
}
.hoop::after {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px dashed rgba(168, 124, 80, .45);
}

/* ---------- Sections ---------- */

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--cream-2); }

.section-dark {
  background:
    radial-gradient(circle at 80% 15%, rgba(198, 154, 109, .18), transparent 55%),
    var(--charcoal);
  color: var(--cream);
}
.section-dark .eyebrow { color: var(--rope); }

.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head .section-sub { color: var(--ink-soft); margin: 0; }

/* ---------- About ---------- */

.about {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.about-photo::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px dashed var(--rope); border-radius: var(--radius); z-index: -1;
}

.about-text p { color: var(--ink-soft); }
.signature {
  font-family: var(--serif); font-style: italic; font-size: 1.45rem;
  color: var(--rope-dark); margin-top: 1.4rem;
}

/* ---------- Cards ---------- */

.cards {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rope);
}
.card p { color: var(--ink-soft); margin: 0; font-size: .97rem; }
.card-icon { color: var(--rope-dark); font-size: 1.2rem; display: block; margin-bottom: .7rem; }

.card-cta {
  background: linear-gradient(150deg, var(--cream-2), #fff);
  border-style: dashed; border-color: var(--rope);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.card-cta p { margin-bottom: 1.3rem; }

/* ---------- Filters ---------- */

.filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
  margin-bottom: 2.2rem;
}
.filter {
  font-family: var(--sans); font-size: .88rem; font-weight: 400;
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  padding: .5rem 1.15rem; border-radius: 999px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.filter:hover { border-color: var(--rope-dark); color: var(--rope-dark); }
.filter.is-active { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }

/* ---------- Gallery ---------- */

.gallery { columns: 4; column-gap: 1rem; }

.shot {
  break-inside: avoid; margin: 0 0 1rem; position: relative; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: 0 4px 16px rgba(38, 34, 29, .07);
  transition: transform .25s, box-shadow .25s;
}
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.shot img { width: 100%; height: auto; }

.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(28, 26, 23, .88));
  color: #fff; font-size: .88rem; padding: 2.2rem .9rem .8rem;
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s;
}
.shot:hover figcaption, .shot:focus-within figcaption { opacity: 1; transform: none; }
.shot.is-hidden { display: none; }

/* ---------- Steps ---------- */

.steps {
  list-style: none; padding: 0; margin: 0; counter-reset: step;
  display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps li { position: relative; padding-top: .5rem; }
.steps li::before {
  content: ""; position: absolute; top: 26px; left: 46px; right: -1.4rem; height: 1px;
  border-top: 1px dashed var(--rope);
}
.steps li:last-child::before { display: none; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--rope); color: var(--rope-dark);
  font-family: var(--serif); font-size: 1.3rem; margin-bottom: 1rem;
  background: var(--cream);
}
.steps p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* ---------- Contact ---------- */

.contact {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact p { color: rgba(248, 244, 236, .78); max-width: 50ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.contact .btn-primary { background: var(--whatsapp); color: #06301a; }
.contact .btn-primary:hover { background: #1fc25c; }

.contact-info { list-style: none; padding: 0; margin: 0; }
.contact-info li {
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1rem 0; border-bottom: 1px dashed rgba(248, 244, 236, .22);
  font-size: .97rem;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info span {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rope);
}
.contact-info a { text-decoration: none; }
.contact-info a:hover { color: var(--rope); }

/* ---------- Footer ---------- */

.site-footer { background: var(--cream-2); border-top: 1px solid var(--line); padding: 2.5rem 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { border-radius: 50%; }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.1rem; }
.footer-brand span { font-size: .82rem; color: var(--ink-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { text-decoration: none; font-size: .9rem; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--rope-dark); }
.footer-note { width: 100%; margin: 0; font-size: .8rem; color: var(--ink-soft); text-align: center; }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20, 18, 16, .94);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox[hidden] { display: none; }

.lb-figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lb-figure img {
  max-width: 100%; max-height: 80vh; width: auto; margin-inline: auto;
  border-radius: 8px; box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.lb-figure figcaption {
  color: rgba(248, 244, 236, .85); font-size: .95rem; margin-top: 1rem;
  font-family: var(--serif); font-size: 1.15rem;
}

.lb-close, .lb-nav {
  position: absolute; background: rgba(248, 244, 236, .1); border: 0;
  color: var(--cream); cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(248, 244, 236, .25); }

.lb-close { top: 1rem; right: 1rem; width: 44px; height: 44px; font-size: 1.9rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.4rem; line-height: 1; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1100px) { .gallery { columns: 3; } }

@media (max-width: 900px) {
  .hero-inner, .about, .contact { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hoop { width: min(72%, 300px); }
  .about-photo { max-width: 380px; }
  .steps li::before { display: none; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.5rem;
    transform: translateY(-130%); transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-top: 1rem; border-bottom: 0 !important; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .gallery { columns: 2; column-gap: .7rem; }
  .shot { margin-bottom: .7rem; }
  .shot figcaption { opacity: 1; transform: none; font-size: .78rem; padding: 1.6rem .6rem .6rem; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.9rem; }
  .lb-prev { left: .35rem; }
  .lb-next { right: .35rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .card-cta .btn { width: auto; }
}

@media (max-width: 359px) {
  .gallery { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
