/* ===== Wall Decor Art — Base Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --c-bg:       #FAF9F6;
  --c-surface:  #FFFFFF;
  --c-charcoal: #101014;
  --c-black:    #000000;
  --c-text:     #131317;
  --c-text-2:   #45454E;
  --c-muted:    #B9B4A8;
  --c-border:   #E8E4DC;
  --c-accent:   #8B7040;
  --c-accent-2: #B69660;
  --c-warm:     #8B7040;
  --c-gold:     #C6A15B;
  --c-gold-2:   #E8CF9E;

  --shadow-1: 0 1px 2px rgba(24,20,12,0.04), 0 2px 8px rgba(24,20,12,0.05);
  --shadow-2: 0 2px 4px rgba(24,20,12,0.05), 0 8px 22px rgba(24,20,12,0.08);
  --shadow-3: 0 4px 10px rgba(24,20,12,0.07), 0 16px 38px rgba(24,20,12,0.11);
  --shadow-4: 0 8px 20px rgba(24,20,12,0.10), 0 28px 64px rgba(24,20,12,0.16);

  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.32, .72, 0, 1);
  --ease-soft:   cubic-bezier(.22, 1, .36, 1);

  --r-btn:  6px;
  --r-card: 10px;
  --max:    1400px;
  --pad:    40px;
  --pad-v:  100px;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
}
.overflow-guard { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--c-warm); color: #fff; }
:focus-visible { outline: 2px solid var(--c-accent-2); outline-offset: 3px; border-radius: 2px; }

/* ── Refined scrollbar ── */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--c-bg); }
  ::-webkit-scrollbar-thumb {
    background: #C9C3B6;
    border-radius: 8px;
    border: 3px solid var(--c-bg);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--c-warm); }
}

/* ── Scroll progress hairline ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--c-warm), var(--c-gold) 60%, var(--c-gold-2));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}
.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;
}

/* ── Layout ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding-top: var(--pad-v); padding-bottom: var(--pad-v); }

@media (max-width: 1023px) { :root { --pad: 32px; --pad-v: 60px; } }
@media (max-width: 767px)  { :root { --pad: 20px; --pad-v: 48px; } body { font-size: 16px; } }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display); font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.1;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}
h4, h5     { font-family: var(--font); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.display { font-size: clamp(44px, 5.8vw, 72px); font-family: var(--font-display); font-weight: 400; }
.h-xl    { font-size: clamp(38px, 4.4vw, 58px); font-family: var(--font-display); font-weight: 400; }
.h-l     { font-size: clamp(28px, 3vw, 40px);   font-family: var(--font-display); font-weight: 400; }
.h-m     { font-size: 20px; font-family: var(--font); font-weight: 600; letter-spacing: -0.01em; }
.h-s     { font-size: 15px; font-family: var(--font); font-weight: 500; }
.body    { font-size: 17px; line-height: 1.65; color: var(--c-text-2); font-weight: 400; text-wrap: pretty; }
em       { font-style: italic; }

/* ── Pill label ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  background: rgba(255,255,255,.85); border: 1px solid var(--c-border);
  border-radius: 999px; padding: 6px 15px;
  color: var(--c-text-2);
  box-shadow: 0 1px 2px rgba(24,20,12,.04);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-warm); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(139,112,64,.12);
}
.pill.dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pill.dark .dot { background: var(--c-gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18), 0 0 12px rgba(198,161,91,.55); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: 0.03em; padding: 14px 22px;
  border-radius: var(--r-btn); min-height: 48px;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform .25s ease, background-position .42s cubic-bezier(.16,1,.3,1), color .35s ease, border-color .35s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--c-charcoal); color: #fff; border-color: var(--c-charcoal); box-shadow: 0 1px 2px rgba(16,16,20,.2); }
.btn-primary:hover { background: #000; border-color: #000; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(16,16,20,.22); }
.btn-secondary {
  background: linear-gradient(to right, var(--c-charcoal) 50%, #fff 50%);
  background-size: 202% 100%;
  background-position: right center;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-secondary:hover {
  background-position: left center;
  color: #fff;
  border-color: var(--c-charcoal);
}
.btn-ghost { background: transparent; color: var(--c-text); padding: 10px 12px; min-height: 0; border: none; overflow: visible; }
.btn-ghost:hover { color: var(--c-accent); }
.btn .arrow { width: 14px; height: 14px; display: inline-block; flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5 4.5l-1.06 1.06L17.88 11H4v2h13.88l-5.44 5.44 1.06 1.06L20.5 12z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5 4.5l-1.06 1.06L17.88 11H4v2h13.88l-5.44 5.44 1.06 1.06L20.5 12z'/></svg>") center/contain no-repeat; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-text); border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .25s ease, color .25s ease;
}
.btn-link:hover { gap: 14px; color: var(--c-accent); }

/* ── Card ── */
.card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-card); padding: 40px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.card:hover { box-shadow: var(--shadow-2); border-color: var(--c-muted); transform: translateY(-2px); }

