/* ============================================================
   CURLLA — Theme stylesheet
   Brand-true: white marble, purple accent, Italiana serif.
   ============================================================ */

:root {
  --primary:        #7611c2;
  --primary-dark:   #5a0d94;
  --primary-tint:   #f5f0fc;
  --secondary:      #d6c5e9;
  --primary-rgb:    118, 17, 194;
  --surface:        #ffffff;
  --surface-subtle: #faf8fb;
  --ink:            #1a1614;
  --ink-soft:       #3a3338;
  --text:           #221d22;
  --text-muted:     #807a82;
  --border:         #ece8ee;
  --line:           rgba(26,22,20,0.12);
  --wash: linear-gradient(168deg, #faf8f5 0%, #f3ecf6 52%, #faf8f5 100%);
  --hero-dark: radial-gradient(circle at 14% 16%, rgba(214,197,233,0.30), transparent 38%),
               linear-gradient(140deg, #2a0b44 0%, #4a0d6b 46%, #1c0730 100%);
  --font-heading: 'Italiana', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --fs-display: clamp(2.7rem, 6.4vw, 6rem);
  --fs-h1:      clamp(2.2rem, 4.6vw, 4.2rem);
  --fs-h2:      clamp(1.9rem, 3.6vw, 3rem);
  --fs-lead:    clamp(1.05rem, 1.45vw, 1.4rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9rem;
  --eyebrow:    0.72rem;
  --section-pad: clamp(60px, 7vw, 112px);
  --gutter: clamp(22px, 5vw, 64px);
  --content-max: 1320px;
  --img-tl: 50vw; --img-tr: 50vw; --img-bl: 18px; --img-br: 18px;
  --ease: cubic-bezier(0.22, 0.68, 0, 1);
  --focus-ring: 0 0 0 3px rgba(var(--primary-rgb), 0.22);
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  display: block !important;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.02; letter-spacing: 0.005em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
::selection { background: var(--primary); color: #fff; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 1000; background: var(--primary); color: #fff; border-radius: 999px; padding: 10px 16px; font-size: 0.86rem; font-weight: 700; transform: translateY(-160%); transition: transform 0.25s var(--ease); }
.skip-link:focus-visible { transform: translateY(0); outline: 0; box-shadow: var(--focus-ring); }
a:focus-visible, button:focus-visible { outline: 0; box-shadow: var(--focus-ring); }
#about, #services, #contact { scroll-margin-top: 96px; }

.wrap { max-width: var(--content-max); margin: 0 auto; padding-inline: var(--gutter); }

/* Framed image */
.framed { border-radius: var(--img-tl) var(--img-tr) var(--img-br) var(--img-bl); overflow: hidden; position: relative; }
.framed img { width: 100%; height: 100%; object-fit: cover; }

/* BUTTONS */
.btn {
  font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.05em; font-weight: 600;
  padding: 16px 34px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(var(--primary-rgb), 0.32); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 32px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 14px 0;
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: 1540px; margin: 0 auto; padding-inline: clamp(32px, 5vw, 80px);
}
.nav-left { display: flex; align-items: center; gap: 44px; margin-right: 56px; }
.nav-right { display: flex; align-items: center; gap: 36px; margin-left: 56px; }
.nav.scrolled .nav-left { gap: 28px; margin-right: 36px; }
.nav.scrolled .nav-right { gap: 28px; margin-left: 36px; }
.nav-logo { display: flex; align-items: center; justify-content: center; gap: 12px; }
.nav-logo img { height: 58px; width: auto; transition: height 0.5s var(--ease), opacity 0.4s; }
.nav.scrolled .nav-logo img { height: 40px; }
.nav-logo .logo-light { display: none; }
.nav-logo .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 44px; }
.nav.scrolled .nav-links { gap: 28px; }
.nav-links a {
  font-size: 0.96rem; letter-spacing: 0.05em; font-weight: 500;
  color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color 0.3s, font-size 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.nav.scrolled .nav-links a { font-size: 0.82rem; letter-spacing: 0.04em; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav .btn { padding: 15px 32px; font-size: 0.9rem; transition: all 0.5s var(--ease); }
.nav.scrolled .btn { padding: 11px 24px; font-size: 0.82rem; }
.nav .nav-book { background: var(--primary); color: #fff; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }
.nav-burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 0.6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-heading); font-size: clamp(2rem, 9vw, 3.4rem); color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-of-type { border: 0; }

/* HERO */
.hero { position: relative; padding-top: 136px; }
.hero-inner { display: grid; gap: clamp(22px, 3vw, 40px); }
.hero-head { max-width: 100%; }
.hero h1 { font-size: var(--fs-display); line-height: 0.92; letter-spacing: -0.01em; }
.hero h1 .pc { color: var(--primary); white-space: nowrap; }
.hero-sub { max-width: 680px; color: var(--text-muted); font-size: var(--fs-lead); line-height: 1.55; margin-top: 6px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-top: 8px; }

/* hero-bleed: only visible in fullbleed mode */
.hero-bleed { display: none; }
body.hero-fullbleed .hero-bleed { display: block; position: absolute; inset: 0; }
body.hero-fullbleed .hero-bleed::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,12,28,0.34) 0%, rgba(20,12,28,0) 30%, rgba(20,12,28,0.55) 100%); }
body.hero-fullbleed .hero-bleed img { width: 100%; height: 100%; object-fit: cover; }
body.hero-fullbleed .hero { padding-top: 0; height: 100vh; min-height: 680px; display: flex; align-items: flex-end; }
body.hero-fullbleed .hero-inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 7vw, 96px); }
body.hero-fullbleed .hero h1, body.hero-fullbleed .hero .eyebrow { color: #fff; }
body.hero-fullbleed .hero-sub { color: rgba(255,255,255,0.85); }
body.hero-fullbleed .hero-collage, body.hero-fullbleed .hero-split-img { display: none; }

/* Collage */
.hero-collage { display: grid; grid-template-columns: 1.05fr 0.78fr 0.95fr; gap: clamp(16px, 1.8vw, 30px); align-items: start; }
.arch-slot { position: relative; aspect-ratio: 3/4.3; border: 6px solid #fff; box-shadow: 0 30px 60px rgba(26,22,20,0.16); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); cursor: pointer; }
.arch-slot.c2 { margin-top: -44px; aspect-ratio: 3/4.9; }
.arch-slot.c3 { margin-top: 28px; aspect-ratio: 3/3.9; }
.arch-slot img.hl { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: translateY(7%) scale(1.05); transition: opacity 1.15s var(--ease), transform 1.25s var(--ease); }
.arch-slot img.hl.in { opacity: 1; transform: translateY(0) scale(1); }
.arch-slot:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 46px 84px rgba(26,22,20,0.26); z-index: 5; }
.arch-slot:hover img.hl.in { transform: scale(1.08); }

/* Carousel dots */
.carousel-dots { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 24px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: 0; padding: 0; cursor: pointer; transition: background 0.35s, width 0.35s, border-radius 0.35s; }
.carousel-dot:focus-visible { box-shadow: var(--focus-ring); }
.carousel-dot.active { background: var(--primary); width: 22px; border-radius: 999px; }

body:not(.hero-split) .hero-split-img { display: none; }

/* SECTIONS */
section { padding-block: var(--section-pad); position: relative; }
.about-section { background: var(--hero-dark); }
.about-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--secondary); margin-bottom: 14px; }
.about-section .story-copy h2 { color: #fff; }
.about-section .story-copy p { color: rgba(255,255,255,0.72); }
.about-section .story-sign .t { color: rgba(255,255,255,0.55); font-style: italic; }
.about-section .story-sign .line { background: rgba(255,255,255,0.2); }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--text-muted); }

