/* ============================================================
   Georgia Gate & Fence - Navigation & Hero
   ============================================================ */

:root {
  --ink: #1a1916;
  --charcoal: #26241f;
  --black: #121110;
  --bronze: #a87d4f;
  --bronze-dark: #8a6336;
  --bronze-soft: #f3ebdf;
  --cream: #f7f4ef;
  --white: #ffffff;
  --gray-700: #4f4b44;
  --gray-500: #7b756b;
  --gray-300: #d8d2c8;
  --gray-200: #e8e3da;
  --gray-100: #f2efe9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(26, 25, 22, .06);
  --shadow: 0 18px 50px rgba(26, 25, 22, .14);
  --shadow-lg: 0 30px 80px rgba(26, 25, 22, .22);

  --maxw: 1240px;
  --header-h: 88px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html.is-nav-open {
  overscroll-behavior: none;
}
body {
  margin: 0; font-family: var(--font-body); color: var(--ink);
  background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.08; font-weight: 600; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.ic { width: 18px; height: 18px; flex: none; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--bronze-dark); color: #fff; box-shadow: 0 8px 22px rgba(138, 99, 54, .32); }
.btn--accent:hover { background: #694a26; box-shadow: 0 12px 28px rgba(105, 74, 38, .4); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--line { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn--line:hover { border-color: var(--bronze); color: var(--bronze-dark); }
.btn--lg { font-size: 15px; padding: 17px 32px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { display: contents; }

.util-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.util-bar__inner {
  display: flex; align-items: center; justify-content: flex-end;
  min-height: 34px; gap: 20px;
}
.util-bar__pay,
.util-bar__phone,
.util-bar__link {
  font-size: 12.5px; font-weight: 500; color: var(--ink); white-space: nowrap;
  transition: color .15s ease;
}
.util-bar__pay:hover,
.util-bar__phone:hover,
.util-bar__link:hover { color: var(--bronze-dark); }
.util-bar__link[aria-current="page"] { color: var(--bronze-dark); font-weight: 600; }
.util-bar__phone { display: inline-flex; align-items: center; gap: 7px; }
.util-bar__phone .ic { width: 14px; height: 14px; color: var(--bronze); }

.header-bar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled .header-bar { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
  min-width: 0;
}

.brand { flex: none; display: inline-flex; align-items: center; }
.brand__logo { height: 70px; width: auto; }

.header__collapse { display: contents; }

/* ---------- Nav ---------- */
.nav { position: relative; flex: 1; align-self: stretch; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: stretch; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { display: flex; align-items: center; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: .1em;
  padding: 12px 10px; border-radius: 8px; background: none; border: 0;
  font-family: var(--font-body); cursor: pointer;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--bronze-dark); }
.caret { width: 15px; height: 15px; fill: none; stroke: var(--bronze); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.has-panel:hover .caret, .has-panel:focus-within .caret { transform: rotate(180deg); }

.header__cta { flex: none; display: flex; align-items: center; }
.header__drawer-utils { display: none; }
.header__actions { flex: none; display: flex; align-items: center; gap: 18px; }

/* ---------- Panels (shared) ---------- */
.panel {
  position: absolute; top: 100%; z-index: 1001;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 22px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  margin-top: 8px;
}
/* hover bridge anchored to the panel so the gap can't close the menu */
.panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.has-panel:hover > .panel, .has-panel:focus-within > .panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Mega (Fencing, Gates) - wide, centered on the nav */
.mega { left: 50%; transform: translate(-50%, 6px); width: min(880px, 94vw); padding: 22px; }
.has-mega:hover > .mega, .has-mega:focus-within > .mega { transform: translate(-50%, 0); }
.mega__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; padding: 0 2px; }
.mega__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; }
.mega__all { font-size: 13px; font-weight: 600; color: var(--bronze-dark); }
.mega__all:hover span { margin-left: 3px; }
.mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* Featured ornamental product lines (Fencing mega) */
.mega__feature-row { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.mega__feature-eyebrow {
  display: block; font-weight: 600; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 11px;
}
.mega__feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega__feature-cards .mm-feature__name { font-size: 15px; }
.mega__feature-cards .mm-feature__text { font-size: 12px; }
.mm-feature {
  display: flex; align-items: center; gap: 13px; padding: 11px;
  border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--cream);
  transition: border-color .15s ease, box-shadow .2s ease, transform .15s ease;
}
.mm-feature:hover { border-color: var(--bronze); box-shadow: var(--shadow); transform: translateY(-3px); }
.mm-feature__img {
  flex: none; width: 60px; height: 60px; border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, transparent 2px 10px),
    radial-gradient(120% 100% at 50% 0%, rgba(168,125,79,.4), transparent 60%),
    linear-gradient(150deg, #3a362f, #1a1815);
}
.mm-feature__body { display: flex; flex-direction: column; gap: 2px; }
.mm-feature__name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.1; }
.mm-feature__text { font-size: 12.5px; color: var(--gray-500); }

.mm-card {
  position: relative; display: block; overflow: hidden; isolation: isolate;
  aspect-ratio: 16 / 10; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); background: #1d1a16;
}
.mm-card__img {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, transparent 2px 16px),
    radial-gradient(120% 100% at 50% 0%, rgba(168,125,79,.35), transparent 60%),
    linear-gradient(150deg, #3a362f, #1a1815);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.mm-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,16,.9) 0%, rgba(18,17,16,.6) 28%, rgba(18,17,16,.25) 55%, rgba(18,17,16,.08) 100%);
  transition: background .3s ease;
}
.mm-card__label {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  padding: 12px 14px; font-weight: 600; font-size: 14px; color: #fff; line-height: 1.2;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.mm-card__label::after {
  content: ""; display: block; height: 2px; width: 0; margin-top: 6px;
  background: var(--bronze); border-radius: 2px;
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
.mm-card:hover .mm-card__img { transform: scale(1.07); }
.mm-card:hover::after { background: linear-gradient(to top, rgba(18,17,16,.92) 0%, rgba(18,17,16,.45) 55%, rgba(18,17,16,.12) 100%); }
.mm-card:hover .mm-card__label { transform: translateY(-3px); }
.mm-card:hover .mm-card__label::after { width: 26px; }

/* Menu-style mega (Design Center) - link columns + featured card */
.mega--menu { width: min(1040px, 95vw); padding: 22px 28px 28px; }
.mega--menu .mega__head { margin-bottom: 16px; }
.mega__cols { display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 28px; }
.mega__col-title {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 11.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-dark);
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--gray-200);
}
.mega__links { list-style: none; margin: 0; padding: 0; }
.mega__links a {
  display: block; padding: 9px 8px; margin: 0 -8px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--gray-700);
  transition: background .15s ease, color .15s ease;
}
.mega__links a:hover { background: var(--cream); color: var(--bronze-dark); }
.mega__feature {
  display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(155deg, #2c2820, #18150f); color: #fff;
  border-radius: var(--radius); padding: 24px;
}
.mega__feature-title { font-family: var(--font-head); font-weight: 600; font-size: 21px; margin-bottom: 10px; }
.mega__feature-text { font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 18px; }
.mega__feature-cta {
  margin-top: auto; font-weight: 600; font-size: 14px; color: var(--bronze);
  letter-spacing: .01em; transition: color .15s ease;
}
.mega__feature:hover .mega__feature-cta { color: #fff; }
.mega__feature:hover .mega__feature-cta span { margin-left: 4px; }

/* Attention-grabbing accent variant */
.mega__feature--accent { background: linear-gradient(150deg, var(--bronze) 0%, var(--bronze-dark) 100%); transition: background .25s ease, box-shadow .25s ease; }
.mega__feature--accent .mega__feature-text { color: rgba(255,255,255,.9); }
.mega__feature--accent .mega__feature-cta { color: #fff; }
.mega__feature--accent .mega__feature-cta span { transition: margin .15s ease; }
.mega__feature--accent:hover { background: linear-gradient(150deg, var(--bronze-dark) 0%, #694a26 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.mega__feature--accent:hover .mega__feature-cta { color: #fff; }

/* Services mega - named items with descriptions + featured card */
.mega--services { width: min(760px, 94vw); display: grid; grid-template-columns: 1.45fr 1fr; gap: 22px; padding: 22px; }
.mega--services .mega__head { grid-column: 1 / -1; margin-bottom: 4px; }
.mega__services { display: flex; flex-direction: column; gap: 2px; }
.svc-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; margin: 0 -6px; border-radius: 10px;
  transition: background .15s ease;
}
.svc-item:hover { background: var(--cream); }
.svc-item__name { font-weight: 600; font-size: 14.5px; color: var(--ink); transition: color .15s ease; }
.svc-item:hover .svc-item__name { color: var(--bronze-dark); }
.svc-item__text { font-size: 12.5px; color: var(--gray-500); line-height: 1.35; }

/* Standard dropdowns (Services, Resources, About) - anchored under their item */
.nav__item.has-panel:not(.has-mega) { position: relative; }
.dropdown { left: 0; min-width: 264px; padding: 12px; }
.dropdown__list { list-style: none; margin: 0; padding: 0; }
.dropdown__list a {
  display: block; padding: 11px 14px; border-radius: 9px;
  font-size: 14.5px; font-weight: 500; color: var(--gray-700);
  transition: background .15s ease, color .15s ease;
}
.dropdown__list a:hover { background: var(--cream); color: var(--bronze-dark); }

/* ---------- Burger ---------- */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1px solid var(--gray-200); border-radius: 10px; background: #fff;
  cursor: pointer; padding: 0; align-items: center; justify-content: center; margin-left: auto;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(18, 17, 16, .45); z-index: 998; opacity: 0; transition: opacity .25s ease; }
.nav-overlay.is-visible { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--cream); }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center;
  padding: 76px 28px 84px;
}
.hero__content { max-width: 600px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-dark); margin: 0 0 24px;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--bronze); flex: none; }
.hero__title {
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
  font-size: clamp(34px, 4vw, 56px); line-height: 1.1; letter-spacing: -.005em; margin: 0 0 24px;
}
.hero__title-lead { white-space: nowrap; }
.hero__title em { font-style: italic; font-weight: 400; color: var(--bronze-dark); }
.hero__sub { font-size: clamp(16px, 1.3vw, 18px); color: var(--gray-700); max-width: 54ch; margin: 0 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust {
  list-style: none; margin: 0; padding: 28px 0 0; display: flex; flex-wrap: wrap;
  gap: 12px 26px; border-top: 1px solid var(--gray-200);
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-700);
}
.hero__trust li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }
.hero__trust-rating::before { display: none; }
.hero__trust-rating { color: var(--ink); }
.hero__trust-rating svg { width: 16px; height: 16px; fill: var(--bronze); }

