:root {
  --beige: #F7E6D6;
  --beige-soft: #FBEEDF;
  --navy: #0A3873;
  --navy-deep: #05264F;
  --blue: #ADBCE3;
  --gold: #A8761B;
  --muted: rgba(10, 56, 115, 0.72);
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --radius: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--beige);
  color: var(--navy);
  font-family: "Inter", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.047em;
  margin: 0 0 1rem;
  color: inherit;
}

h1 {
  font-size: clamp(3.55rem, 9.4vw, 8.8rem);
  max-width: 1030px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5.05rem);
}

h3 {
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1.1rem;
  font-size: 1.04rem;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: var(--beige);
  padding: .8rem 1rem;
}
.skip-link:focus { left: 0; }

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(74px, 11vw, 150px) 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,230,214,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(168,118,27,.18);
}

.header-inner {
  width: min(calc(100% - 32px), 1280px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:650;
  letter-spacing:.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.site-nav {
  display:flex;
  align-items:center;
  gap:28px;
  font-size:.94rem;
}

.site-nav a {
  text-decoration:none;
  position:relative;
}

.site-nav a:not(.nav-cta)::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.site-nav a:hover::after {
  width:100%;
}

.nav-cta, .button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  display:inline-flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
  line-height: 1.08;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.button span {
  display: block;
  font-size: .72rem;
  opacity: .78;
  font-weight: 650;
  margin-top: 2px;
}

.nav-cta,
.button.primary {
  background: var(--navy);
  color: var(--beige);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.button.primary.light {
  background: var(--beige);
  color: var(--navy);
}

.button.secondary.light-outline {
  color: var(--beige);
  border-color: rgba(247,230,214,.65);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display:none;
  background:transparent;
  border:0;
  width:44px;
  height:44px;
  padding:8px;
}

.menu-toggle span:not(.sr-only) {
  display:block;
  height:2px;
  background:var(--navy);
  margin:6px 0;
}

/* Hero */
.hero {
  min-height: calc(100vh - 76px);
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top: clamp(62px, 8vw, 105px);
  padding-bottom: clamp(130px, 18vw, 210px);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1060px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size:.73rem;
  color: var(--gold);
  font-weight:800;
  margin-bottom: 1rem;
}

.section-kicker.light {
  color: rgba(247,230,214,.8);
}

.hero-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 3rem);
  letter-spacing: -.035em;
  line-height: 1.1;
  margin: -.25rem 0 1.4rem;
}

.gold-line {
  width:78px;
  height:2px;
  background:var(--gold);
  margin: 24px 0 28px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.16rem, 1.5vw, 1.42rem);
}

.hero-support {
  max-width: 710px;
  color: var(--muted);
}

.hero-actions,
.button-row {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin: 30px 0 18px;
}

.button-row.center {
  justify-content:center;
}

.trust-line {
  color: var(--muted);
  font-size:.93rem;
}

.hero-monogram {
  position: absolute;
  right: min(6vw, 80px);
  top: clamp(115px, 16vh, 185px);
  z-index: 1;
  opacity: .86;
}

.hero-monogram img {
  width: clamp(64px, 8vw, 110px);
  filter: drop-shadow(0 12px 30px rgba(10,56,115,.08));
}

.hero-wave {
  position:absolute;
  inset:auto -10% -10% -10%;
  height:31%;
  background:
    radial-gradient(82% 145% at 86% 16%, var(--blue) 0 26%, transparent 27%),
    radial-gradient(96% 140% at 22% 64%, var(--navy) 0 39%, transparent 40%);
  clip-path: ellipse(70% 52% at 50% 82%);
  animation: waveDrift 12s var(--ease) infinite alternate;
}

@keyframes waveDrift {
  from { transform: translate3d(-1%, 0, 0) scale(1); }
  to { transform: translate3d(1.2%, -1.6%, 0) scale(1.018); }
}

/* Signature */
.signature {
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-soft) 100%);
}

.signature-grid,
.split,
.training-layout,
.quality-layout {
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 7vw, 90px);
  align-items:start;
}

.signature-quote {
  border-left: 2px solid var(--gold);
  padding-left: clamp(22px, 3vw, 36px);
}

.signature-quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.2vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.signature-copy p:not(.section-kicker) {
  color: var(--muted);
}

.section-header {
  max-width: 790px;
  margin-bottom: 44px;
}

/* Audience */
.audience-list {
  border-top: 1px solid rgba(168,118,27,.36);
}

.audience-row {
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(168,118,27,.36);
  transition: padding-left .32s var(--ease);
}

.audience-row:hover {
  padding-left: 12px;
}

.audience-row > span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 1.6rem;
}

.audience-row h3 {
  margin-bottom:.45rem;
}

.audience-row p {
  max-width: 760px;
  color: var(--muted);
}