/* ── Placeholder image ── */
.ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.45);
  background: linear-gradient(135deg, var(--ph-a,#c9bfa8), var(--ph-b,#a89b80));
  position: relative;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.25), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.15), transparent 60%);
}
.ph span { position: relative; z-index: 1; padding: 5px 12px; background: rgba(255,255,255,0.7); border-radius: 999px; }
.ph.photo { display: block; }
.ph.photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ph.photo::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.10)),
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 48%);
  pointer-events: none;
}

.ph.photo img,
.decor-photo img,
.decor-story-photo img,
.decor-feature-image img,
.g-tile img,
.hl-img img,
.proj-img img,
.marquee-tile img,
.hero-img img,
.team-photo img,
.tl-img img {
  cursor: zoom-in;
}
.tech-card img { cursor: pointer; }

.site-header img,
.site-footer img,
.proj-avatar img,
.testi-card .av img,
.decor-original-symbol {
  cursor: inherit;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(14, 14, 18, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1600px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,.07);
  cursor: zoom-out;
  transform: scale(.94) translateY(10px);
  transition: transform .45s var(--ease-out);
}
.image-lightbox.open .image-lightbox-img {
  transform: scale(1) translateY(0);
}

.image-lightbox-caption {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 30px);
  transform: translateX(-50%) translateY(6px);
  max-width: min(86vw, 720px);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(20,20,24,.72);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .4s ease .12s, transform .4s var(--ease-out) .12s;
  pointer-events: none;
}
.image-lightbox.open .image-lightbox-caption { opacity: 1; transform: translateX(-50%) translateY(0); }
.image-lightbox-caption:empty { display: none; }