/* Visual panel */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius-lg);
  background: #1d1a16;
  box-shadow: var(--shadow-lg);
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transform: scale(1.005);
  transition: opacity 1.4s ease, transform 7s ease-out;
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; transform: scale(1.09); }
.hero__tag {
  position: absolute; left: -26px; bottom: 40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  background: #fff; border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.hero__tag-num { font-family: var(--font-head); font-weight: 600; font-size: 54px; line-height: .85; color: var(--bronze-dark); }
.hero__tag-num span { font-size: 28px; vertical-align: super; }
.hero__tag-label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gray-700); line-height: 1.3; width: 100%;
  padding-top: 10px; border-top: 1px solid var(--gray-200);
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 92px 0; }
.section--muted { background: var(--cream); }
.section--dark { background: var(--charcoal); color: #fff; }
.section__head { max-width: 660px; margin: 0 0 52px; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
.section__head--row > div { max-width: 660px; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bronze-dark); margin-bottom: 18px;
}
.section__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--bronze); }
.section__eyebrow--light { color: var(--bronze); }
.section__title { font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -.01em; }
.section--dark .section__title { color: #fff; }
.section__sub { font-size: 17px; color: var(--gray-700); margin: 18px 0 0; line-height: 1.55; }
.section--dark .section__sub { color: rgba(255,255,255,.7); }
.section__foot { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- What We Build ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.prod-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.prod-card__media {
  display: block; aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 16px),
    radial-gradient(120% 90% at 50% 0%, rgba(168,125,79,.4), transparent 60%),
    linear-gradient(155deg, #3a362f, #18150f);
}
.prod-card__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 22px 26px; flex: 1; }
.prod-card__name { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--ink); }
.prod-card__text { font-size: 14px; color: var(--gray-500); line-height: 1.5; flex: 1; }
.prod-card__cta { font-weight: 600; font-size: 14px; color: var(--bronze-dark); margin-top: 4px; }
.prod-card:hover .prod-card__cta span { margin-left: 4px; }
.prod-card__cta span { transition: margin .15s ease; display: inline-block; }

