/* =========================================================
   Kosamui Spaa — Global Stylesheet  (v2 — premium polish)
   Luxury wellness theme: deep warm black + gold
   Type scale + 8pt spacing rhythm + ornaments + a11y
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #0b0806;
  --bg-2:      #120e09;
  --bg-3:      #1a140e;
  --panel:     #17120d;
  --line:      rgba(201, 162, 75, 0.24);
  --line-soft: rgba(201, 162, 75, 0.13);

  /* Gold + ink */
  --gold:      #c9a24b;
  --gold-2:    #d8b262;
  --gold-soft: #ecca84;
  --gold-deep: #a9863a;
  --ink:       #1a1409;   /* text on gold */

  --cream:     #f6f0e6;
  --text:      #e9e0d2;
  --muted:     #b6a991;
  --muted-2:   #8d8270;

  /* Type scale (1.25 ratio, 16px base) */
  --fs-xs:   .78rem;
  --fs-sm:   .9rem;
  --fs-base: 1.0625rem;   /* 17px */
  --fs-lg:   1.18rem;
  --fs-xl:   1.5rem;

  /* 8pt spacing rhythm */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 56px; --s-7: 72px; --s-8: 96px; --s-9: 120px;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.28);
  --shadow:    0 22px 60px rgba(0,0,0,.46);
  --shadow-gold: 0 16px 40px rgba(201,162,75,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: var(--fs-base);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 .4em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); letter-spacing: -.5px; }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.3px; }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
p  { margin: 0 0 1.1rem; }
strong { font-weight: 500; color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-3); }

.section { padding: clamp(56px, 9vw, var(--s-9)) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
[id] { scroll-margin-top: 96px; }

/* ---------- Decorative ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8em;
  font-family: var(--sans); font-weight: 500;
  text-transform: uppercase; letter-spacing: .34em;
  font-size: var(--fs-xs); color: var(--gold);
  margin-bottom: var(--s-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gold { color: var(--gold-soft); }
.divider {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--s-3) 0; position: relative;
}
.divider::after {
  content: "❖"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--gold);
  font-size: 11px; background: var(--bg); padding: 0 8px;
}
.section--alt .divider::after { background: var(--bg-2); }
.center { text-align: center; }
.center .divider { margin-inline: auto; }
.lead { font-size: var(--fs-lg); color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }

/* Centered section header block */
.section-head { max-width: 680px; margin-inline: auto; margin-bottom: var(--s-6); }

/* Gold corner ornaments (matches the menu's framed look) */
.ornament { position: relative; }
.ornament::before, .ornament::after {
  content: ""; position: absolute; width: 26px; height: 26px; pointer-events: none;
  border-color: var(--gold); opacity: .65;
}
.ornament::before { top: 14px; left: 14px; border-top: 1.5px solid; border-left: 1.5px solid; border-top-left-radius: 6px; }
.ornament::after  { bottom: 14px; right: 14px; border-bottom: 1.5px solid; border-right: 1.5px solid; border-bottom-right-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; font-size: .8rem;
  min-height: 48px; padding: 0 1.9em; border-radius: 50px; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  border: 1px solid var(--gold); white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--ink); border-color: transparent; box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); color: var(--ink); box-shadow: 0 20px 44px rgba(201,162,75,.42); }
.btn--ghost { background: transparent; color: var(--gold-soft); }
.btn--ghost:hover { background: rgba(201,162,75,.1); transform: translateY(-3px); color: var(--gold-soft); }
.btn:active { transform: translateY(-1px); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2); }
.center .btn-row, .btn-row.center { justify-content: center; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,8,6,.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: var(--s-3); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo { width: 40px; height: 40px; }
.brand-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--cream); letter-spacing: .5px; line-height: 1; }
.brand-name b { color: var(--gold-soft); font-weight: 600; }
.brand-name span { display: block; font-family: var(--sans); font-size: .54rem; font-weight: 400; letter-spacing: .36em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: var(--s-4); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--sans); font-size: .92rem; font-weight: 400; color: var(--text); letter-spacing: .02em; position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { min-height: 44px; padding: 0 1.5em; font-size: .76rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; padding: 11px; }
.nav-toggle span { display: block; height: 2px; background: var(--gold-soft); margin: 5px 0; transition: .3s var(--ease); border-radius: 2px; }
.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); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); padding: 0 var(--s-3);
  }
  .nav-links.open { max-height: 440px; padding: var(--s-1) var(--s-3) var(--s-3); }
  .nav-links li { border-bottom: 1px solid var(--line-soft); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: var(--s-2) 0 0; }
  .nav-cta .btn { width: 100%; }
  .nav-links.open { max-height: calc(100dvh - 78px); overflow-y: auto; }
}