/* STORY / ABOUT */
.story-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.story-copy h2 { font-size: var(--fs-h1); margin: 20px 0 26px; line-height: 1.0; }
.story-copy p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 18px; }
.story-sign { margin-top: 30px; display: flex; align-items: center; gap: 18px; }
.story-sign .line { width: 46px; height: 1px; background: var(--line); }
.story-sign .t { font-style: italic; font-family: 'Playfair Display', serif; color: var(--ink); font-size: 1.05rem; }
.story-stack { position: relative; }
.story-stack .a { aspect-ratio: 3/4.1; }
.story-stack .b { position: absolute; width: 46%; right: -6%; bottom: -10%; aspect-ratio: 3/3.6; box-shadow: -30px 30px 70px rgba(26,22,20,0.16); border: 6px solid #fff; }

/* SERVICES */
#services { background: linear-gradient(168deg, #efe8f5 0%, #e6d9ef 55%, #efe8f5 100%); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(32px, 6vw, 90px); flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.svc-head h2 { font-size: var(--fs-h1); max-width: 14ch; line-height: 0.98; flex-shrink: 0; }
.svc-intro { max-width: 56ch; }
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 24px; padding: clamp(22px, 3vw, 40px) 8px; border-bottom: 1px solid var(--line); position: relative; cursor: pointer; transition: padding-left 0.5s var(--ease); }
.svc-row .idx { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-muted); transition: color 0.4s; }
.svc-name { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1; color: var(--ink); transition: color 0.4s var(--ease); letter-spacing: 0.01em; }
.svc-desc { max-width: 30ch; text-align: right; color: var(--text-muted); font-size: var(--fs-sm); }
.svc-row:hover { padding-left: 26px; }
.svc-row:hover .svc-name { color: var(--primary); }
.svc-row:hover .idx { color: var(--primary); }
.svc-row .go { position: absolute; left: -22px; top: 50%; transform: translateY(-50%); color: var(--primary); opacity: 0; transition: opacity 0.4s, left 0.4s var(--ease); }
.svc-row:hover .go { opacity: 1; left: -4px; }