/* ---------- Why (editorial split) ---------- */
.why { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: start; }
.why__intro { position: sticky; top: 110px; }
.why__intro .section__sub { margin-bottom: 28px; }
.why__list { display: grid; gap: 0; }
.why-row {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 4px; border-top: 1px solid var(--gray-300);
  transition: padding-left .2s ease;
}
.why-row:last-child { border-bottom: 1px solid var(--gray-300); }
.why-row:hover { padding-left: 12px; }
.why-row__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff; border: 1px solid var(--gray-200); color: var(--bronze-dark);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.why-row:hover .why-row__icon { background: var(--bronze); color: #fff; border-color: var(--bronze); }
.why-row__icon svg { width: 24px; height: 24px; }
.why-row__body { display: flex; flex-direction: column; gap: 5px; }
.why-row__title { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--ink); }
.why-row__text { font-size: 14.5px; color: var(--gray-500); line-height: 1.55; }

/* ---------- Featured Projects ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 20px; }
.proj-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  display: block; isolation: isolate;
}
.proj-card--lg { grid-column: span 2; }
.proj-card__media {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px),
    radial-gradient(120% 90% at 50% 0%, rgba(168,125,79,.35), transparent 60%),
    linear-gradient(155deg, #3a362f, #18150f);
  transition: transform .4s ease;
}
.proj-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,16,.78) 0%, rgba(18,17,16,.15) 45%, transparent 70%);
}
.proj-card:hover .proj-card__media { transform: scale(1.05); }
.proj-card__overlay { position: absolute; left: 0; bottom: 0; z-index: 1; padding: 24px; color: #fff; }
.proj-card__loc {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 6px;
}
.proj-card__name { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 600; }

/* ---------- Process (dark) ---------- */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { padding: 28px 0 0; border-top: 2px solid rgba(255,255,255,.16); }
.step-card__num { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 600; color: var(--bronze); margin-bottom: 16px; }
.step-card__title { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-card__text { font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0; }

/* ---------- Meet ---------- */
.meet { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.meet__visual { position: relative; padding: 18px 18px 0 0; }
.meet__visual::before {
  content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 62%;
  border: 2px solid var(--bronze); border-radius: var(--radius-lg); z-index: 0;
}
.meet__photo {
  position: relative; z-index: 1;
  aspect-ratio: 5 / 6; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  background: #1d1a16 center / cover no-repeat;
}
.meet__body .section__eyebrow { margin-bottom: 18px; }
.meet__lead { font-size: 17px; color: var(--gray-700); line-height: 1.6; margin: 22px 0 14px; }
.meet__text { font-size: 15px; color: var(--gray-500); line-height: 1.6; margin: 0 0 26px; }
.meet__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.chips { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  background: #fff; border: 1px solid var(--gray-200);
  padding: 9px 16px; border-radius: 999px;
}

/* ---------- Design Center (overlay tiles) ---------- */
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.res-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9; display: block; isolation: isolate;
}
.res-card__media {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px),
    radial-gradient(120% 90% at 50% 0%, rgba(168,125,79,.32), transparent 60%),
    linear-gradient(155deg, #3a362f, #18150f);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.res-card:hover .res-card__media { transform: scale(1.06); }
.res-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,16,.82) 0%, rgba(18,17,16,.25) 50%, rgba(18,17,16,.05) 100%);
  transition: background .5s cubic-bezier(.22,.61,.36,1);
}
.res-card:hover::after { background: linear-gradient(to top, rgba(18,17,16,.9) 0%, rgba(18,17,16,.5) 60%, rgba(18,17,16,.25) 100%); }
.res-card__content { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; }
.res-card__name {
  font-family: var(--font-head); font-size: clamp(26px, 2.4vw, 32px); font-weight: 600; line-height: 1.1;
  transform: translateY(0); transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.res-card:hover .res-card__name { transform: translateY(-2px); }
.res-card__text {
  font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.55; margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(8px);
  transition: max-height .55s cubic-bezier(.22,.61,.36,1), opacity .45s ease, transform .55s cubic-bezier(.22,.61,.36,1), margin .55s cubic-bezier(.22,.61,.36,1);
}
.res-card__cta {
  font-weight: 600; font-size: 14px; color: var(--bronze); margin-top: 16px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s ease .08s, transform .55s cubic-bezier(.22,.61,.36,1) .08s;
}
.res-card__cta span { display: inline-block; transition: margin .2s ease; }
.res-card:hover .res-card__cta span { margin-left: 4px; }
.res-card:hover .res-card__text { max-height: 90px; opacity: 1; transform: translateY(0); margin-top: 12px; }
.res-card:hover .res-card__cta { opacity: 1; transform: translateY(0); }
.res-card:focus-visible .res-card__text { max-height: 90px; opacity: 1; transform: translateY(0); margin-top: 12px; }
.res-card:focus-visible .res-card__cta { opacity: 1; transform: translateY(0); }

/* ---------- Reviews ---------- */
.rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; }
.rating__stars { display: inline-flex; gap: 2px; }
.rating__stars svg { width: 20px; height: 20px; fill: var(--bronze); }
.rating__text { font-size: 15px; color: var(--gray-700); }
.rating__text strong { color: var(--ink); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px 28px;
}
.rev-card__stars { display: inline-flex; gap: 2px; margin-bottom: 18px; }
.rev-card__stars svg { width: 18px; height: 18px; fill: var(--bronze); }
.rev-card__text { font-size: 15px; color: var(--gray-700); line-height: 1.6; margin: 0 0 24px; flex: 1; }
.rev-card__person { display: flex; align-items: center; gap: 14px; }
.rev-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--bronze-soft); color: var(--bronze-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 19px;
}
.rev-card__meta { display: flex; flex-direction: column; }
.rev-card__name { font-weight: 600; font-size: 15px; color: var(--ink); }
.rev-card__role { font-size: 13px; color: var(--gray-500); }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: linear-gradient(155deg, #2c2820, #18150f); color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 100% 0%, rgba(168,125,79,.28), transparent 55%);
}
.cta-band__inner { position: relative; text-align: center; padding: 88px 28px; }
.cta-band__title { font-size: clamp(28px, 3.4vw, 44px); color: #fff; max-width: 16em; margin: 0 auto 18px; }
.cta-band__sub { font-size: 17px; color: rgba(255,255,255,.74); max-width: 56ch; margin: 0 auto 36px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.85); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding: 72px 28px 56px;
}
.footer__logo { height: 88px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__desc { font-size: 14px; line-height: 1.6; margin: 0 0 22px; max-width: 46ch; }
.footer__desc a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__desc a:hover { color: var(--bronze); }
.footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer__contact a:hover { color: var(--bronze); }
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a,
.footer__social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.footer__social a:hover {
  color: var(--bronze);
  border-color: var(--bronze);
  background: rgba(176,141,87,.12);
}
.footer__social span {
  opacity: .4;
  cursor: default;
}
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__title { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.66); transition: color .15s ease; }
.footer__links a:hover { color: var(--bronze); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; }
.footer__copy { font-size: 13px; margin: 0; }
.footer__sister {
  display: inline;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__sister:hover { color: #fff; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.66); }
.footer__legal a:hover { color: var(--bronze); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) and (min-width: 993px) {
  .header__inner { gap: 12px; }
  .nav__link { padding: 12px 8px; letter-spacing: .08em; }
}

@media (max-width: 992px) {
  :root { --header-h: 70px; }
  .brand__logo { height: 46px; }
  .nav-burger { display: flex; }
  .nav-overlay { top: var(--header-h, 70px); }

  .header-bar { overflow: visible; }
  .header__collapse {
    display: block;
    position: fixed;
    top: var(--header-h, 70px);
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: auto;
    background: #fff;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 6px 18px 40px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear .3s;
    box-shadow: var(--shadow-lg);
  }
  .header__collapse.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
  }

  .nav { display: block; position: static; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { display: block; border-bottom: 1px solid var(--gray-100); }
  .nav__item.has-panel:not(.has-mega) { position: static; }
  .nav__link { width: 100%; justify-content: space-between; font-size: 16px; padding: 15px 8px; border-radius: 0; }
  .nav__link:hover { background: none; color: var(--ink); }
  .has-panel:hover .caret, .has-panel:focus-within .caret { transform: none; }
  .nav__item.is-open > .nav__toggle .caret { transform: rotate(180deg); }

  /* accordion: kill desktop mega positioning so hover/focus cannot slide panels left */
  .panel,
  .mega,
  .mega--menu,
  .mega--services,
  .dropdown,
  .has-panel:hover > .panel,
  .has-panel:focus-within > .panel,
  .has-mega:hover > .mega,
  .has-mega:focus-within > .mega {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }
  .panel { display: none; padding: 0 0 14px; }
  .panel::before { display: none; }
  .nav__item.is-open > .panel { display: block; }

  .mega__head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin: 0 0 12px; padding: 0 2px 10px; border-bottom: 1px solid var(--gray-100);
  }
  .mega__title { font-size: 15px; }
  .mega__all:hover span { margin-left: 0; }
  .mega__grid { grid-template-columns: 1fr; gap: 6px; }
  .mega--menu { padding: 0 0 6px; }
  .mega__cols { grid-template-columns: 1fr; gap: 16px; }
  .mega__links a { margin: 0; padding: 12px 8px; }
  .mega__links a:hover { background: var(--cream); }
  .mega__feature { padding: 18px; }
  .mega__feature:hover .mega__feature-cta span,
  .mega__feature--accent:hover .mega__feature-cta span { margin-left: 0; }
  .mega__feature-cards { grid-template-columns: 1fr; }
  .mega__feature-row { margin-bottom: 14px; padding-bottom: 14px; }
  .mega__feature-eyebrow { padding-top: 2px; }
  .mm-feature { transform: none; }
  .mm-feature:hover { transform: none; box-shadow: none; }
  .mm-card {
    aspect-ratio: auto; display: flex; align-items: center; gap: 0;
    min-height: 56px; background: var(--cream);
  }
  .mm-card__img {
    position: relative; inset: auto; flex: none;
    width: 72px; height: 52px; margin: 4px 0 4px 4px; border-radius: 8px;
  }
  .mm-card::after { content: none; }
  .mm-card__label {
    position: static; color: var(--ink); font-size: 15px; padding: 10px 12px;
  }
  .mm-card__label::after { display: none; }
  .mm-card:hover .mm-card__img { transform: none; }
  .mm-card:hover .mm-card__label { transform: none; }
  .dropdown { padding: 0 0 8px; min-width: 0; }
  .dropdown__list a { padding: 12px 4px; }

  .util-bar { display: block; }
  .util-bar__inner {
    justify-content: space-between;
    gap: 10px;
    min-height: 36px;
  }
  .util-bar__pay,
  .util-bar__phone,
  .util-bar__link {
    font-size: 12px;
  }
  .header__inner { gap: 12px; }
  .header__cta { margin-left: auto; }
  .header__cta .btn { padding: 11px 16px; font-size: 13px; }
  .header__cta .btn:hover { transform: none; }
  .nav-burger { margin-left: 0; }

  .header__drawer-utils {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 22px; padding-top: 8px;
  }
  .header__drawer-pay,
  .header__drawer-phone {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px 16px; border-radius: 12px; font-weight: 600;
  }
  .header__drawer-wholesale { display: none; }
  .header__drawer-pay {
    background: var(--ink); color: #fff; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase;
  }
  .header__drawer-phone {
    background: var(--cream); color: var(--ink); font-size: 15px;
  }
  .header__drawer-phone .ic { width: 16px; height: 16px; color: var(--bronze); }
  .header__actions { display: none; }

  .mega--services { display: none; flex-direction: column; gap: 10px; padding: 0 0 6px; }
  .nav__item.is-open > .mega--services { display: flex; }
  .mega__services { gap: 0; }
  .svc-item { margin: 0; padding: 12px 8px; }
  .svc-item:hover { background: var(--cream); }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 72px 28px 64px; }
  .hero__visual { order: -1; }
  .hero__content { max-width: none; }
  .hero__photo { aspect-ratio: 16 / 11; }
  .hero__tag { left: 16px; bottom: 16px; padding: 14px 18px; }
  .hero__tag-num { font-size: 36px; }

  /* Sections */
  .section { padding: 68px 0; }
  .section__head { margin-bottom: 40px; }
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .why__intro { position: static; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .proj-card--lg { grid-column: span 2; }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .meet { grid-template-columns: 1fr; gap: 48px; }
  .meet__visual { order: 2; max-width: 460px; }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .cta-band .cta-band__inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer { text-align: center; }
  .footer .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding-top: 64px;
    padding-bottom: 48px;
    justify-items: center;
  }
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__logo { height: 108px; margin-left: auto; margin-right: auto; }
  .footer__desc { margin-left: auto; margin-right: auto; }
  .footer__contact { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__col { width: 100%; }
  .footer__links { align-items: center; }

  .footer .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .footer__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer__copy-line {
    display: block;
    white-space: nowrap;
    font-size: clamp(10.5px, 3.1vw, 13px);
  }
  .footer__sister {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    white-space: normal;
  }
  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .header__cta .btn { padding: 10px 12px; font-size: 12.5px; }
  .util-bar__inner { gap: 8px; }
  .util-bar__pay,
  .util-bar__phone,
  .util-bar__link { font-size: 11.5px; }
  .hero__cta .btn { width: 100%; }
  .hero__title-lead { white-space: normal; }
  .hero__grid { padding-top: 80px; padding-bottom: 56px; }

  .section { padding: 56px 0; }
  .prod-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .proj-card--lg { grid-column: span 1; }
  .step-grid { grid-template-columns: 1fr; gap: 24px; }
  .res-grid { grid-template-columns: 1fr; }
  .res-card { aspect-ratio: 16 / 10; }
  .res-card__text { max-height: 80px; opacity: 1; transform: none; margin-top: 10px; }
  .res-card__cta { opacity: 1; transform: none; }
  .meet__visual { max-width: none; }
  .cta-band__btns .btn { width: 100%; }
}

/* ============================================================
   MODAL - Free Guide
   ============================================================ */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal__overlay {
  position: absolute; inset: 0; background: rgba(18, 17, 16, .6);
  backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s ease;
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 920px;
  max-height: calc(100vh - 48px); overflow: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px) scale(.98); transition: opacity .3s ease, transform .3s cubic-bezier(.22,.61,.36,1);
}
.modal.is-open .modal__dialog { opacity: 1; transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .15s ease;
}
.modal__close:hover { background: #fff; transform: rotate(90deg); }

.guide-modal__grid { display: grid; grid-template-columns: 40% 60%; }

/* Left - cover */
.guide-modal__left {
  display: flex; align-items: center; justify-content: center; padding: 40px 28px;
  background: #E7E5E0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.guide-cover { position: relative; width: 100%; max-width: 320px; }
.guide-cover__img {
  display: block; width: 100%; height: auto;
}
.guide-cover__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); background: var(--bronze);
  padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* Right - content */
.guide-modal__right { padding: 40px 40px 32px; }
.guide-modal__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin: 0 0 10px;
}
.guide-modal__title { font-family: var(--font-head); font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; margin: 0 0 12px; line-height: 1.15; }
.guide-modal__text { font-size: 15px; color: var(--gray-700); line-height: 1.55; margin: 0 0 18px; max-width: 46ch; }
.guide-modal__subhead { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 14px; }
.guide-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.guide-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--gray-700); font-weight: 500; }
.guide-modal__cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.guide-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--bronze) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.guide-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.guide-form input {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 13px 15px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.guide-form input::placeholder { color: var(--gray-500); }
.guide-form input:focus { outline: none; border-color: var(--bronze); background: #fff; box-shadow: 0 0 0 3px rgba(168,125,79,.14); }
.guide-form .btn { width: 100%; }
.guide-form__note { font-size: 12.5px; color: var(--gray-500); text-align: center; margin: 12px 0 0; }

/* Success view */
.guide-success-view[hidden] { display: none; }
.guide-success-view { text-align: center; }
.guide-success__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 4px auto 22px;
  background: var(--bronze-soft); color: var(--bronze-dark);
  display: flex; align-items: center; justify-content: center;
}
.guide-success__icon svg { width: 32px; height: 32px; }
.guide-success-view h2 { font-family: var(--font-head); font-size: 28px; font-weight: 600; margin: 0 0 12px; }
.guide-success-view > p { font-size: 15px; color: var(--gray-700); margin: 0 0 30px; }
.guide-success__next { border-top: 1px solid var(--gray-200); padding-top: 26px; }
.guide-success__lead { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 8px; }
.guide-success__next > p { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin: 0 0 18px; }
.guide-success__btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.guide-success__or { font-size: 13px; color: var(--gray-500); }
.guide-form-view[hidden] { display: none; }

@media (max-width: 760px) {
  .guide-modal__grid { grid-template-columns: 1fr; }
  .guide-modal__left { display: none; }
  .guide-modal__right { padding: 44px 26px 32px; }
  .guide-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .guide-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL (JS adds .reveal only to below-fold nodes)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- OTO embedded forms (careers / wholesale / start your project) ---------- */
.oto-form-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  overflow: hidden;
  background: transparent;
}
.guide-form-view .oto-form-iframe {
  min-height: 260px;
  height: 260px;
}