/* Navy section */
.navy-section {
  background: var(--navy);
  color: var(--beige);
  overflow:hidden;
}

.navy-section h2,
.navy-section p {
  color: var(--beige);
}

.navy-section::before {
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  border-radius:50%;
  background:var(--blue);
  opacity:.17;
  top:-130px;
  right:-120px;
}

/* Accordion */
.accordion {
  border-top: 1px solid rgba(168,118,27,.55);
}

.accordion-item {
  border-bottom: 1px solid rgba(168,118,27,.55);
}

.accordion-trigger {
  width:100%;
  min-height:74px;
  background:transparent;
  border:0;
  color:inherit;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:0;
  text-align:left;
  font:inherit;
  cursor:pointer;
}

.accordion-trigger span:first-child {
  font-weight:700;
}

.icon {
  color: var(--gold);
  font-size:1.55rem;
  width:24px;
  text-align:center;
}

.accordion-panel {
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}

.accordion-item.open .accordion-panel {
  max-height:190px;
}

.accordion-panel p {
  padding:0 0 24px;
  opacity:.82;
}

/* Training */
.training-intro p:not(.section-kicker) {
  color: var(--muted);
  max-width: 500px;
}

.format-list {
  border-top: 1px solid rgba(168,118,27,.36);
}

.format-list > div {
  padding: 27px 0;
  border-bottom: 1px solid rgba(168,118,27,.36);
}

.format-list h3 {
  margin-bottom: .3rem;
}

.format-list p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  color: var(--navy);
  font-weight:800;
  text-decoration:none;
  border-bottom: 1px solid var(--gold);
  padding-bottom:4px;
  margin-top: 8px;
}


/* Corporate */
.corporate-panel {
  background: var(--beige);
  padding-top: 0;
}

.corporate-card {
  background: var(--navy);
  color: var(--beige);
  border-radius: 44px;
  padding: clamp(38px, 7vw, 78px);
  position: relative;
  overflow: hidden;
}

.corporate-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -180px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .16;
}

.corporate-card > * {
  position: relative;
  z-index: 2;
}

.corporate-card h2,
.corporate-card p {
  color: var(--beige);
  max-width: 760px;
}

.light-link {
  color: var(--beige);
  border-color: var(--gold);
}

/* Discretion */
.discretion {
  background:
    radial-gradient(70% 80% at 0% 20%, rgba(173,188,227,.28), transparent 50%),
    var(--beige);
}

.discretion-panel {
  max-width: 960px;
}

.discretion-panel p:not(.section-kicker) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.18rem;
}

.three-words {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top: 32px;
}

.three-words span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  border-bottom: 2px solid var(--gold);
}

/* About / images */
.about-grid {
  align-items:center;
}

.photo-frame {
  min-height: 520px;
  border: 1px solid rgba(168,118,27,.38);
  border-radius: 42px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(10,56,115,.12);
}

.editorial-photo {
  min-height:520px;
  height:100%;
  background:
    linear-gradient(140deg, rgba(10,56,115,.96), rgba(10,56,115,.63)),
    radial-gradient(circle at 28% 20%, rgba(173,188,227,.58), transparent 34%);
  color:var(--beige);
  display:flex;
  flex-direction:column;
  justify-content:end;
  padding:34px;
  transition: transform .6s var(--ease);
}

.photo-frame:hover .editorial-photo {
  transform: scale(1.035);
}

.editorial-photo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size:2.25rem;
}

.editorial-photo small {
  color: rgba(247,230,214,.76);
}

.background-list {
  display:grid;
  gap:14px;
  margin-top:28px;
}

.background-list div {
  display:flex;
  gap:12px;
  align-items:center;
}

.background-list span {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gold);
  flex:0 0 auto;
}

.image-direction,
.faq {
  background: var(--beige-soft);
}

.muted {
  color: var(--muted);
}

.visual-grid {
  display:grid;
  grid-template-columns:1fr .82fr 1fr;
  grid-template-rows:240px 240px;
  gap:20px;
}

.visual-tile {
  border-radius:32px;
  background: linear-gradient(135deg, rgba(10,56,115,.9), rgba(173,188,227,.56));
  color:var(--beige);
  display:flex;
  align-items:end;
  padding:24px;
  border:1px solid rgba(168,118,27,.34);
  transition: transform .5s var(--ease);
}

.visual-tile:hover {
  transform: scale(1.02);
}

.visual-tile.tall {
  grid-row: span 2;
}

/* Quality */
.quality-list {
  display:grid;
  gap: 26px;
}

.quality-item {
  border-top: 2px solid var(--gold);
  padding-top: 22px;
}

.quality-item p {
  color: var(--muted);
  max-width: 540px;
}