.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #101014;
  font-family: var(--font);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  transition: transform .35s var(--ease-out), background .25s ease;
}
.image-lightbox-close:hover { transform: rotate(90deg); background: #fff; }

@media (max-width: 640px) {
  .image-lightbox {
    padding: 14px;
  }
  .image-lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .image-lightbox-img {
    max-height: 82vh;
    border-radius: 6px;
  }
}

/* ── Reveal animation — soft rise + focus pull ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(7px);
  transition:
    opacity  .9s var(--ease-soft),
    transform .9s var(--ease-soft),
    filter   .9s var(--ease-soft);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; transition: none; } }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,16,20,0.96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 0;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: transparent; }

.nav {
  max-width: 1440px;
  min-height: 112px;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(640px, 1fr);
  align-items: start;
  gap: 0;
}
@media (max-width: 1180px) {
  .nav {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  }
  .nav-links {
    gap: clamp(20px, 2.4vw, 36px);
  }
}
.nav > a {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 45px;
}
.nav .logo { height: 22px; width: auto; }

.nav-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 56px);
  min-height: 72px;
  margin: 26px 26px 0 0;
  font-family: var(--font);
  font-size: 17px;
  white-space: nowrap;
}
.nav-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  transition: color .25s ease, text-decoration-color .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: transparent;
  text-decoration-color: var(--c-gold);
}

.has-dropdown { position: relative; }
.has-dropdown > a { white-space: nowrap; }
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  margin-left: 2px;
  vertical-align: middle;
  background: currentColor;
  opacity: .5;
  transition: opacity .2s, transform .25s ease;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
}
.has-dropdown:hover > a::after { opacity: 1; transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translate(-50%, 12px) scale(.985);
  transform-origin: top center;
  background: rgba(18,18,22,.94); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 8px;
  min-width: 210px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, var(--shadow-4);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), visibility 0s linear .28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 14px; font-family: var(--font); font-weight: 500;
  color: rgba(255,255,255,0.86);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s ease, transform .3s var(--ease-out), background .2s ease, color .2s ease, padding-left .25s var(--ease-out);
}
.has-dropdown:hover .dropdown a,
.has-dropdown:focus-within .dropdown a {
  opacity: 1; transform: translateY(0);
}
.has-dropdown:hover .dropdown a:nth-child(1) { transition-delay: .04s; }
.has-dropdown:hover .dropdown a:nth-child(2) { transition-delay: .09s; }
.has-dropdown:hover .dropdown a:nth-child(3) { transition-delay: .14s; }
.has-dropdown:hover .dropdown a:nth-child(4) { transition-delay: .19s; }
.dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff; padding-left: 18px; transition-delay: 0s; }
.dropdown a .num { font-family: var(--font-ui); font-size: 11px; color: rgba(198,161,91,.75); margin-left: auto; letter-spacing: .08em; }

.nav-cta {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 37px;
}

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 1px; transition: transform .3s ease, opacity .3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0;
  background: #101014; border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px var(--pad);
  transform: translateY(-110%); transition: transform .3s ease;
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 16px; color: rgba(255,255,255,0.88); }
.mobile-menu .sub a { padding-left: 16px; font-size: 14px; color: rgba(255,255,255,0.62); }

@media (max-width: 767px) {
  .nav {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav > a {
    padding-top: 0;
  }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta {
    grid-column: 2;
    padding-top: 0;
    align-items: center;
  }
  .menu-toggle { display: flex; }
}

/* ── Form inputs ── */
.input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 14px 0; font-family: var(--font); font-size: 16px;
  color: #fff; outline: none;
  background-image: linear-gradient(90deg, var(--c-gold), var(--c-gold-2));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: border-color .35s ease, background-size .5s var(--ease-out);
}
.input:focus { border-bottom-color: rgba(255,255,255,.35); background-size: 100% 1px; }
.input::placeholder { color: rgba(255,255,255,0.4); transition: opacity .3s ease; }
.input:focus::placeholder { opacity: .55; }
.input.light { color: var(--c-text); border-bottom-color: var(--c-border); }
.input.light::placeholder { color: var(--c-muted); }
.input.light:focus { border-bottom-color: var(--c-text); }