/* ---------- Nav dropdowns ---------- */
.has-dropdown { position: relative; }
.dd-label { font-family: var(--sans); font-size: .92rem; font-weight: 400; color: var(--text);
  background: none; border: 0; cursor: pointer; padding: 6px 0; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: .35em; transition: color .25s var(--ease); }
.dd-label:hover, .has-dropdown:hover .dd-label, .has-dropdown:focus-within .dd-label,
.dd-label[aria-current="page"] { color: var(--gold-soft); }
.caret { background: none; border: 0; cursor: pointer; color: inherit; padding: 4px; display: inline-flex; align-items: center; }
.caret-ic { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.has-dropdown:hover .caret-ic, .has-dropdown.open .caret-ic, .has-dropdown:focus-within .caret-ic { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 12px); left: 0; min-width: 232px; list-style: none; margin: 0;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow); z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease); }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown, .has-dropdown.open > .dropdown {
  opacity: 1; visibility: visible; transform: none; }
.dropdown li { border: 0; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .88rem; color: var(--text); white-space: nowrap; letter-spacing: .01em; }
.dropdown a::after { display: none; }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: rgba(201,162,75,.1); color: var(--gold-soft); }
.dropdown--mega { display: grid; grid-template-columns: 1fr 1fr; min-width: 470px; gap: 0 10px; }
.dropdown--mega .dd-all { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); margin-top: 6px; padding-top: 2px; }
.dropdown--mega .dd-all a { color: var(--gold-soft); display: inline-flex; align-items: center; gap: .45em; }
.dropdown--mega .dd-all svg { width: 15px; }
.dropdown--right { left: auto; right: 0; }
.dd-sep { height: 1px; background: var(--line-soft); margin: 6px 10px; }

@media (max-width: 900px) {
  .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
  .has-dropdown .dd-label { flex: 1; display: flex; justify-content: space-between; padding: 16px 0; font-size: 1.05rem; }
  .has-dropdown .caret { padding: 16px 6px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; width: 100%;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 8px 14px; min-width: 0;
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); display: block; }
  .dropdown::before { display: none; }
  .has-dropdown.open > .dropdown { max-height: 760px; }
  .dropdown--mega { grid-template-columns: 1fr; min-width: 0; }
  .dropdown--mega .dd-all { border-top: 1px solid var(--line-soft); }
  .dropdown a { padding: 12px 0; font-size: 1rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 80% -8%, rgba(201,162,75,.18), transparent 60%),
    radial-gradient(820px 520px at 6% 112%, rgba(201,162,75,.09), transparent 55%),
    linear-gradient(180deg, #100b07, #090604);
  border-bottom: 1px solid var(--line-soft);
}
.hero__inner { padding: clamp(64px, 10vw, 128px) 0 clamp(56px, 8vw, 104px); position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__content { max-width: 600px; }
.hero h1 { margin-bottom: .25em; }
.hero h1 .script { display: block; color: var(--gold-soft); font-style: italic; font-weight: 500; }
.hero p { font-size: var(--fs-lg); color: var(--muted); max-width: 48ch; }
.hero__visual { position: relative; }
.hero__visual .img-frame { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__content { max-width: 640px; }
}

/* Stats */
.stats { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); margin-top: var(--s-4); }
.stat .num { font-family: var(--serif); font-size: 2.3rem; color: var(--gold-soft); line-height: 1; font-feature-settings: "tnum"; white-space: nowrap; }
.stat .num span { font-size: 1rem; }
.stat .label { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* =========================================================
   Grids / Cards
   ========================================================= */
.grid { display: grid; gap: var(--s-3); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: var(--s-4); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { /* gold top accent line */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease); transform-origin: left;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card .icon { width: 54px; height: 54px; margin-bottom: var(--s-2); color: var(--gold); }
.card h3 { margin-bottom: .3em; }
.card p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--s-2); }

