:root {
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "DM Sans", sans-serif;
  --radius-btn: 14px;

  /* Constants — stay fixed across every theme so contrast never breaks */
  --ink: #27170f;
  --ink-rgb: 39, 23, 15;
  --muted: #745e50;
  --cream: #f6eddc;
  --paper: #fffaf0;
  --highlight: #f0b847;
  --highlight-rgb: 240, 184, 71;
  --on-highlight: #2b1108;
  --on-highlight-rgb: 43, 17, 8;
  --on-dark: #fff7e8;
  --on-dark-rgb: 255, 247, 232;

  /* Theme 1 — Michoacán Wine (default) */
  --primary: #5e1728;
  --primary-rgb: 94, 23, 40;
  --primary-dark: #26100f;
  --primary-dark-rgb: 38, 16, 15;
  --accent: #c9552f;
  --accent-rgb: 201, 85, 47;
  --on-accent-rgb: 46, 12, 8;
}

/* Theme 2 — Tricolor México */
:root[data-theme="tricolor"] {
  --primary: #b3162c;
  --primary-rgb: 179, 22, 44;
  --primary-dark: #2e0810;
  --primary-dark-rgb: 46, 8, 16;
  --accent: #0b6e4f;
  --accent-rgb: 11, 110, 79;
  --on-accent-rgb: 8, 36, 26;
}

/* Theme 3 — Terracota Sunset */
:root[data-theme="terracota"] {
  --primary: #a5401c;
  --primary-rgb: 165, 64, 28;
  --primary-dark: #2e1108;
  --primary-dark-rgb: 46, 17, 8;
  --accent: #e08a3c;
  --accent-rgb: 224, 138, 60;
  --on-accent-rgb: 58, 23, 6;
}

/* Theme 4 — Verde Oaxaca */
:root[data-theme="verde"] {
  --primary: #2f4a2c;
  --primary-rgb: 47, 74, 44;
  --primary-dark: #14231a;
  --primary-dark-rgb: 20, 35, 26;
  --accent: #b06a2e;
  --accent-rgb: 176, 106, 46;
  --on-accent-rgb: 51, 29, 8;
}

/* Theme 5 — Azul Talavera */
:root[data-theme="azul"] {
  --primary: #1f3f66;
  --primary-rgb: 31, 63, 102;
  --primary-dark: #0e1c2e;
  --primary-dark-rgb: 14, 28, 46;
  --accent: #d9762f;
  --accent-rgb: 217, 118, 47;
  --on-accent-rgb: 58, 25, 8;
}

/* Theme 6 — Rosa Fiesta */
:root[data-theme="rosa"] {
  --primary: #7a1f4b;
  --primary-rgb: 122, 31, 75;
  --primary-dark: #2c0e1c;
  --primary-dark-rgb: 44, 14, 28;
  --accent: #d9622f;
  --accent-rgb: 217, 98, 47;
  --on-accent-rgb: 58, 21, 8;
}

/* Theme 7 — Dorado Noche */
:root[data-theme="dorado"] {
  --primary: #3a2a1a;
  --primary-rgb: 58, 42, 26;
  --primary-dark: #17110a;
  --primary-dark-rgb: 23, 17, 10;
  --accent: #b8860b;
  --accent-rgb: 184, 134, 11;
  --on-accent-rgb: 42, 28, 5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans), sans-serif; }
a { color: inherit; text-decoration: none; }
a, button { touch-action: manipulation; }
img { max-width: 100%; }
.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.hero {
  min-height: 790px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
  background:
    linear-gradient(90deg, rgba(var(--primary-dark-rgb), .94) 0%, rgba(var(--primary-rgb), .78) 43%, rgba(var(--primary-rgb), .16) 77%, rgba(var(--primary-dark-rgb), .16) 100%),
    url('../images/chelys-hero.png') center / cover no-repeat;
  transition: background-color .3s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--primary-dark-rgb), .3), transparent 25%, transparent 70%, rgba(var(--primary-dark-rgb), .65));
  pointer-events: none;
}

.heroTexture {
  position: absolute; inset: 0; opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.34) .7px, transparent .7px);
  background-size: 6px 6px;
  mask-image: linear-gradient(90deg, transparent 18%, #000 70%);
}

