/* =========================================================================
   ㈜ 인터에티 (Intereti Co., Ltd.) — styles.css
   Plain, dependency-free stylesheet. Organized in bands:
   1) Fonts  2) Tokens  3) Reset/base  4) Layout  5) Components  6) Sections
   7) Utilities  8) Responsive  9) Motion
   ========================================================================= */

/* ----------------------------- 1) FONTS (self-hosted) ------------------- */
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ----------------------------- 2) TOKENS -------------------------------- */
:root {
  --green: #489F37;
  --green-d: #3A8A2C;
  --green-dd: #2c6a22;
  --lime: #AEC618;            /* decorative accent only (low contrast) */
  --ink: #20271c;
  --body: #3c463a;
  --muted: #6a766220;        /* not used as text */
  --muted-text: #66705f;
  --bg: #ffffff;
  --bg-soft: #f4f7f0;
  --bg-soft2: #eef3e8;
  --line: #e6ece0;
  --footer: #1f2c1a;
  --footer-2: #18220f;

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 999px;

  --shadow-sm: 0 1px 3px rgba(20, 45, 12, .07), 0 1px 2px rgba(20, 45, 12, .06);
  --shadow: 0 14px 34px rgba(20, 45, 12, .10);
  --shadow-lg: 0 26px 60px rgba(20, 45, 12, .18);

  --font: 'Pretendard', system-ui, -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
  --display: 'Quicksand', var(--font);

  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --step-eyebrow: .8rem;
  --h1: clamp(2.1rem, 1.3rem + 3.6vw, 3.4rem);
  --h2: clamp(1.55rem, 1.1rem + 2vw, 2.3rem);
  --h3: clamp(1.25rem, 1rem + 1.1vw, 1.6rem);
}

/* ----------------------------- 3) RESET / BASE -------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;       /* clean Hangul wrapping */
  overflow-wrap: anywhere;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.25; font-weight: 700; }
strong { font-weight: 700; color: var(--ink); }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 200;
  background: var(--green); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ----------------------------- 4) LAYOUT -------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }
.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.8vw, 2rem); }
.grid--2col { grid-template-columns: repeat(2, 1fr); }
.lede { font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); color: var(--muted-text); }

/* ----------------------------- 5) COMPONENTS ---------------------------- */

/* Section heading (Quicksand eyebrow + Korean title + lime underline) */
.section-head { margin-bottom: clamp(1.8rem, 1rem + 2.5vw, 3rem); max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--display); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: var(--step-eyebrow); color: var(--green-dd); display: inline-block; margin-bottom: .6rem;
}
.section-head h2 { font-size: var(--h2); letter-spacing: -.01em; }
.section-head .rule { width: 52px; height: 4px; border-radius: 4px; background: var(--lime); margin-top: 1.1rem; }
.section-head.center .rule { margin-inline: auto; }
.section-head p { margin-top: 1.1rem; }

/* Buttons */
.btn {
  --bg: var(--green); --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  padding: .85rem 1.5rem; border-radius: var(--pill);
  font-weight: 600; line-height: 1; min-height: 48px;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s;
  box-shadow: 0 6px 16px rgba(72, 159, 55, .25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(72, 159, 55, .32); background: var(--green-d); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--ghost {
  background: transparent; color: var(--green); box-shadow: inset 0 0 0 2px var(--green);
}
.btn--ghost:hover { background: var(--green); color: #fff; box-shadow: inset 0 0 0 2px var(--green); }
.btn--light { background: #fff; color: var(--green-d); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.btn--light:hover { background: #f3f7ee; color: var(--green-dd); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; min-height: 54px; }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d6e2cb; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__eyebrow { font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dd); }
.card__body h3 { font-size: var(--h3); }
.card__body p { color: var(--muted-text); font-size: .97rem; }
.card__link { margin-top: auto; padding-top: .5rem; color: var(--green-dd); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.card__link svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, .4rem + 2vw, 2rem); }
.stat { text-align: center; }
.stat__num { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); color: var(--green-d); line-height: 1; }
.stat__num span { font-size: .55em; }
.stat__label { margin-top: .6rem; color: var(--muted-text); font-size: .92rem; }

/* Amenity grid (modernized icons) */
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .8rem; }
.amenity {
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  padding: 1.2rem .6rem; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: .9rem; color: var(--ink); font-weight: 500;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
}
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); background: #fff; }
.amenity svg { width: 30px; height: 30px; color: var(--green); }
.amenity-group + .amenity-group { margin-top: 2rem; }
.amenity-group h4 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .55rem; }
.amenity-group h4::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--lime); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft2); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure { position: relative; }
.gallery figcaption, .marquee figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem; color: #fff; font-size: .85rem; font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent); opacity: 0; transform: translateY(6px); transition: .25s var(--ease);
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption,
.marquee figure:hover figcaption, .marquee figure:focus-within figcaption { opacity: 1; transform: none; }