/* Service card */
.service-card { display: flex; flex-direction: column; }
.service-card .badge { align-self: flex-start; }
.service-card .price-from { font-family: var(--serif); color: var(--gold-soft); font-size: 1.35rem; margin-top: auto; padding-top: var(--s-2); font-feature-settings: "tnum"; }
.service-card .price-from small { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 2px; }
.service-card .more { display: inline-flex; align-items: center; gap: .5em; margin-top: var(--s-2); font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.service-card .more svg { width: 16px; transition: transform .25s var(--ease); }
.service-card:hover .more svg { transform: translateX(5px); }

/* Feature (4-up) */
.feature { text-align: center; padding: var(--s-2); }
.feature .icon { margin-inline: auto; width: 48px; height: 48px; color: var(--gold); margin-bottom: var(--s-1); }
.feature h3 { font-size: 1.2rem; margin-bottom: .2em; }
.feature p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* =========================================================
   Split / media
   ========================================================= */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split.reverse .split__media { order: 2; }
@media (max-width: 880px){ .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }

.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 70% 18%, rgba(201,162,75,.18), transparent 55%),
    linear-gradient(160deg, #20180e, #0a0705);
  display: grid; place-items: center; padding: var(--s-5);
}
.media-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--line-soft); border-radius: 8px; pointer-events: none; }
.media-frame svg { width: 58%; max-width: 230px; color: var(--gold); opacity: .9; filter: drop-shadow(0 8px 24px rgba(201,162,75,.25)); }
.media-frame .caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold-soft); }

/* Real photo frame */
.img-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5 / 4; background: #0a0705; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.img-frame:hover img { transform: scale(1.05); }
.img-frame::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(246,240,230,.18); border-radius: 8px; pointer-events: none; z-index: 2; }
.img-frame .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 20px 18px; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(8,6,4,.82)); text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-soft); }

/* Card thumbnail image */
.card__media { position: relative; margin: calc(-1 * var(--s-4)) calc(-1 * var(--s-4)) var(--s-3); aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(18,14,9,.85)); }
.service-card .card__media + .icon { margin-top: 0; }

/* =========================================================
   Location map band (sitewide)
   ========================================================= */
.map-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: clamp(320px, 42vw, 460px); border: 0; display: block; filter: grayscale(.18) contrast(1.04); }
.map-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; margin-top: var(--s-3); }

/* Checklist */
.ticks { list-style: none; padding: 0; margin: var(--s-3) 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: var(--fs-sm); }
.ticks svg { width: 20px; flex: 0 0 20px; color: var(--gold); margin-top: 4px; }

/* =========================================================
   Pricing table
   ========================================================= */
.price-table { width: 100%; border-collapse: collapse; margin: var(--s-3) 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.price-table thead th { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: var(--ink); font-family: var(--sans); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 600; padding: 14px 22px; text-align: left; }
.price-table td { padding: 16px 22px; border-top: 1px solid var(--line-soft); }
.price-table tbody tr:nth-child(even) { background: rgba(201,162,75,.04); }
.price-table .dur { color: var(--text); font-size: var(--fs-sm); }
.price-table .amt { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-soft); text-align: right; white-space: nowrap; font-feature-settings: "tnum"; }

.badge { display: inline-block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid var(--line); border-radius: 50px; padding: .4em .95em; margin-bottom: var(--s-2); background: rgba(201,162,75,.06); }

/* Add-ons */
.addons { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.addons li { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-2); padding: 15px 4px; border-bottom: 1px solid var(--line-soft); }
.addons li span:first-child { color: var(--text); font-size: var(--fs-sm); }
.addons li span:last-child { font-family: var(--serif); color: var(--gold-soft); font-size: 1.2rem; white-space: nowrap; font-feature-settings: "tnum"; }

/* =========================================================
   Testimonials (social proof)
   ========================================================= */
.quote-card { background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: var(--s-4); position: relative; }
.quote-card .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: var(--s-2); }
.quote-card .stars svg { width: 17px; height: 17px; }
.quote-card blockquote { margin: 0 0 var(--s-3); font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--cream); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 1.1rem; flex-shrink: 0; }
.quote-card .who b { display: block; color: var(--cream); font-weight: 500; font-size: .95rem; }
.quote-card .who span { font-size: var(--fs-xs); color: var(--muted-2); letter-spacing: .04em; }