/* ── Footer ── */
.site-footer {
  position: relative;
  background: var(--c-charcoal); color: #fff;
  padding: 80px 0 40px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(198,161,91,.5) 50%, transparent 96%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-grid .logo { height: 22px; margin-bottom: 24px; }
.footer-blurb { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.65; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45); margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a {
  color: rgba(255,255,255,0.8); font-size: 15px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color .25s ease, text-decoration-color .35s var(--ease-out);
}
.footer-col a:hover { color: #fff; text-decoration-color: var(--c-gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--font-ui); font-size: 12px; color: rgba(255,255,255,0.45);
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-grid h2 { font-size: clamp(34px, 4.4vw, 50px); }
.faq-list { border-top: 1px solid var(--c-border); }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 500; color: var(--c-text);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-warm); }
.faq-item summary:hover .plus { border-color: var(--c-warm); transform: rotate(90deg); }
.plus {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid var(--c-border); flex-shrink: 0; position: relative;
  transition: background .35s ease, border-color .35s ease, transform .45s var(--ease-out);
}
.plus::before, .plus::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  background: var(--c-text); border-radius: 1px;
}
.plus::before { width: 12px; height: 1.5px; }
.plus::after  { width: 1.5px; height: 12px; transition: transform .3s ease; }
.faq-item[open] .plus { background: var(--c-warm); border-color: var(--c-warm); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after { background: #fff; }
.faq-item[open] .plus::after { transform: rotate(90deg); }
.faq-answer { padding-bottom: 24px; color: var(--c-text-2); font-size: 16px; line-height: 1.7; max-width: 680px; }
.faq-item[open] .faq-answer { animation: faq-in .5s var(--ease-out) both; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-answer { animation: none; } }
@media (max-width: 1023px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Contact block ── */
.contact-block {
  position: relative;
  background: var(--c-charcoal); color: #fff;
  border-radius: var(--r-card); padding: 48px;
  display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr); gap: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-4);
}
.contact-block::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 8% 0%, rgba(198,161,91,.13), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(198,161,91,.07), transparent 55%);
}
.contact-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), inset 0 0 0 1px rgba(255,255,255,.045);
}
.contact-block > * { position: relative; z-index: 1; }
.contact-block h2 { font-size: clamp(26px, 3vw, 38px); }
.contact-title { margin-top: 16px; max-width: 10ch; }
.contact-intro {
  max-width: 380px;
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.65;
}
.contact-meta { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.contact-meta-row .lbl {
  font-family: var(--font-ui); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.contact-meta-row .val { font-size: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-upload-label {
  color: rgba(255,255,255,0.72);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-upload-input {
  padding: 8px 0 6px;
}
.contact-upload-input::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  cursor: pointer;
}
.contact-form textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 10px 0;
  font-family: var(--font); font-size: 15px;
  min-height: 72px; resize: vertical; outline: none;
  transition: border-color .2s;
}
.contact-form textarea:focus { border-bottom-color: #fff; }
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form button {
  align-self: flex-start;
  background: linear-gradient(to right, var(--c-text) 50%, #fff 50%);
  background-size: 202% 100%;
  background-position: right center;
  color: var(--c-text);
  padding: 12px 20px; border-radius: var(--r-btn);
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.03em; cursor: pointer; margin-top: 2px;
  position: relative; overflow: hidden;
  transition: background-position .42s cubic-bezier(.16,1,.3,1), color .35s ease;
}
.contact-form button:hover {
  background-position: left center;
  color: #fff;
}
@media (max-width: 1023px) { .contact-block { grid-template-columns: 1fr; padding: 36px; gap: 28px; } }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-helper,
.contact-form-status {
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.55;
}
.contact-form-status { min-height: 22px; }

/* ===== Premium v2 — Grain · Cursor · Split-text · Clip-reveal ===== */

/* ── Film grain overlay ── */
.grain-overlay {
  position: fixed;
  inset: -150%;
  width: 400%;
  height: 400%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.036;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/></filter><rect width='300' height='300' filter='url(%23g)'/></svg>");
  animation: grain-shift 0.48s steps(1) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  16%     { transform: translate(-2%,3%); }
  33%     { transform: translate(3%,-1%); }
  49%     { transform: translate(-3%,2%); }
  66%     { transform: translate(2%,-3%); }
  83%     { transform: translate(-1%,4%); }
}
@media (prefers-reduced-motion: reduce) { .grain-overlay { animation: none; } }

/* ── Custom cursor (desktop only — injected by JS) ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  margin-top: -3.5px;
  margin-left: -3.5px;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.72);
  margin-top: -17px;
  margin-left: -17px;
  transition:
    width  .28s cubic-bezier(.16,1,.3,1),
    height .28s cubic-bezier(.16,1,.3,1),
    margin .28s cubic-bezier(.16,1,.3,1),
    border-color .28s ease,
    opacity .3s ease;
}
.cursor-ring.cursor-hover {
  width: 52px; height: 52px;
  margin-top: -26px; margin-left: -26px;
  border-color: rgba(255,255,255,1);
}
.cursor-ring.cursor-click {
  width: 18px; height: 18px;
  margin-top: -9px; margin-left: -9px;
}

/* ── Word-split text reveal (disabled — replaced by .reveal fade) ── */
.split-word { display: inline; }
.split-word-inner { display: inline; }

/* ── Clip-path image reveal ── */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.clip-reveal.in { clip-path: inset(0% 0 0 0); }
@media (prefers-reduced-motion: reduce) { .clip-reveal { clip-path: none !important; } }