/* Auto-scrolling marquee gallery (2 rows, loops left, pause on hover) */
.marquee { display: grid; gap: .9rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.marquee__row {
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.marquee__row::-webkit-scrollbar { display: none; }
.marquee__row.is-grabbing { cursor: grabbing; }
.marquee__track { display: flex; gap: .9rem; width: max-content; }
.marquee figure { flex: 0 0 auto; width: clamp(210px, 22vw, 290px); margin: 0; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-soft2); box-shadow: var(--shadow-sm); position: relative; }
.marquee img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); -webkit-user-drag: none; user-drag: none; }
.marquee figure:hover img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee figure[aria-hidden="true"] { display: none; }
}

/* Spec table */
.spec-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table caption { caption-side: bottom; padding: .8rem 1rem; font-size: .85rem; color: var(--muted-text); text-align: left; background: var(--bg-soft); }
.spec-table th, .spec-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.spec-table thead th { background: var(--green); color: #fff; font-weight: 600; border-bottom: 0; white-space: nowrap; }
.spec-table tbody th { background: var(--bg-soft); font-weight: 700; color: var(--ink); width: 1%; white-space: nowrap; }
.spec-table tbody tr:last-child th, .spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table .num { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Definition / info rows */
.inforow { display: grid; grid-template-columns: 132px 1fr; gap: .2rem 1rem; }
.inforow dt { font-weight: 700; color: var(--ink); }
.inforow dd { color: var(--body); }
.inforow dt:not(:first-child), .inforow dd + dt { margin-top: .9rem; }

/* Rules list (notes) */
.rules { display: grid; gap: .7rem; }
.rules li { position: relative; padding-left: 1.7rem; color: var(--body); }
.rules li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(72,159,55,.14);
}
.rules strong { color: var(--green-dd); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { background: var(--bg-soft2); color: var(--green-dd); border-radius: var(--pill); padding: .45rem .95rem; font-size: .88rem; font-weight: 600; }

/* ----------------------------- HEADER / NAV ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(20, 45, 12, .08); border-bottom-color: var(--line); background: rgba(255,255,255,.96); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 46px; width: auto; }
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: .4rem; }
.nav__list a {
  position: relative; display: inline-flex; align-items: center; height: 44px; padding: 0 1rem;
  font-weight: 600; color: var(--ink); border-radius: 8px; transition: color .2s, background .2s;
}
.nav__list a::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 8px; height: 3px; border-radius: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__list a:hover { color: var(--green-d); }
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: var(--green-d); }
.nav__cta { margin-left: .5rem; }
.nav__cta .btn { font-weight: 700; color: #fff; }
.nav__lang { position: relative; display: flex; align-items: center; margin-left: .15rem; }
.lang-menu__toggle { display: inline-flex; align-items: center; gap: .4rem; height: 40px; padding: 0 .7rem; border: 0; border-radius: var(--radius-sm); background: none; cursor: pointer; color: var(--ink); font-family: inherit; font-weight: 700; font-size: .9rem; transition: color .2s, background .2s; }
.lang-menu__toggle:hover { color: var(--green-d); background: var(--bg-soft); }
.lang-menu__globe { width: 18px; height: 18px; flex: none; }
.lang-menu__chev { width: 12px; height: 12px; flex: none; transition: transform .2s var(--ease); }
.nav__lang.is-open .lang-menu__chev { transform: rotate(180deg); }
.flag { display: inline-block; width: 22px; height: 15px; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.12); line-height: 0; flex: none; }
.flag svg { display: block; width: 100%; height: 100%; }
.lang-menu { position: absolute; right: 0; top: calc(100% + .35rem); min-width: 160px; margin: 0; padding: .35rem; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); opacity: 0; transform: translateY(-6px); visibility: hidden; pointer-events: none; transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; }
.nav__lang.is-open .lang-menu { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.lang-menu a { display: flex; align-items: center; gap: .55rem; height: auto; padding: .55rem .7rem; border-radius: 8px; font-weight: 600; color: var(--body); }
.lang-menu a::after { display: none; }
.lang-menu a:hover { background: var(--bg-soft); color: var(--green-d); }
.lang-menu a[aria-current="true"] { color: var(--green-d); font-weight: 800; background: var(--bg-soft2); }
.nav__toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 10px; }
.nav__toggle:hover { background: var(--bg-soft); }
.nav__bars, .nav__bars::before, .nav__bars::after {
  content: ""; display: block; width: 24px; height: 2.5px; border-radius: 3px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s;
}
.nav__bars { position: relative; }
.nav__bars::before { position: absolute; top: -7px; }
.nav__bars::after { position: absolute; top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- HERO CAROUSEL ---------------------------- */
.hero { position: relative; height: min(92vh, 760px); min-height: 520px; overflow: hidden; background: #0e1a08; }
.hero__track { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease); display: grid; align-items: center;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s ease-out; }
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(16,30,8,.72) 0%, rgba(16,30,8,.45) 42%, rgba(16,30,8,.18) 75%),
    linear-gradient(to top, rgba(10,20,5,.55), transparent 45%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  font-family: var(--display); font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #cfe8c2; font-size: .82rem; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--lime); }
.hero h2 { color: #fff; font-size: var(--h1); letter-spacing: -.02em; line-height: 1.15; max-width: 16ch; }
.hero__en { font-family: var(--display); font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .12em; margin-top: .8rem; font-size: clamp(.95rem, .8rem + .6vw, 1.25rem); }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__controls { position: absolute; z-index: 3; bottom: clamp(1.4rem, 4vh, 2.4rem); left: 0; right: 0; }
.hero__controls .container { display: flex; align-items: center; gap: 1rem; }
.hero__dots { display: flex; gap: .55rem; }
.hero__dot { width: 36px; height: 5px; border-radius: 5px; background: rgba(255,255,255,.35); transition: background .25s, transform .25s; }
.hero__dot[aria-current="true"] { background: var(--lime); }
.hero__arrows { display: flex; gap: .5rem; margin-left: auto; }
.hero__arrow, .hero__play {
  width: 46px; height: 46px; border-radius: 50%; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); backdrop-filter: blur(4px); transition: background .2s, transform .2s;
}
.hero__arrow:hover, .hero__play:hover { background: rgba(255,255,255,.28); }
.hero__arrow svg, .hero__play svg { width: 20px; height: 20px; }
.hero__play .ico-pause { display: block; }
.hero__play .ico-play { display: none; }
.hero.is-paused .hero__play .ico-pause { display: none; }
.hero.is-paused .hero__play .ico-play { display: block; }

/* ----------------------------- PAGE BAND -------------------------------- */
.page-band {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--green-dd), var(--green) 55%, var(--green-d));
  padding-block: clamp(0.85rem, 0.58rem + 1.71vw, 1.65rem);
}
.page-band .eyebrow { margin-bottom: .3rem; }
.page-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(420px 320px at 88% -10%, rgba(174,198,24,.5), transparent 60%),
    radial-gradient(520px 380px at 100% 130%, rgba(255,255,255,.12), transparent 60%);
}
.page-band__inner { position: relative; z-index: 1; }
.page-band .eyebrow { color: #e9f5e0; }
.page-band h1 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.55rem); letter-spacing: -.02em; line-height: 1.15; }
.page-band__en { font-family: var(--display); font-weight: 600; letter-spacing: .14em; color: rgba(255,255,255,.82); margin-top: .3rem; font-size: .92rem; }
.breadcrumbs { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: .45rem; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs svg { width: 14px; height: 14px; opacity: .7; }

/* ----------------------------- 6) SECTION PATTERNS ---------------------- */
/* Split: media + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 1rem + 3vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.split__body h2 { font-size: var(--h2); margin-bottom: 1rem; }
.split__body h1 { font-size: var(--h2); margin-bottom: 1rem; }
.split__body p + p { margin-top: .9rem; }

/* Property block (facilities) */
.property { scroll-margin-top: calc(var(--header-h) + 20px); }
.property + .property { margin-top: clamp(3rem, 2rem + 5vw, 6rem); }
.property__header { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.property__logo { height: 60px; width: auto; background: #fff; border-radius: 12px; padding: 6px 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.property__title h2 { font-size: var(--h2); }
.property__title .en { font-family: var(--display); font-weight: 600; color: var(--green-dd); letter-spacing: .1em; font-size: .9rem; }
.property__banner { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.subhead { font-family: var(--display); font-weight: 700; letter-spacing: .04em; color: var(--green-dd); font-size: .85rem; text-transform: uppercase; margin: 2.4rem 0 1.1rem; display: flex; align-items: center; gap: .6rem; }
.subhead::before { content: ""; width: 18px; height: 3px; border-radius: 3px; background: var(--lime); }

/* Clients strip */
.clients { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.client-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); width: 100%; max-width: 940px; margin-inline: auto; }
.client-card h3 { font-size: 1.05rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.client-card h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.client-card img { width: 100%; border-radius: 8px; background: var(--bg-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.4rem, 1rem + 2.5vw, 3rem); align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.6rem); box-shadow: var(--shadow); }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-method:last-of-type { border-bottom: 0; }
.contact-method__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--bg-soft2); color: var(--green-d); display: grid; place-items: center; }
.contact-method__icon svg { width: 24px; height: 24px; }
.contact-method__label { font-size: .82rem; color: var(--muted-text); font-weight: 600; letter-spacing: .02em; }
.contact-method__value { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-top: .15rem; }
.contact-method__value a:hover { color: var(--green-d); }
.contact-method small { display: block; color: var(--muted-text); font-weight: 400; font-size: .85rem; margin-top: .2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.contact-aside { background: linear-gradient(150deg, var(--green-dd), var(--green-d)); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem,1rem + 2vw,2.6rem); box-shadow: var(--shadow); }
.contact-aside h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.contact-aside .inforow dt { color: #d8ecce; font-weight: 600; }
.contact-aside .inforow dd { color: #fff; }
.contact-aside a { text-decoration: underline; }

/* Contact — live business hours (JS-injected) */
.hours-live { margin-top: .6rem; }
.hours-live__status { display: inline-block; border-radius: var(--pill); padding: .25rem .7rem; font-size: .82rem; font-weight: 700; }
.hours-live__status--open   { background: rgba(72,159,55,.14); color: var(--green-dd); }
.hours-live__status--lunch  { background: #fff3da; color: #8a5a00; }
.hours-live__status--closed { background: var(--bg-soft2); color: var(--muted-text); }
.hours-live__next { margin-top: .4rem; font-weight: 600; color: var(--ink); }
.hours-live__tz, .hours-live__range, .hours-live__note { color: var(--muted-text); font-size: .85rem; margin-top: .2rem; }

/* CTA banner */
.cta {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--green-dd), var(--green-d) 60%, var(--green));
  padding: clamp(2.2rem, 1.5rem + 4vw, 4rem); text-align: center;
}
.cta::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(500px 300px at 15% 120%, rgba(174,198,24,.45), transparent 60%); }
.cta__inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.cta h2 { color: #fff; font-size: var(--h2); margin-bottom: .8rem; }
.cta p { color: rgba(255,255,255,.9); margin-bottom: 1.8rem; word-break: keep-all; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ----------------------------- FOOTER ----------------------------------- */
.site-footer { background: var(--footer); color: #c4d2bb; font-size: .92rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.9fr 1.4fr .85fr .85fr; gap: 2rem; padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.site-footer__brand img { width: 144px; height: auto; max-width: 100%; margin-bottom: 1rem; }
.site-footer__brand p { max-width: 38ch; color: #9fb295; word-break: keep-all; }
.site-footer__info p { margin-bottom: .4rem; }
.site-footer__info a:hover { color: #fff; }
.site-footer__h { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--display); font-weight: 700; }
.site-footer__nav { display: flex; flex-direction: column; gap: .55rem; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__lang { display: flex; flex-direction: column; gap: .55rem; }
.site-footer__lang a:hover { color: #fff; }
.site-footer__lang a[aria-current="true"] { color: var(--lime); font-weight: 700; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); background: var(--footer-2); }
.site-footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.1rem; font-size: .82rem; color: #8aa07f; }
/* Contact "prepare before you call" checklist */
.prep { margin-top: 1.8rem; padding: 1.4rem 1.5rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.prep h3 { font-size: 1.05rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.prep h3 svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.prep > p { color: var(--muted-text); font-size: .9rem; margin-bottom: 1rem; }
.prep-list { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.1rem; }
.prep-list li { position: relative; padding-left: 1.6rem; font-size: .93rem; color: var(--ink); font-weight: 500; }
.prep-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 800; }
@media (max-width: 520px) { .prep-list { grid-template-columns: 1fr; } }

/* ----------------------------- 7) UTILITIES ----------------------------- */
.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; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }

/* Reveal on scroll (JS opts elements in; default visible if no JS) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: .08s; }
.js .reveal-delay-2 { transition-delay: .16s; }
.js .reveal-delay-3 { transition-delay: .24s; }

/* ----------------------------- 8) RESPONSIVE ---------------------------- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
}
@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav__toggle { display: inline-flex; }
  .nav__list {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; padding: 1rem var(--gutter) 1.6rem; box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: transform .28s var(--ease), opacity .25s, visibility .25s;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav__list.is-open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
  .nav__list a { height: 52px; padding: 0 .6rem; font-size: 1.05rem; }
  .nav__list a::after { display: none; }
  .nav__list a[aria-current="page"] { background: var(--bg-soft); }
  .nav__cta { margin: .6rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__lang { margin: .4rem 0 0; position: static; flex-direction: column; align-items: stretch; }
  .lang-menu__toggle { width: 100%; height: 52px; padding: 0 .6rem; font-size: 1.05rem; justify-content: flex-start; }
  .lang-menu { position: static; min-width: 0; margin: .2rem 0 0; padding: 0; border: 0; box-shadow: none; opacity: 1; transform: none; visibility: visible; pointer-events: auto; display: none; }
  .nav__lang.is-open .lang-menu { display: block; }
  .lang-menu a { height: 52px; font-size: 1.05rem; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .brand__logo { height: 40px; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .grid--2col { grid-template-columns: 1fr; }
  .hero { height: 48vh; min-height: 340px; }
  .hero__arrows { display: none; }
  .hero__controls .container { justify-content: center; }
  .hero__dots { width: 100%; justify-content: center; }

  /* Spec table -> stacked cards */
  .spec-wrap { border: 0; box-shadow: none; }
  .spec-table tbody, .spec-table tr, .spec-table td, .spec-table th { display: block; width: 100%; }
  .spec-table { display: flex; flex-direction: column; width: 100%; }
  .spec-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .spec-table tbody tr {
    border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm);
  }
  .spec-table tbody th { background: var(--green); color: #fff; width: 100%; }
  .spec-table td { border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; text-align: right; }
  .spec-table td::before { content: attr(data-label); font-weight: 700; color: var(--ink); text-align: left; flex: none; white-space: nowrap; }
  .spec-table td:last-child { border-bottom: 0; }
  .spec-table caption { display: block; order: 1; width: 100%; box-sizing: border-box; margin-top: 1rem; white-space: normal; border: 1px solid var(--line); border-radius: var(--radius); }

  /* Footer -> single-column, mobile-native */
  .site-footer__inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .site-footer__brand p { max-width: none; }
  .site-footer__bottom .container { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
}

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