/* Trust strip */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: var(--s-4); background: linear-gradient(160deg, rgba(201,162,75,.05), transparent); }
.trust-item { text-align: center; }
.trust-item .icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto var(--s-1); }
.trust-item b { display: block; font-family: var(--serif); color: var(--cream); font-size: 1.15rem; }
.trust-item span { font-size: var(--fs-xs); color: var(--muted); letter-spacing: .04em; }
@media (max-width: 760px){ .trust { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-2); } }

/* ---------- Location chips ---------- */
.chips { list-style: none; padding: 0; margin: var(--s-3) 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chips li { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-sm); color: var(--muted); border: 1px solid var(--line-soft); border-radius: 50px; padding: 7px 14px; }
.chips li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.chips .chips-label { border: 0; padding: 0; color: var(--gold-soft); font-family: var(--sans); letter-spacing: .04em; text-transform: uppercase; font-size: var(--fs-xs); }

/* ---------- FAQ accordion ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 4px; font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.4rem); color: var(--cream); transition: color .25s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform .3s var(--ease); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-item[open] summary svg { transform: rotate(90deg); }
.faq-item:hover summary { color: var(--gold-soft); }
.faq-a { padding: 0 4px 22px; }
.faq-a p { margin: 0; color: var(--muted); font-size: var(--fs-base); max-width: 70ch; }

/* =========================================================
   Breadcrumb / page hero
   ========================================================= */
.crumbs { font-size: var(--fs-xs); color: var(--muted-2); letter-spacing: .03em; padding-top: var(--s-3); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { margin: 0 .5em; opacity: .55; }

.page-hero { padding: clamp(52px, 8vw, 96px) 0 clamp(36px, 5vw, 56px); position: relative;
  background: radial-gradient(900px 440px at 82% -20%, rgba(201,162,75,.14), transparent 60%), linear-gradient(180deg, #100b07, var(--bg)); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { margin-bottom: .2em; }
.page-hero p { color: var(--muted); max-width: 60ch; font-size: var(--fs-lg); }
.page-hero .badge { margin-top: var(--s-2); margin-bottom: 0; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: radial-gradient(700px 400px at 50% -40%, rgba(201,162,75,.22), transparent 60%), linear-gradient(135deg, #181107, #0b0805);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(40px, 7vw, 76px); text-align: center;
}
.cta-band h2 { margin-bottom: .25em; }
.cta-band p { color: var(--muted); max-width: 52ch; margin-inline: auto; font-size: var(--fs-lg); }

/* =========================================================
   Contact
   ========================================================= */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.info-list li { display: flex; gap: var(--s-2); align-items: flex-start; }
.info-list .ic { width: 48px; height: 48px; flex: 0 0 48px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); background: rgba(201,162,75,.05); }
.info-list .ic svg { width: 20px; }
.info-list h3 { font-size: 1.1rem; margin-bottom: .15em; }
.info-list p, .info-list a { color: var(--muted); margin: 0; font-size: var(--fs-sm); }
.info-list a:hover { color: var(--gold-soft); }

.form-card { background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: #0d0906; border: 1px solid var(--line-soft); border-radius: 10px;
  color: var(--text); font-family: var(--sans); font-size: 1rem; padding: 13px 15px; min-height: 48px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23c9a24b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: linear-gradient(180deg, var(--bg), #070504); border-top: 1px solid var(--line-soft); padding: var(--s-8) 0 var(--s-3); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr; gap: var(--s-4) var(--s-5); }
@media (max-width: 1024px){ .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 680px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-2); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-about p { color: var(--muted); font-size: var(--fs-sm); max-width: 36ch; margin-top: var(--s-2); }
.social { display: flex; gap: 10px; margin-top: var(--s-2); }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--gold); transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease); }
.social a:hover { background: rgba(201,162,75,.12); transform: translateY(-2px); color: var(--gold-soft); }
.social svg { width: 18px; height: 18px; }
.footer-about .brand { margin-bottom: 0; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: var(--s-5); padding-top: var(--s-3); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--muted-2); font-size: var(--fs-xs); }
.footer-bottom a { color: var(--muted-2); }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Floating actions */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease); }
.float-actions a:hover { transform: scale(1.09); }
.float-actions .wa { background: #25D366; color: #fff; }
.float-actions .call { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: var(--ink); }
.float-actions svg { width: 26px; }
@media (max-width: 480px){ .float-actions a { width: 52px; height: 52px; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; font-size: var(--fs-sm); }
.skip-link:focus { left: 0; }
