:root {
  --wine: #431C1C;
  --wine-900: #2E1212;
  --wine-700: #5A2828;
  --cream: #F5F3ED;
  --beige: #E9DCD0;
  --sand: #D9C08D;
  --taupe: #857A7A;
  --ink: #221717;
  --muted: #655757;
  --white: #FFFFFF;
  --line: rgba(67, 28, 28, .16);
  --shadow: 0 22px 70px rgba(67, 28, 28, .12);
  --edge: clamp(24px, 5vw, 88px);
  --radius: 22px;
  --fast: 180ms ease;
  --slow: 700ms cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--sand); color: var(--wine); }

.skip-link {
  position: fixed;
  left: var(--edge);
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--wine);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(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;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(245, 243, 237, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: 100%;
  min-height: 78px;
  padding: 14px var(--edge);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; width: clamp(220px, 18vw, 290px); flex: 0 0 auto; align-items: center; }
.brand img { width: 100%; height: auto; display: block; object-fit: contain; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--wine);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.nav-link:hover,
.nav-link.is-active,
.nav-dropdown.is-open .nav-link--services,
.nav-dropdown:hover .nav-link--services {
  background: rgba(67, 28, 28, .08);
  border-color: rgba(67, 28, 28, .12);
}
.nav-link--contact {
  background: var(--wine);
  color: var(--cream);
  padding-inline: 18px;
}
.nav-link--contact:hover,
.nav-link--contact.is-active {
  background: var(--wine-900);
  color: var(--cream);
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle { padding-inline: 8px 12px; margin-left: -8px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 278px;
  padding: 10px;
  display: grid;
  gap: 3px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--fast), transform var(--fast), visibility var(--fast);
}
.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--wine);
  font-weight: 650;
  font-size: .92rem;
}
.nav-dropdown-menu a:hover { background: rgba(67, 28, 28, .08); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-control { display: inline-flex; flex: 0 0 auto; }
.language-control select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--wine);
  font-weight: 800;
  padding: 0 12px;
  cursor: pointer;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--wine);
  border-radius: 99px;
  transition: transform var(--fast);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.home-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--wine-900);
  color: var(--cream);
}
.home-hero-video,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero-video { object-fit: cover; }
.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(46, 18, 18, .88) 0%, rgba(46, 18, 18, .64) 42%, rgba(46, 18, 18, .44) 100%),
    linear-gradient(0deg, rgba(46, 18, 18, .64) 0%, rgba(46, 18, 18, .08) 48%, rgba(46, 18, 18, .32) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(140px, 18vh, 190px) var(--edge) clamp(70px, 10vh, 120px);
}
.home-hero-content h1 {
  width: min(980px, 100%);
  margin: 14px 0 22px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.7rem, 8vw, 8.8rem);
  line-height: .88;
  letter-spacing: -.045em;
}
.home-hero-lead {
  width: min(760px, 100%);
  margin: 0 0 34px;
  color: rgba(245, 243, 237, .9);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, #EFE7DB 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  width: 100%;
  min-height: 64vh;
  padding: clamp(112px, 13vh, 160px) var(--edge) clamp(64px, 9vh, 104px);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.page-hero-copy h1 {
  width: min(860px, 100%);
  margin: 12px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine);
  font-size: clamp(3.1rem, 6vw, 6.7rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.page-hero-copy p:last-child {
  width: min(740px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
}
.page-hero-image {
  margin: 0;
  height: clamp(360px, 48vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.section,
.lead-capture {
  width: 100%;
}
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--wine { background: var(--wine); color: var(--cream); }
.section-inner,
.lead-capture-inner,
.footer-inner,
.footer-bottom {
  width: 100%;
  padding-left: var(--edge);
  padding-right: var(--edge);
}
.lead-capture {
  background: var(--beige);
  border-bottom: 1px solid var(--line);
}
.lead-capture-inner {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}
.lead-copy h2,
.section-copy h2,
.section-head h2,
.cta-band h2,
.deliverables h2 {
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine);
  font-size: clamp(2.25rem, 4.2vw, 4.9rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.lead-copy p:last-child,
.section-head p,
.section-copy p,
.cta-band p,
.prose p {
  color: var(--muted);
}
.section--wine .section-copy h2,
.section--wine .section-head h2,
.section--wine .prose p,
.section--wine .section-head p { color: var(--cream); }
.section--wine .prose p,
.section--wine .section-head p { color: rgba(245, 243, 237, .78); }
.eyebrow {
  margin: 0;
  color: var(--wine-700);
  font-size: .76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}
.eyebrow--light { color: var(--sand); }
.split-grid,
.media-grid,
.contact-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}
.media-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.contact-grid { grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); }
.service-detail-grid { grid-template-columns: minmax(0, 1.04fr) minmax(320px, .55fr); }
.section-head {
  width: min(980px, 100%);
  margin-bottom: clamp(28px, 4vw, 52px);
}
.section-head p:last-child { width: min(760px, 100%); margin: 0; }
.prose { font-size: clamp(1.02rem, 1.25vw, 1.17rem); }
.prose p { margin: 0 0 18px; }
.prose--large p { font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.75; }
.prose--light p { color: rgba(245, 243, 237, .78); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.button--primary:hover { background: var(--wine-900); border-color: var(--wine-900); }
.button--light { background: var(--cream); color: var(--wine); border-color: var(--cream); }
.button--light:hover { background: var(--sand); border-color: var(--sand); }
.button--ghost-light { color: var(--cream); border-color: rgba(245, 243, 237, .42); background: rgba(245, 243, 237, .08); }
.button--ghost-light:hover { background: rgba(245, 243, 237, .16); }

.contact-form {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form--compact { background: rgba(245, 243, 237, .88); }
.form-row { display: grid; gap: 7px; }
.form-row--full { grid-column: 1 / -1; }
.form-row label {
  color: var(--wine);
  font-size: .84rem;
  font-weight: 850;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(67, 28, 28, .22);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
}
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(67, 28, 28, .1);
  background: var(--white);
}
.contact-form .button { justify-self: start; }
.form-note {
  margin: 0;
  align-self: center;
  color: var(--muted);
  font-size: .88rem;
}

.card-grid,
.service-overview-grid,
.stats-grid,
.process-grid,
.flag-grid {
  display: grid;
  gap: 16px;
}
.card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-card,
.feature-card,
.overview-card,
.stat-card,
.deliverables,
.process-grid > div,
.flag-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.service-card,
.feature-card,
.overview-card {
  min-height: 100%;
  padding: clamp(22px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
}
.service-card:hover,
.overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 28, 28, .32);
  box-shadow: var(--shadow);
}
.service-card span,
.feature-card span,
.overview-card span {
  color: var(--wine-700);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.service-card h3,
.feature-card h3,
.overview-card h2 {
  margin: 0;
  color: var(--wine);
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}
.overview-card h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.1rem, 3vw, 3.2rem); }
.service-card p,
.feature-card p,
.overview-card p { margin: 0; color: var(--muted); }
.service-card strong,
.overview-card strong { margin-top: auto; color: var(--wine); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
  min-height: 170px;
  padding: clamp(20px, 2.4vw, 32px);
  background: rgba(245, 243, 237, .08);
  border-color: rgba(245, 243, 237, .2);
  color: var(--cream);
}
.stat-card strong {
  display: block;
  color: var(--sand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}
.stat-card span { color: rgba(245, 243, 237, .82); }
.stat-card--flags strong { font-family: inherit; font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; }
.flag-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.flag-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 243, 237, .2);
  border-radius: 999px;
  background: rgba(245, 243, 237, .08);
  font-size: .9rem;
  color: var(--cream);
}
.feature-card .flag-strip { margin-top: auto; }
.feature-card .flag-strip span { color: var(--wine); background: rgba(67, 28, 28, .06); border-color: rgba(67, 28, 28, .12); }
.flag-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flag-item {
  min-height: 78px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-weight: 850;
}
.flag { font-size: 1.55rem; line-height: 1; }
.image-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: clamp(390px, 48vw, 640px);
}
.image-panel img { height: 100%; object-fit: cover; }
.reason-list { display: grid; gap: 18px; margin-top: 24px; }
.reason-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.reason-list strong { color: var(--wine); font-size: 1.02rem; }
.reason-list p { margin: 7px 0 0; color: var(--muted); }
.deliverables { padding: clamp(22px, 2.5vw, 36px); background: var(--cream); }
.deliverables h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.deliverables ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.deliverables li {
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  position: relative;
}
.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
}
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid > div { padding: 22px; }
.process-grid strong { color: var(--wine); }
.process-grid p { margin: 8px 0 0; color: var(--muted); }
.process-grid--light > div { background: rgba(245, 243, 237, .08); border-color: rgba(245, 243, 237, .18); }
.process-grid--light strong { color: var(--sand); }
.process-grid--light p { color: rgba(245, 243, 237, .78); }
.cta-band {
  min-height: 220px;
  padding-top: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band > div { width: min(820px, 100%); }

.site-footer {
  width: 100%;
  background: var(--wine-900);
  color: var(--cream);
}
.footer-inner {
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, .42fr) minmax(210px, .55fr) minmax(220px, .62fr);
  gap: clamp(28px, 4vw, 64px);
}
.footer-brand { display: inline-flex; width: clamp(240px, 20vw, 340px); margin-bottom: 24px; align-items: center; }
.footer-brand img { width: 100%; height: auto; display: block; object-fit: contain; }
.footer-brand-block p,
.footer-note p {
  margin: 0;
  color: rgba(245, 243, 237, .74);
}
.footer-brand-block p { width: min(560px, 100%); }
.footer-nav,
.footer-note { display: grid; align-content: start; gap: 10px; }
.footer-nav h2,
.footer-note h2 {
  margin: 0 0 8px;
  color: var(--sand);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.footer-nav a { color: rgba(245, 243, 237, .78); }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 20px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(245, 243, 237, .14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245, 243, 237, .64);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (width <= 1120px) {
  .card-grid--four,
  .card-grid--five,
  .stats-grid,
  .flag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (width <= 900px) {
  :root { --edge: clamp(18px, 5vw, 34px); }
  .header-inner { min-height: 72px; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 84px;
    left: var(--edge);
    right: var(--edge);
    margin: 0;
    padding: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-link,
  .nav-dropdown-toggle { justify-content: flex-start; }
  .nav-link--contact { justify-content: center; }
  .nav-dropdown { display: grid; gap: 8px; }
  .nav-dropdown-toggle { display: none; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(67, 28, 28, .05);
  }
  .language-control { margin-left: 0; }
  .home-hero-content { padding-top: 132px; }
  .page-hero-inner,
  .lead-capture-inner,
  .split-grid,
  .media-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-image { height: 360px; }
  .service-overview-grid,
  .card-grid--three,
  .process-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-note { grid-column: 1 / -1; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (width <= 560px) {
  .brand { width: 190px; }
  .language-control select { width: 108px; }
  .home-hero-content h1 { font-size: clamp(3.1rem, 17vw, 4.8rem); }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .card-grid--four,
  .card-grid--five,
  .stats-grid,
  .flag-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .image-panel { height: 330px; }
}


/* v6 refinements: international positioning, all-page translation support, locations and AI-agent scope */
.page-hero--plain .page-hero-inner,
.page-hero-inner--plain {
  grid-template-columns: 1fr;
  min-height: clamp(430px, 58vh, 680px);
}

.page-hero--plain .page-hero-copy {
  max-width: 1080px;
}

.service-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  min-height: 260px;
  padding: clamp(24px, 2.8vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  display: grid;
  align-content: start;
  gap: 14px;
  box-shadow: 0 14px 48px rgba(67, 28, 28, .07);
}

.location-flag {
  font-size: 2.2rem;
  line-height: 1;
}

.location-card h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.location-card p {
  margin: 0;
  color: var(--muted);
}

.flag-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.flag-item {
  background: rgba(255, 255, 255, .64);
}

.nav-dropdown-menu {
  width: 306px;
}

.page-hero--plain {
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 192, 141, .28) 0, rgba(217, 192, 141, 0) 36%),
    linear-gradient(135deg, var(--cream) 0%, #EFE7DB 100%);
}

.card-grid--three .feature-card {
  min-height: 230px;
}

@media (width <= 1120px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 900px) {
  .page-hero--plain .page-hero-inner,
  .page-hero-inner--plain {
    min-height: 430px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (width <= 560px) {
  .location-card {
    min-height: auto;
  }
}


/* v7 refinements: tighter layout, corrected borders, useful UI density */
:root {
  --edge: clamp(22px, 4.8vw, 78px);
  --radius: 18px;
  --shadow: 0 16px 46px rgba(67, 28, 28, .10);
}

body { line-height: 1.55; }
.header-inner { min-height: 72px; padding-top: 12px; padding-bottom: 12px; }
.nav-link,
.nav-dropdown-toggle,
.language-control select,
.nav-toggle {
  border-width: 1px;
  box-shadow: inset 0 0 0 0 transparent;
}
.nav-link,
.nav-dropdown-toggle {
  min-height: 40px;
  padding-inline: 13px;
}
.nav-link--contact { padding-inline: 18px; }
.nav-dropdown-toggle { margin-left: -6px; }
.nav-dropdown-menu { top: calc(100% + 8px); border-color: rgba(67, 28, 28, .18); }

.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}
.button--primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.button--primary:hover { background: var(--wine-900); color: var(--cream); border-color: var(--wine-900); }
.button--light { background: var(--cream); color: var(--wine); border-color: var(--cream); }
.button--light:hover { background: var(--sand); color: var(--wine); border-color: var(--sand); }
.button--ghost-light { color: var(--cream); border-color: rgba(245, 243, 237, .72); background: rgba(245, 243, 237, .09); }
.button--ghost-light:hover { background: rgba(245, 243, 237, .18); border-color: var(--cream); color: var(--cream); }

.home-hero-content { padding-bottom: clamp(52px, 8vh, 92px); }
.home-hero-content h1 { max-width: 1040px; margin-bottom: 18px; font-size: clamp(3.4rem, 7.1vw, 7.9rem); }
.home-hero-lead { max-width: 760px; margin-bottom: 26px; }

.page-hero-inner,
.page-hero--plain .page-hero-inner,
.page-hero-inner--plain {
  min-height: auto;
  padding-top: clamp(82px, 9vh, 118px);
  padding-bottom: clamp(42px, 6vh, 68px);
  gap: clamp(24px, 4vw, 58px);
}
.page-hero-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.55rem, 5.2vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.page-hero-copy p:last-child { max-width: 700px; font-size: clamp(1rem, 1.2vw, 1.15rem); }
.page-hero-image { height: clamp(300px, 38vh, 470px); border: 1px solid rgba(67, 28, 28, .12); }

.section { padding: clamp(46px, 5.2vw, 78px) 0; }
.section--tight { padding: clamp(34px, 4.4vw, 58px) 0; }
.lead-capture-inner { padding-top: clamp(34px, 4.4vw, 56px); padding-bottom: clamp(36px, 4.8vw, 62px); }
.split-grid,
.media-grid,
.contact-grid,
.service-detail-grid { gap: clamp(24px, 4.2vw, 58px); }
.section-head { margin-bottom: clamp(20px, 3vw, 34px); }
.lead-copy h2,
.section-copy h2,
.section-head h2,
.cta-band h2,
.deliverables h2,
.action-panel h2,
.agent-builder h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3.5vw, 4.1rem);
  line-height: 1.02;
}
.prose { font-size: clamp(1rem, 1.12vw, 1.1rem); }
.prose p { margin-bottom: 14px; }
.prose--large p { font-size: clamp(1rem, 1.18vw, 1.12rem); line-height: 1.68; }

.card-grid,
.service-overview-grid,
.stats-grid,
.process-grid,
.flag-grid,
.location-grid { gap: 14px; }
.service-card,
.feature-card,
.overview-card { padding: clamp(18px, 2vw, 26px); gap: 10px; }
.service-card h3,
.feature-card h3,
.overview-card h2 { line-height: 1.12; }
.feature-card p,
.service-card p,
.overview-card p { line-height: 1.55; }
.card-grid--three .feature-card { min-height: 190px; }
.stat-card { min-height: 138px; padding: clamp(18px, 2vw, 26px); }
.stat-card strong { margin-bottom: 8px; }
.flag-item { min-height: 66px; padding: 13px 15px; }
.location-card { min-height: 210px; padding: clamp(20px, 2.2vw, 30px); gap: 10px; }
.location-card h2 { font-size: clamp(1.75rem, 2.25vw, 2.65rem); }
.process-grid > div { padding: 18px; }
.deliverables { position: sticky; top: 96px; padding: clamp(18px, 2.1vw, 28px); }
.deliverables h2 { font-size: clamp(1.8rem, 2.5vw, 2.8rem); }
.deliverables ul { margin-top: 14px; gap: 8px; }
.deliverables li { padding: 10px 0 10px 20px; }
.deliverables li::before { top: 18px; width: 6px; height: 6px; }

.contact-form { gap: 14px; padding: clamp(18px, 2.2vw, 30px); box-shadow: 0 14px 40px rgba(67, 28, 28, .09); }
.form-row { gap: 5px; }
.form-row input,
.form-row select,
.form-row textarea { border-color: rgba(67, 28, 28, .26); border-radius: 12px; padding: 11px 12px; }
.form-row textarea { min-height: 104px; }
.form-note { font-size: .84rem; line-height: 1.45; }

.cta-band { min-height: auto; padding: clamp(24px, 3.5vw, 40px); }

.action-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid rgba(67, 28, 28, .16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--beige), var(--cream));
  box-shadow: 0 16px 50px rgba(67, 28, 28, .08);
}
.action-panel-copy { display: grid; align-content: center; }
.action-panel-copy p { margin: 0; color: var(--muted); }
.action-panel .contact-form { background: rgba(255,255,255,.7); box-shadow: none; }
.contact-form--inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.brief-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.brief-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.45;
}
.brief-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
}