.navBar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--primary-rgb), .85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(var(--on-dark-rgb), .14);
  color: var(--on-dark);
}
.nav { height: 104px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.navLogoSlot { position: relative; align-self: stretch; width: 130px; }
.navLogo { position: absolute; left: 0; top: 100%; transform: translateY(-50%); z-index: 6; display: block; }
.navLogo img { display: block; width: 130px; filter: drop-shadow(0 10px 22px rgba(10,2,4,.55)); }
.navLinks { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.navLinks a { opacity: .82; transition: opacity .2s ease; }
.navLinks a:hover { opacity: 1; }
.navInquiry {
  display: inline-flex; gap: 9px; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px;
  background: rgba(var(--highlight-rgb), .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-btn);
  color: var(--on-highlight); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  touch-action: manipulation;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.navInquiry:hover { transform: translateY(-2px); background: rgba(var(--highlight-rgb), .96); box-shadow: 0 10px 24px rgba(15,3,5,.28); }
.navActions { display: flex; align-items: center; gap: 12px; }
.navToggle {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: rgba(var(--on-dark-rgb), .08);
  border: 1px solid rgba(var(--on-dark-rgb), .25);
  border-radius: var(--radius-btn);
  color: var(--on-dark);
  cursor: pointer;
}
.navToggleIcon { width: 22px; height: 22px; }
.navToggleIcon[data-icon="close"] { display: none; }
.navToggle[aria-expanded="true"] .navToggleIcon[data-icon="open"] { display: none; }
.navToggle[aria-expanded="true"] .navToggleIcon[data-icon="close"] { display: block; }
.navInquiry svg, .primaryButton svg { width: 18px; height: 18px; }

.heroContent { min-height: 585px; flex: 1; display: flex; align-items: center; position: relative; z-index: 2; }
.heroCopy { max-width: 720px; padding: 58px 0 82px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: var(--highlight); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; }
.eyebrow span { display: inline-block; width: 36px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(66px, 8vw, 118px); line-height: .8; letter-spacing: -.055em; font-weight: 600; }
.hero h1 em { color: var(--highlight); font-weight: 500; font-style: italic; }
.heroLead { max-width: 560px; margin: 35px 0 0; font-size: 17px; line-height: 1.7; color: rgba(var(--on-dark-rgb), .8); }
.heroActions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.primaryButton {
  min-height: 55px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 20px;
  background: rgba(var(--highlight-rgb), .88);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-btn);
  color: var(--on-highlight); font-weight: 700; font-size: 13px;
  touch-action: manipulation;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primaryButton:hover { transform: translateY(-2px); background: rgba(var(--highlight-rgb), .98); box-shadow: 0 14px 30px rgba(15,3,5,.28); }
.textLink { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.5); }
.textLink span { margin-left: 8px; color: var(--highlight); }
.heroSeal { position: absolute; right: 5%; top: 43%; width: 170px; height: 170px; border: 1px solid rgba(255,239,189,.46); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; transform: rotate(8deg); color: var(--highlight); font-size: 8px; letter-spacing: .2em; text-align: center; background: rgba(var(--primary-dark-rgb), .55); backdrop-filter: blur(3px); box-shadow: 0 8px 30px rgba(15,3,5,.35); }
.heroSeal::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,239,189,.36); border-radius: inherit; }
.heroSeal strong { font-size: 25px; font-weight: 400; }
.heroFooter { height: 80px; display: flex; align-items: center; gap: 18px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--font-display), serif; text-transform: uppercase; letter-spacing: .13em; font-size: 13px; }
.heroFooter i { width: 5px; height: 5px; border-radius: 50%; background: var(--highlight); }