/* Service cursor peek */
.svc-peek { position: fixed; top: 0; left: 0; z-index: 60; width: 280px; aspect-ratio: 3/3.8; border-radius: 200px 200px 14px 14px; overflow: hidden; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.86); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); box-shadow: 0 30px 70px rgba(26,22,20,0.32); will-change: transform, left, top; }
.svc-peek.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.svc-peek img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; }
.svc-peek img.active { opacity: 1; }
@media (hover: none) { .svc-peek { display: none; } }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(56px, 7vw, 92px); padding-bottom: 30px; }
.footer-cta { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-cta-text h2 { color: #fff; font-size: var(--fs-h1); line-height: 1.0; }
.footer-cta-text h2 .ital { font-style: italic; font-family: 'Playfair Display', var(--font-heading); color: var(--secondary); }
.footer-cta-text p { color: rgba(255,255,255,0.62); max-width: 46ch; margin: 16px 0 0; }
.footer-cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.footer-main { display: grid; grid-template-columns: 1.15fr 1.1fr; gap: clamp(36px, 5vw, 80px); padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid rgba(255,255,255,0.12); align-items: start; }
.footer-visit { display: grid; grid-template-columns: minmax(250px, 290px) 1fr; gap: clamp(24px, 3vw, 42px); align-items: center; }
.footer-arch { width: 100%; aspect-ratio: 3/3.7; }
.footer-address h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.footer-address .addr { font-family: var(--font-heading); font-size: clamp(1.45rem, 2.35vw, 2.05rem); color: #fff; line-height: 1.12; letter-spacing: 0.005em; margin-bottom: 18px; }
.footer-address .addr-dir { color: var(--secondary); font-size: 0.92rem; letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.4s var(--ease); }
.footer-address .addr-dir:hover { gap: 14px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.footer .fcol h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer .fcol .fcol-second { margin-top: 28px; }
.footer .fcol a:not(.footer-social a), .footer .fcol p { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.3s; }
.footer .footer-social a { display: flex; align-items: center; justify-content: center; }
.footer .fcol a:hover { color: #fff; }
.footer .fcol .hours { display: flex; gap: 10px; color: rgba(255,255,255,0.72); }
.footer .fcol .hours span { color: rgba(255,255,255,0.45); min-width: 78px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a { width: 42px; height: 42px; min-width: 42px; min-height: 42px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: 0.4s var(--ease); font-size: 0; margin-bottom: 0; padding: 0; }
.footer-social a svg { width: 17px; height: 17px; display: block; margin: auto; pointer-events: none; }
@media (hover: hover) {
  .footer-social a:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
}
.footer-social a:active { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: scale(0.93); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 28px; }
.footer-bottom .legal { font-size: 0.76rem; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-stack { max-width: 520px; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --gutter: clamp(20px, 6vw, 32px); }
  .nav { padding: 18px 0; }
  .nav-inner { justify-content: space-between; padding-inline: clamp(20px, 5vw, 32px); }
  .nav-left { display: none; }
  .nav-right .nav-links { display: none; }
  .nav-logo { justify-content: flex-start; }
  .nav-logo img { height: 42px; }
  .nav-right { justify-content: flex-end; gap: 12px; margin-left: auto; }
  .nav-burger { display: flex; }
  .hero { padding-top: 100px; }
  .hero-inner { display: flex; flex-direction: column; gap: clamp(28px, 5vw, 44px); }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 2.78rem); max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-collage { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; width: 100%; }
  .arch-slot { border-width: 4px; }
  .arch-slot.c3 { display: none; }
  .arch-slot.c2 { margin-top: 0; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .svc-row { grid-template-columns: 32px 1fr; }
  .svc-desc { display: none; }
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-cta-actions { flex-wrap: wrap; }
  .footer-visit { grid-template-columns: 1fr; }
  .footer-arch { max-width: 360px; aspect-ratio: 16/11; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  * { box-shadow: none !important; }
}
@media (max-width: 600px) {
  .nav-book { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-collage { grid-template-columns: minmax(0,1fr); width: 100%; max-width: none; align-self: stretch; }
  .arch-slot.c2 { display: none; }
  .footer-cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .footer-cta-actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
/* MOBILE SECTION ARRANGEMENT */
.svc-row {
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.svc-toggle {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 40px) 8px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.svc-row:hover { padding-left: 0; }
.svc-row:hover .svc-toggle { padding-left: 26px; }
.svc-panel { display: none; }
.svc-book { color: var(--primary); font-weight: 700; letter-spacing: 0.04em; }

@media (max-width: 760px) {
  body.home main#top { display: flex; flex-direction: column; }
  body.home .hero { order: 1; padding-top: 96px; padding-bottom: 54px; }
  body.home #services { order: 2; }
  body.home .about-section { order: 3; }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: initial;
  }
  .nav-logo {
    grid-column: 2;
    justify-content: center;
  }
  .nav-right {
    grid-column: 3;
    justify-content: flex-end;
    margin-left: 0;
  }

  .hero-inner { gap: 22px; }
  .hero-collage { order: 1; }
  .carousel-dots { order: 2; margin-top: -6px; }
  .hero-head { order: 3; }
  .hero h1 { margin-top: 4px; }

  .svc-head { gap: 18px; margin-bottom: 20px; }
  .svc-intro { display: none; }
  .svc-toggle {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 12px;
    padding: 22px 0;
  }
  .svc-row:hover .svc-toggle { padding-left: 0; }
  .svc-row .go {
    position: static;
    transform: none;
    opacity: 1;
    justify-self: end;
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  }
  .svc-row.open .go { transform: rotate(90deg); color: var(--primary); }
  .svc-name { font-size: clamp(1.85rem, 9vw, 3rem); }
  .svc-panel {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0 0 46px;
    color: var(--text-muted);
    transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), padding-bottom 0.35s var(--ease);
  }
  .svc-row.open .svc-panel {
    max-height: 260px;
    opacity: 1;
    padding-bottom: 24px;
  }
  .svc-panel p {
    max-width: 30rem;
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .footer > .wrap { display: flex; flex-direction: column; }
  .footer-cta { order: 1; }
  .footer-main { order: 2; }
  .footer-bottom { order: 3; }
}

@media (max-width: 600px) {
  body.home .hero { padding-top: 92px; }
  .hero-collage .arch-slot { aspect-ratio: 3 / 3.9; }
  .hero-actions { margin-top: 24px; }
  .footer-main { padding-top: 0; }
}
/* MOBILE REFINEMENTS 20260601 */
.svc-head h1 {
  font-size: var(--fs-h1);
  max-width: 14ch;
  line-height: 0.98;
  flex-shrink: 0;
}
.footer-arch {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
}

@media (max-width: 760px) {
  :root { --section-pad: clamp(56px, 14vw, 72px); }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo {
    grid-column: auto;
    justify-content: flex-start;
    margin-right: auto;
  }
  .nav-right {
    grid-column: auto;
    margin-left: auto;
  }

  body.home .hero {
    padding-top: 98px;
    padding-bottom: 58px;
  }
  .hero h1 {
    font-size: clamp(2.95rem, 12.5vw, 3.8rem);
    line-height: 0.9;
    max-width: 100%;
  }
  .hero-sub {
    margin-top: 14px;
  }

  #services {
    padding-block: clamp(58px, 14vw, 76px);
  }
  .svc-head {
    display: block;
    margin-bottom: 30px;
  }
  .svc-head h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
    line-height: 0.92;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .svc-intro {
    display: block;
    max-width: 34rem;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.58;
  }
  .svc-list {
    margin-top: 28px;
  }

  .about-section {
    padding-block: clamp(62px, 15vw, 82px);
  }
  .footer {
    padding-top: clamp(58px, 14vw, 76px);
  }
  .footer-cta {
    align-items: center;
    text-align: center;
    padding-bottom: clamp(42px, 10vw, 56px);
  }
  .footer-cta-text p {
    margin-inline: auto;
  }
  .footer-cta-actions {
    justify-content: center;
  }
  .footer-main {
    padding-block: clamp(42px, 10vw, 58px);
  }
  .footer-visit {
    justify-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-arch {
    width: min(78vw, 320px);
    max-width: none;
    aspect-ratio: 4 / 5.25;
    border-radius: 22px;
    margin-inline: auto;
  }
  .footer-address {
    max-width: 22rem;
    margin-inline: auto;
  }
  .footer-address .addr {
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .footer-address .addr-dir {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2.9rem, 12vw, 3.25rem);
  }
  body.home .hero {
    padding-top: 92px;
  }
  .footer-main {
    padding-top: clamp(42px, 10vw, 58px);
  }
}
/* TYPOGRAPHY HIERARCHY 20260601 */
:root {
  --fs-display: clamp(3.2rem, 6.8vw, 6.4rem);
  --fs-section-title: clamp(2.45rem, 4.6vw, 4.35rem);
  --fs-lead: clamp(1.02rem, 1.25vw, 1.25rem);
  --fs-body: 1.0625rem;
  --measure-copy: 42rem;
}

body {
  font-size: var(--fs-body);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: 0.9;
  letter-spacing: -0.005em;
}

.story-copy h2,
.svc-head h2,
.footer-cta-text h2 {
  font-size: var(--fs-section-title);
  line-height: 0.96;
  letter-spacing: 0;
}

.svc-head h2 {
  max-width: 14ch;
  flex-shrink: 0;
}

.hero-sub,
.lead,
.story-copy p,
.svc-intro,
.footer-cta-text p,
.footer .fcol a:not(.footer-social a),
.footer .fcol p {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.62;
}

.hero-sub,
.lead,
.svc-intro {
  font-size: var(--fs-lead);
}

.story-copy p,
.footer-cta-text p,
.footer .fcol a:not(.footer-social a),
.footer .fcol p {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.hero-sub,
.svc-intro,
.story-copy p,
.footer-cta-text p {
  max-width: var(--measure-copy);
}

.about-eyebrow,
.footer-address h5,
.footer .fcol h5 {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

@media (max-width: 760px) {
  :root {
    --fs-display: clamp(3.15rem, 13.2vw, 3.85rem);
    --fs-section-title: clamp(2.75rem, 12vw, 3.65rem);
    --fs-lead: 1.04rem;
    --fs-body: 1rem;
    --measure-copy: 34rem;
  }

  .hero h1 {
    font-size: var(--fs-display);
    line-height: 0.88;
  }

  .hero-sub,
  .lead,
  .svc-intro,
  .story-copy p,
  .footer-cta-text p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .story-copy h2,
  .svc-head h2,
  .footer-cta-text h2 {
    font-size: var(--fs-section-title);
    line-height: 0.94;
  }

  .svc-head h2 {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .svc-intro {
    display: block;
    max-width: 32rem;
  }

  .svc-name {
    font-size: 28px;
    line-height: 0.98;
  }

  .footer-address .addr {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.08;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(2.95rem, 12.6vw, 3.35rem);
  }
}
/* PARAGRAPH CONSISTENCY 20260601 */
.hero-sub,
.lead,
.svc-intro,
.story-copy p,
.footer-cta-text p {
  font-size: clamp(1rem, 1.18vw, 1.125rem);
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.footer .fcol a:not(.footer-social a),
.footer .fcol p {
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.62;
}

@media (max-width: 760px) {
  .hero-sub,
  .lead,
  .svc-intro,
  .story-copy p,
  .footer-cta-text p,
  .footer .fcol a:not(.footer-social a),
  .footer .fcol p {
    font-size: 1rem;
    line-height: 1.58;
  }
}
/* FOOTER BUILDING ARCH 20260601 */
.footer-arch {
  aspect-ratio: 3 / 4.35;
  border-radius: 999px 999px 22px 22px;
}

@media (max-width: 760px) {
  .footer-arch {
    width: min(78vw, 320px);
    aspect-ratio: 3 / 4.45;
    border-radius: 999px 999px 20px 20px;
  }
}
/* MOBILE SERVICE IMAGE CAROUSEL 20260601 — hidden */
.svc-mobile-media { display: none !important; }