.agent-builder {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: clamp(22px, 3vw, 38px);
  box-shadow: 0 14px 45px rgba(67, 28, 28, .08);
}
.agent-builder-copy p { margin: 0; color: var(--muted); }
.agent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.agent-tab {
  border: 1px solid rgba(67, 28, 28, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--wine);
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.agent-tab:hover,
.agent-tab.is-active { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.agent-output {
  border: 1px solid rgba(67, 28, 28, .16);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
  padding: clamp(20px, 2.4vw, 32px);
}
.agent-output h3 {
  margin: 8px 0 10px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.03em;
}
.agent-output p { margin: 0 0 14px; color: var(--muted); }
.agent-output ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.agent-output li { border-top: 1px solid var(--line); padding-top: 9px; color: var(--ink); }

.footer-inner { padding-top: clamp(42px, 5.5vw, 70px); padding-bottom: clamp(34px, 4.4vw, 54px); }
.footer-brand { margin-bottom: 16px; }
.footer-bottom { padding-top: 16px; padding-bottom: 18px; }

@media (width <= 900px) {
  .page-hero-inner,
  .page-hero--plain .page-hero-inner,
  .page-hero-inner--plain { padding-top: 92px; }
  .deliverables { position: static; }
  .action-panel,
  .agent-builder { grid-template-columns: 1fr; }
  .contact-form--inline { grid-template-columns: 1fr; }
}

@media (width <= 560px) {
  .button { width: auto; white-space: normal; text-align: center; }
  .home-hero-content h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .page-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .action-panel,
  .agent-builder { padding: 18px; }
}

/* Fixed contact bubbles */
.contact-rail {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  display: grid;
  gap: 12px;
  pointer-events: none;
}
.contact-bubble {
  --bubble-size: 54px;
  position: relative;
  width: var(--bubble-size);
  height: var(--bubble-size);
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 32px rgba(24, 18, 18, .18), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 1;
}
.contact-bubble:hover,
.contact-bubble:focus-visible {
  transform: translateX(-4px);
  box-shadow: 0 18px 40px rgba(24, 18, 18, .22), inset 0 1px 0 rgba(255,255,255,.28);
  outline: none;
}
.contact-bubble:active { transform: translateX(-2px) scale(.98); }
.contact-bubble:focus-visible { box-shadow: 0 0 0 4px rgba(217, 192, 141, .46), 0 18px 40px rgba(24,18,18,.22); }
.contact-bubble--whatsapp { background: #25D366; }
.contact-bubble--zalo { background: #0068FF; }
.contact-bubble--wechat { background: #07C160; }
.contact-bubble-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.contact-bubble-icon img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.contact-bubble--zalo .contact-bubble-icon img { width: 33px; height: 33px; }
.contact-bubble-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(6px, -50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(67, 28, 28, .96);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(24,18,18,.18);
  font: 800 .75rem/1 "Satoshi", system-ui, sans-serif;
  letter-spacing: .01em;
  transition: opacity .18s ease, transform .18s ease;
}
.contact-bubble:hover .contact-bubble-label,
.contact-bubble:focus-visible .contact-bubble-label {
  opacity: 1;
  transform: translate(0, -50%);
}
.contact-toast {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: 26px;
  z-index: 95;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(245, 243, 237, .18);
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(24, 18, 18, .22);
  font-weight: 800;
  font-size: .84rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 900px) {
  .contact-rail {
    right: 14px;
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: none;
    display: flex;
    gap: 10px;
  }
  .contact-bubble { --bubble-size: 48px; }
  .contact-bubble-icon,
  .contact-bubble-icon img { width: 27px; height: 27px; }
  .contact-bubble--zalo .contact-bubble-icon img { width: 29px; height: 29px; }
  .contact-bubble:hover,
  .contact-bubble:focus-visible { transform: translateY(-2px); }
  .contact-bubble:active { transform: translateY(0) scale(.98); }
  .contact-bubble-label { display: none; }
  .contact-toast {
    right: 14px;
    bottom: 78px;
    border-radius: 18px;
  }
}


/* Final logo lockup correction: horizontal symbol-left, wordmark-right, no clipped stacked mark. */
.brand, .footer-brand { overflow: visible; align-items: center; }
.brand { width: clamp(230px, 18vw, 310px); height: auto; }
.brand img, .footer-brand img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; max-height: none; }
.footer-brand { width: clamp(250px, 20vw, 350px); height: auto; }
@media (max-width: 760px) { .brand { width: 210px; } .footer-brand { width: 235px; } }
@media (max-width: 420px) { .brand { width: 185px; } .footer-brand { width: 210px; } }


/* Footer/header logo final correction: use the clean horizontal lockup only. */
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 0;
}
.brand {
  width: clamp(250px, 18vw, 330px);
  max-width: 34vw;
}
.footer-brand {
  width: clamp(290px, 24vw, 430px);
  max-width: 100%;
  margin-bottom: 24px;
}
.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 900px) {
  .brand { width: 230px; max-width: 46vw; }
  .footer-brand { width: 310px; }
}
@media (max-width: 520px) {
  .brand { width: 198px; max-width: 58vw; }
  .footer-brand { width: 260px; }
}

/* Final logo display lock: clean horizontal logo only, no clipping, no stacked mark. */
.site-header .brand,
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  line-height: 0;
  flex-shrink: 0;
}
.site-header .brand {
  width: min(330px, 34vw);
  max-width: 330px;
}
.site-footer .footer-brand {
  width: min(420px, 100%);
  max-width: 420px;
  margin-bottom: 24px;
}
.site-header .brand img,
.site-footer .footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  overflow: visible;
}
@media (max-width: 900px) {
  .site-header .brand { width: min(250px, 46vw); }
  .site-footer .footer-brand { width: min(340px, 100%); }
}
@media (max-width: 520px) {
  .site-header .brand { width: min(215px, 58vw); }
  .site-footer .footer-brand { width: min(285px, 100%); }
}