.intro { padding: 105px 0; background: var(--cream); }
.introGrid { display: grid; grid-template-columns: .8fr 1.8fr; gap: 10%; align-items: start; }
.sectionKicker { margin: 10px 0 0; padding-top: 16px; border-top: 1px solid rgba(var(--ink-rgb), .32); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 700; }
.intro h2 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(48px, 5vw, 76px); line-height: .95; letter-spacing: -.035em; font-weight: 600; }
.introCopy > p { max-width: 680px; margin: 27px 0 0; color: var(--muted); line-height: 1.8; font-size: 16px; }
.introFacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(var(--ink-rgb), .18); }
.introFacts div { display: grid; gap: 5px; }
.introFacts strong { font-family: var(--font-display), serif; font-size: 31px; color: var(--primary); }
.introFacts span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.services { padding: 110px 0 125px; background: var(--primary-dark); color: var(--on-dark); overflow: hidden; transition: background-color .3s ease; }
.servicesHead { display: grid; grid-template-columns: .8fr 1.8fr; gap: 10%; align-items: start; margin-bottom: 54px; }
.lightKicker { border-color: rgba(255,255,255,.3); }
.overline { margin: 0 0 16px; color: var(--highlight); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 700; }
.services h2, .contact h2, .process h2 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(55px, 6vw, 88px); line-height: .82; letter-spacing: -.045em; font-weight: 600; }
.services h2 em, .contact h2 em, .process h2 em { color: var(--highlight); font-weight: 500; font-style: italic; }
.serviceGrid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 435px 370px; gap: 18px; }
.serviceCard { position: relative; overflow: hidden; min-height: 360px; isolation: isolate; background: color-mix(in srgb, var(--primary), black 15%); }
.serviceCardLarge { grid-row: 1 / 3; }
.serviceCard img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.serviceCard:hover img { transform: scale(1.035); }
.imageShade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,4,5,.04) 20%, rgba(20,4,5,.82) 100%); z-index: 1; }
.serviceNumber { position: absolute; top: 26px; left: 28px; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.serviceContent { position: absolute; left: 36px; right: 36px; bottom: 36px; z-index: 2; }
.serviceContent > p { margin: 0 0 9px; color: var(--highlight); text-transform: uppercase; letter-spacing: .17em; font-size: 9px; font-weight: 700; }
.serviceContent h3 { margin: 0; max-width: 520px; font-family: var(--font-display), serif; font-size: clamp(34px, 4vw, 56px); line-height: .93; letter-spacing: -.025em; font-weight: 600; }
.serviceCardSmall .serviceContent h3, .serviceCardText .serviceContent h3 { font-size: clamp(31px, 3vw, 43px); }
.serviceContent > span { display: block; max-width: 490px; margin-top: 15px; color: rgba(var(--on-dark-rgb), .76); font-size: 13px; line-height: 1.65; }
.serviceCardText { background: var(--accent); transition: background-color .3s ease; }
.serviceCardText .serviceContent { color: rgb(var(--on-accent-rgb)); }
.serviceCardText .serviceContent > p { color: rgb(var(--on-accent-rgb)); }
.serviceCardText .serviceContent > span { color: rgba(var(--on-accent-rgb), .78); max-width: 440px; }
.serviceCardText .serviceNumber { border-color: rgba(var(--on-accent-rgb), .42); color: rgb(var(--on-accent-rgb)); }
.serviceCardText .serviceContent a { display: inline-flex; align-items: center; gap: 15px; margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid currentColor; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 800; }
.serviceCardText .serviceContent a svg { width: 16px; height: 16px; }
.sunMotif { position: absolute; width: 250px; height: 250px; border: 1px solid rgba(var(--on-accent-rgb), .22); border-radius: 50%; right: -45px; top: -60px; display: grid; place-items: center; }
.sunMotif::before, .sunMotif::after { content: ""; position: absolute; border: 1px dashed rgba(var(--on-accent-rgb), .16); border-radius: 50%; }
.sunMotif::before { inset: 21px; }
.sunMotif::after { inset: 48px; }
.sunMotif span { font-size: 34px; color: rgba(var(--on-accent-rgb), .42); }

.occasions { padding: 120px 0; background: var(--paper); }
.occasionsGrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; align-items: start; }
.occasionsTitle h2 { margin: 42px 0 0; font-family: var(--font-display), serif; font-size: clamp(49px, 5.4vw, 78px); line-height: .93; letter-spacing: -.04em; font-weight: 600; }
.occasionsTitle h2 em { color: var(--accent); font-weight: 500; font-style: italic; }
.occasionList { border-top: 1px solid rgba(var(--ink-rgb), .26); }
.occasionRow { min-height: 78px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; border-bottom: 1px solid rgba(var(--ink-rgb), .18); transition: padding .25s ease, color .25s ease; }
.occasionRow:hover { padding-inline: 12px; color: var(--primary); }
.occasionRow span { color: var(--accent); font-size: 10px; font-weight: 700; }
.occasionRow strong { font-family: var(--font-display), serif; font-size: 25px; font-weight: 600; }
.occasionRow i { color: var(--highlight); font-style: normal; }