.case-strip {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.case-card {
  background: rgba(251,238,223,.68);
  border:1px solid rgba(168,118,27,.28);
  border-radius:30px;
  padding:28px;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow:0 18px 50px rgba(10,56,115,.12);
}

.case-card::before {
  content:"";
  display:block;
  width:50px;
  height:2px;
  background:var(--gold);
  margin-bottom:24px;
}

/* CTA / Footer */
.contact-cta {
  background: var(--navy);
  color: var(--beige);
  text-align:center;
  overflow:hidden;
}

.contact-cta h2,
.contact-cta p {
  color:var(--beige);
}

.contact-cta .container {
  max-width: 850px;
  position:relative;
  z-index:2;
}

.contact-cta::before {
  content:"";
  position:absolute;
  inset:auto -20% -40% -20%;
  height:76%;
  background: radial-gradient(70% 80% at 80% 24%, rgba(173,188,227,.28), transparent 54%);
}

.contact-line a {
  color:var(--beige);
  text-decoration-color:var(--gold);
}

.site-footer {
  background: var(--navy-deep);
  color:var(--beige);
  padding: 72px 0 112px;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr .6fr;
  gap:36px;
}

.footer-logo {
  width:64px;
  margin-bottom:18px;
}

.site-footer h2 {
  color:var(--beige);
  font-size:2rem;
}

.site-footer a {
  color:var(--beige);
  text-decoration-color:var(--gold);
  text-underline-offset:4px;
}

.footer-links {
  display:grid;
  gap:10px;
  align-content:start;
}

.sticky-whatsapp {
  position:fixed;
  z-index:80;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:var(--navy);
  color:var(--beige);
  border:1px solid var(--gold);
  border-radius:999px;
  padding:14px 22px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 42px rgba(10,56,115,.26);
  display:none;
}

/* Reveal */
.reveal {
  opacity:0;
  transform:translateY(26px);
  transition:opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.in-view {
  opacity:1;
  transform:translateY(0);
}

.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }

/* Responsive */
@media (max-width: 1040px) {
  .signature-grid,
  .split,
  .training-layout,
  .quality-layout,
  .footer-grid {
    grid-template-columns:1fr;
  }

  .case-strip {
    grid-template-columns:1fr;
  }

  .hero-monogram {
    opacity: .28;
  }
}

@media (max-width: 760px) {
  .container {
    width:min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    min-height:68px;
  }

  .menu-toggle {
    display:block;
    z-index:60;
  }

  .site-nav {
    position:fixed;
    inset:68px 16px auto 16px;
    background:var(--navy);
    color:var(--beige);
    border:1px solid rgba(168,118,27,.55);
    border-radius:26px;
    padding:24px;
    display:grid;
    gap:18px;
    transform:translateY(-16px);
    opacity:0;
    pointer-events:none;
    transition:opacity .28s var(--ease), transform .28s var(--ease);
  }

  .site-nav.open {
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .site-nav a:not(.nav-cta)::after {
    display:none;
  }

  .nav-cta {
    background:var(--beige);
    color:var(--navy);
  }

  .hero {
    min-height:auto;
    padding-top:62px;
    padding-bottom:118px;
  }

  .hero-monogram {
    display: none;
  }

  .hero-wave {
    height:22%;
    animation:none;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 5.6rem);
  }

  .hero-actions,
  .button-row {
    align-items:stretch;
  }

  .button {
    width:100%;
  }

  .audience-row {
    grid-template-columns:1fr;
    gap:8px;
  }

  .audience-row:hover {
    padding-left:0;
  }

  .corporate-card {
    border-radius: 30px;
    padding: 34px 24px;
  }

  .visual-grid {
    grid-template-columns:1fr;
    grid-template-rows:none;
  }

  .visual-tile,
  .visual-tile.tall {
    min-height:220px;
    grid-row:auto;
  }

  .photo-frame,
  .editorial-photo {
    min-height:390px;
  }

  .sticky-whatsapp {
    display:inline-flex;
    width:calc(100% - 32px);
    justify-content:center;
    bottom:14px;
  }

  .site-footer {
    padding-bottom:122px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}


/* V6 subpages and expanded components */
.subhero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(70px, 9vw, 125px);
  padding-bottom: clamp(120px, 16vw, 190px);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.tag-grid span,
.inquiry-list span {
  border: 1px solid rgba(168,118,27,.5);
  border-radius: 999px;
  padding: 10px 15px;
  color: inherit;
  background: rgba(247,230,214,.08);
  font-size: .94rem;
}

.process-section {
  background: var(--beige);
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list > div {
  border-top: 1px solid rgba(168,118,27,.38);
  padding-top: 20px;
}

.process-list span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 6px;
}

.inquiry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px auto 18px;
  max-width: 820px;
}

.inquiry-list span {
  color: var(--beige);
}

@media (max-width: 760px) {
  .subhero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 116px;
  }

  .tag-grid span,
  .inquiry-list span {
    width: 100%;
  }
}