.quoteBand { min-height: 455px; position: relative; overflow: hidden; display: flex; align-items: center; color: var(--on-dark); background: var(--primary); transition: background-color .3s ease; }
.quotePattern { position: absolute; inset: 0; opacity: .11; background-image: repeating-linear-gradient(45deg, transparent 0 45px, rgba(255,255,255,.5) 46px 47px), repeating-linear-gradient(-45deg, transparent 0 45px, rgba(255,255,255,.28) 46px 47px); }
.quoteInner { position: relative; display: grid; grid-template-columns: 80px 1fr 110px; align-items: center; gap: 40px; }
.quoteMark { align-self: start; margin-top: -5px; font-family: var(--font-display), serif; font-size: 110px; line-height: .8; color: var(--highlight); }
.quoteInner blockquote { margin: 0; max-width: 850px; font-family: var(--font-display), serif; font-size: clamp(45px, 5vw, 75px); line-height: .95; letter-spacing: -.035em; font-weight: 500; }
.quoteInner blockquote em { color: var(--highlight); font-style: italic; }
.miniSeal { width: 96px; height: 96px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; display: grid; place-content: center; text-align: center; font-family: var(--font-display), serif; font-size: 22px; line-height: .8; }
.miniSeal small { margin-top: 5px; font-family: var(--font-sans), sans-serif; font-size: 7px; letter-spacing: .2em; }

.process { padding: 120px 0; background: var(--cream); }
.processGrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; align-items: start; }
.processIntro h2 { margin-top: 42px; color: var(--primary); }
.processIntro h2 em { color: var(--accent); }
.processIntro > p:last-child { max-width: 470px; margin: 26px 0 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(var(--ink-rgb), .25); }
.steps li { min-height: 150px; display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: center; border-bottom: 1px solid rgba(var(--ink-rgb), .18); }
.steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(var(--ink-rgb), .28); border-radius: 50%; font-size: 10px; font-weight: 700; }
.steps h3 { margin: 0; font-family: var(--font-display), serif; font-size: 32px; line-height: 1; font-weight: 600; }
.steps p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.socialStrip { background: var(--highlight); color: var(--on-highlight); transition: background-color .3s ease; }
.socialInner { min-height: 86px; display: flex; justify-content: space-between; align-items: center; }
.socialInner p, .socialInner a { display: flex; align-items: center; gap: 12px; margin: 0; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; }
.socialInner svg { width: 21px; height: 21px; }
.socialInner a { padding-bottom: 5px; border-bottom: 1px solid rgba(var(--on-highlight-rgb), .6); }
.socialInner a svg { width: 17px; height: 17px; }

.contact { min-height: 700px; position: relative; overflow: hidden; display: flex; align-items: center; color: var(--on-dark); text-align: center; background: color-mix(in srgb, var(--primary-dark), black 10%); transition: background-color .3s ease; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(rgba(255,255,255,.7) .7px, transparent .7px); background-size: 7px 7px; }
.contactGlow { position: absolute; width: 680px; height: 680px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(var(--primary-rgb), .9) 0, rgba(var(--primary-rgb), .45) 45%, transparent 70%); }
.contactInner { position: relative; z-index: 1; }
.contact h2 { font-size: clamp(63px, 8vw, 112px); }
.contactInner > p:not(.overline) { max-width: 570px; margin: 29px auto 0; color: rgba(var(--on-dark-rgb), .7); line-height: 1.7; font-size: 16px; }
.phoneLink { display: inline-flex; align-items: center; gap: 14px; margin-top: 31px; font-family: var(--font-display), serif; font-size: clamp(31px, 3vw, 45px); font-weight: 600; }
.phoneLink svg { width: 30px; height: 30px; color: var(--highlight); }
.contactActions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.outlineButton {
  min-height: 55px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--on-dark-rgb), .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-btn);
  color: var(--on-dark);
  text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800;
  touch-action: manipulation;
  transition: transform .2s ease, background .2s ease;
}
.outlineButton:hover { transform: translateY(-2px); background: rgba(var(--on-dark-rgb), .2); }

.formWrap { max-width: 560px; margin: 56px auto 0; padding-top: 44px; border-top: 1px solid rgba(var(--on-dark-rgb), .16); text-align: left; }
.formIntro { margin: 0 0 22px; color: rgba(var(--on-dark-rgb), .7); font-size: 13px; text-align: center; }
.inquiryForm { display: grid; gap: 16px; }
.formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formField, .formRow label { display: grid; gap: 7px; }
.inquiryForm label span { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--highlight); }
.inquiryForm input, .inquiryForm select, .inquiryForm textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  background: rgba(var(--on-dark-rgb), .06);
  border: 1px solid rgba(var(--on-dark-rgb), .25);
  color: var(--on-dark);
  font-family: var(--font-sans), sans-serif;
  font-size: 16px;
  border-radius: 8px;
  color-scheme: dark;
}
.inquiryForm option { color: var(--ink); background: var(--on-dark); }
.inquiryForm textarea { resize: vertical; }
.inquiryForm input::placeholder, .inquiryForm textarea::placeholder { color: rgba(var(--on-dark-rgb), .4); }
.inquiryForm input:focus, .inquiryForm select:focus, .inquiryForm textarea:focus { outline: none; border-color: var(--highlight); background: rgba(var(--on-dark-rgb), .1); }
.inquiryForm button[type="submit"] { justify-self: start; margin-top: 4px; cursor: pointer; touch-action: manipulation; }
.inquiryForm button[type="submit"]:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.formStatus { margin: 2px 0 0; min-height: 16px; font-size: 12px; color: rgba(var(--on-dark-rgb), .75); }
.formStatus[data-state="error"] { color: #ffb4a8; }
.formStatus[data-state="success"] { color: #b6e6b0; }

footer { padding: 65px 0 24px; background: color-mix(in srgb, var(--primary-dark), black 30%); color: var(--on-dark); transition: background-color .3s ease; }
.footerGrid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 60px; padding-bottom: 55px; }
.footerBrand { justify-self: start; display: block; }
.footerBrand img { display: block; width: 90px; }
.footerGrid > p { margin: 4px 0 0; color: rgba(var(--on-dark-rgb), .58); font-size: 12px; line-height: 1.7; }
.footerLinks { display: grid; gap: 10px; justify-self: end; text-align: right; font-size: 12px; }
.footerLinks a:hover { color: var(--highlight); }
.footerBottom { display: flex; justify-content: space-between; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(var(--on-dark-rgb), .42); text-transform: uppercase; letter-spacing: .12em; font-size: 8px; }
.mobileCall { display: none; }

/* Theme picker */
.themePicker { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 60; display: flex; align-items: center; }
.themePickerToggle {
  width: 46px; height: 46px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--primary-rgb), .85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(var(--on-dark-rgb), .3);
  border-right: none;
  border-radius: var(--radius-btn) 0 0 var(--radius-btn);
  color: var(--on-dark);
  cursor: pointer;
  transition: background-color .3s ease;
}
.themePickerToggle svg { width: 20px; height: 20px; }
.themePickerPanel {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  width: 216px;
  max-height: min(440px, calc(100vh - 32px));
  overflow-y: auto;
  background: rgba(var(--primary-dark-rgb), .94);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(var(--on-dark-rgb), .2);
  border-radius: var(--radius-btn);
  padding: 14px;
  box-shadow: 0 20px 40px rgba(10,2,4,.4);
}
.themePicker.open .themePickerPanel { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }
.themePickerLabel { margin: 0 0 10px; color: var(--on-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; text-align: center; }
.themeSwatches { display: flex; flex-direction: column; gap: 6px; }
.themeSwatch {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 7px 9px;
  background: rgba(var(--on-dark-rgb), .06);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.themeSwatch:hover { background: rgba(var(--on-dark-rgb), .16); }
.themeSwatch[aria-checked="true"] { border-color: rgba(var(--on-dark-rgb), .6); background: rgba(var(--on-dark-rgb), .2); }
.themeSwatchDot { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid rgba(var(--on-dark-rgb), .4); }
.themeSwatchName { font-size: 12px; font-weight: 600; color: var(--on-dark); text-align: left; }
.themeSwatch[data-theme="wine"] .themeSwatchDot { background: conic-gradient(#5e1728 0deg 180deg, #c9552f 180deg 360deg); }
.themeSwatch[data-theme="tricolor"] .themeSwatchDot { background: conic-gradient(#b3162c 0deg 180deg, #0b6e4f 180deg 360deg); }
.themeSwatch[data-theme="terracota"] .themeSwatchDot { background: conic-gradient(#a5401c 0deg 180deg, #e08a3c 180deg 360deg); }
.themeSwatch[data-theme="verde"] .themeSwatchDot { background: conic-gradient(#2f4a2c 0deg 180deg, #b06a2e 180deg 360deg); }
.themeSwatch[data-theme="azul"] .themeSwatchDot { background: conic-gradient(#1f3f66 0deg 180deg, #d9762f 180deg 360deg); }
.themeSwatch[data-theme="rosa"] .themeSwatchDot { background: conic-gradient(#7a1f4b 0deg 180deg, #d9622f 180deg 360deg); }
.themeSwatch[data-theme="dorado"] .themeSwatchDot { background: conic-gradient(#3a2a1a 0deg 180deg, #b8860b 180deg 360deg); }

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 680px); }
  .nav { height: 84px; }
  .navToggle { display: inline-flex; }
  .navLinks {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 20px 12px;
    background: rgba(var(--primary-dark-rgb), .94);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(var(--on-dark-rgb), .16);
    border-radius: var(--radius-btn);
    box-shadow: 0 20px 40px rgba(10,2,4,.35);
  }
  .navBar.menuOpen .navLinks { display: flex; }
  .navLinks a {
    display: flex; align-items: center;
    min-height: 48px;
    font-size: 16px;
    opacity: 1;
    border-bottom: 1px solid rgba(var(--on-dark-rgb), .12);
  }
  .navLinks a:last-child { border-bottom: none; }
  .navInquiry { padding: 0 16px; font-size: 11px; }
  .navLogoSlot { width: 96px; }
  .navLogo img { width: 96px; }
  .hero { min-height: 720px; }
  .heroContent { min-height: 555px; }
  .heroCopy { padding-top: 50px; }
  .heroSeal { width: 115px; height: 115px; right: -28px; top: auto; bottom: 86px; opacity: .68; }
  .heroFooter { height: 70px; gap: 12px; font-size: 10px; }
  .intro { padding: 72px 0; }
  .introGrid { grid-template-columns: 1fr; gap: 38px; }
  .sectionKicker { max-width: 200px; }
  .services { padding: 78px 0; }
  .servicesHead, .occasionsGrid, .processGrid { grid-template-columns: 1fr; gap: 42px; }
  .serviceGrid { grid-template-columns: 1fr; grid-template-rows: 520px 470px 410px; }
  .serviceCardLarge { grid-row: auto; }
  .serviceCardSmall { min-height: 470px; }
  .occasions, .process { padding: 82px 0; }
  .occasionsTitle h2, .processIntro h2 { margin-top: 30px; }
  .quoteBand { min-height: 400px; }
  .quoteInner { grid-template-columns: 45px 1fr; gap: 20px; }
  .miniSeal { display: none; }
  .quoteMark { font-size: 80px; }
  .contact { min-height: 630px; }
  .footerGrid { grid-template-columns: 1fr 1fr; }
  .footerGrid > p { display: none; }
  .themePickerPanel { width: 200px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: clamp(56px, 18vw, 76px); }
  .heroLead { font-size: 16px; line-height: 1.65; }
  .heroActions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .primaryButton { width: 100%; }
  .heroFooter { white-space: nowrap; overflow: hidden; }
  .introFacts { grid-template-columns: 1fr; gap: 20px; }
  .introFacts div { grid-template-columns: 75px 1fr; align-items: center; }
  .serviceGrid { grid-template-rows: 450px 420px 430px; }
  .serviceContent { left: 24px; right: 24px; bottom: 27px; }
  .occasionsTitle h2 { font-size: 50px; }
  .occasionRow { min-height: 69px; grid-template-columns: 42px 1fr auto; }
  .occasionRow strong { font-size: 21px; }
  .quoteInner { grid-template-columns: 1fr; }
  .quoteMark { position: absolute; top: -58px; }
  .quoteInner blockquote { font-size: 43px; }
  .steps li { min-height: 132px; grid-template-columns: 55px 1fr; gap: 10px; }
  .steps h3 { font-size: 26px; }
  .socialInner { min-height: 100px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 14px; }
  .contact { min-height: 680px; padding: 75px 0; }
  .contact h2 { font-size: 59px; }
  .contactActions { flex-direction: column; }
  .outlineButton { width: 100%; }
  .formRow { grid-template-columns: 1fr; gap: 16px; }
  .footerGrid { grid-template-columns: 1fr; gap: 30px; }
  .footerLinks { justify-self: start; text-align: left; grid-template-columns: repeat(3, auto); gap: 18px; }
  .footerBottom { gap: 12px; align-items: flex-start; flex-direction: column; padding-bottom: 66px; }
  .mobileCall {
    position: fixed; left: 14px; right: 14px; z-index: 40;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-height: 52px; padding: 0 20px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(var(--highlight-rgb), .9);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--radius-btn);
    color: var(--on-highlight);
    box-shadow: 0 12px 40px rgba(28,5,8,.3);
    text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800;
  }
  .mobileCall svg { width: 18px; height: 18px; }
  .themePicker { right: 0; top: auto; bottom: 78px; transform: none; }
}

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