/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { background: #000; scroll-behavior: auto; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 250ms ease; }
a:hover { color: #F59E0B; }
::selection { background: #F59E0B; color: #000; }
h1, h2, h3, p { margin: 0; }
input, select, textarea, button { font-family: Inter, sans-serif; }
select option { background: #050505; color: #fff; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }

.sh-mono { font-family: 'JetBrains Mono', monospace; }
.sh-eyebrow-sm { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: #F59E0B; }
.sh-fine { font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); }

@keyframes sh-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes sh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Cursor ---------- */
#sh-cursor {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; margin: -13px 0 0 -13px;
  border: 1px solid rgba(255,255,255,0.6); border-radius: 50%;
  pointer-events: none; z-index: 90; mix-blend-mode: difference; opacity: 0;
}
@media (hover: none), (pointer: coarse) { #sh-cursor { display: none; } }

/* ---------- Nav ---------- */
#sh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; background: transparent;
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
.sh-logo { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 21px; letter-spacing: 0.22em; text-transform: uppercase; }
.sh-nav-links { display: flex; align-items: center; gap: 34px; font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.sh-nav-links a { color: rgba(255,255,255,0.6); }
.sh-btn-solid { padding: 12px 22px; border-radius: 999px; background: #fff; color: #000 !important; font-weight: 700; letter-spacing: 0.2em; white-space: nowrap; display: inline-block; border: 0; cursor: pointer; }
.sh-btn-outline { padding: 14px 30px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; display: inline-block; transition: transform 300ms ease, background 300ms ease, color 300ms ease; }
.sh-hover-pop:hover { transform: scale(1.05); }
.sh-hover-fill:hover { background: #fff; color: #000; transform: scale(1.05); }
.sh-btn-lg { padding: 17px 34px; font-size: 11px; }

#sh-nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: transparent; border: 0; cursor: pointer; z-index: 60; }
#sh-nav-toggle span { display: block; width: 100%; height: 1px; background: #fff; transition: transform 250ms ease, opacity 250ms ease; }
#sh-mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: rgba(5,5,5,0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 320ms ease;
}
#sh-mobile-menu.sh-open { opacity: 1; pointer-events: auto; }
#sh-mobile-menu a { font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }

@media (max-width: 860px) {
  .sh-nav-links { display: none; }
  #sh-nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
#sh-hero {
  position: relative; min-height: 100vh; width: 100%; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px 40px 70px;
}
.sh-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(245,158,11,0.16) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(70% 60% at 80% 100%, rgba(245,158,11,0.07) 0%, rgba(0,0,0,0) 70%),
    #000;
}
#sh-hero-particles { position: absolute; inset: 0; pointer-events: none; }
#sh-hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 1000px; }

.sh-pill { display: flex; align-items: center; gap: 10px; padding: 9px 18px; border: 1px solid rgba(245,158,11,0.35); border-radius: 999px; margin-bottom: 40px; }
.sh-dot-pulse { width: 6px; height: 6px; border-radius: 50%; background: #F59E0B; animation: sh-pulse 2.4s ease-in-out infinite; }
.sh-pill .sh-mono { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,158,11,0.9); }

.sh-eyebrow { margin: 0 0 30px; font-size: 10px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.sh-h1 { font-family: 'Bodoni Moda', serif; font-weight: 900; line-height: 1.15; font-size: clamp(40px, 7.6vw, 116px); }
.sh-h1 span { display: block; white-space: nowrap; }
.sh-h1 em { font-style: italic; font-weight: 400; color: #F59E0B; }
.sh-lede { margin: 42px 0 0; max-width: 540px; font-weight: 300; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.55); }
.sh-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 46px; }
.sh-hero-fine { margin: 26px 0 0; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }

.sh-stats {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%; min-width: 0; max-width: 940px; margin-top: 80px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden;
}
.sh-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 26px 12px; min-width: 0; border-right: 1px solid rgba(255,255,255,0.1); }
.sh-stat:last-child { border-right: 0; }
.sh-stat-num { font-family: 'Bodoni Moda', serif; font-size: 34px; }
.sh-stat-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ---------- Work ---------- */
#sh-work { position: relative; height: 100vh; width: 100%; overflow: hidden; }
.sh-work-bg { position: absolute; inset: 0; pointer-events: none; }
.sh-work-bg--0 { background: radial-gradient(120% 90% at 50% 110%, #C2703A 0%, #3A1C0C 45%, #050505 100%); }
.sh-work-bg--1 { background: radial-gradient(120% 90% at 50% 110%, #86EFAC 0%, #14532D 42%, #02110A 100%); }
.sh-work-bg--2 { background: radial-gradient(120% 90% at 50% 110%, #93C5FD 0%, #1E3A8A 42%, #020617 100%); }
.sh-work-bg--3 { background: radial-gradient(120% 90% at 50% 110%, #FDE68A 0%, #D4A017 40%, #2D1B0E 100%); }
.sh-work-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.9)); }
#sh-particles { position: absolute; inset: 0; pointer-events: none; }

.sh-shot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(46vw, 720px); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); background: #0A0A0A;
  box-shadow: 0 50px 110px rgba(0,0,0,0.7); pointer-events: none;
}
.sh-shot-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: rgba(255,255,255,0.06); }
.sh-shot-bar .sh-dot { width: 9px; height: 9px; border-radius: 50%; }
.sh-shot-url { margin: 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.4); }
.sh-shot-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

.sh-work-grid { position: relative; height: 100%; display: grid; grid-template-columns: 1fr 1.15fr 1fr; align-items: center; gap: 28px; padding: 130px 56px 100px; }
#sh-work-left { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.sh-work-count { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
#sh-work-name { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(36px, 4.4vw, 68px); line-height: 0.96; }
.sh-work-category { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: #F59E0B; }
.sh-work-blurb { max-width: 320px; font-weight: 300; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.6); margin-top: 4px; }
#sh-work-left a { margin-top: 10px; }
#sh-work-right { display: flex; flex-direction: column; gap: 26px; align-items: flex-end; text-align: right; }
.sh-work-desc { max-width: 320px; font-weight: 300; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.65); }
.sh-work-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; width: 100%; max-width: 340px; }
.sh-work-spec { display: flex; flex-direction: column; gap: 6px; text-align: right; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 11px; }
.sh-work-spec span:first-child { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.sh-work-spec span:last-child { font-family: 'Bodoni Moda', serif; font-size: 17px; }

.sh-work-dots { position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.sh-work-dots button { width: 34px; height: 2px; border: 0; padding: 0; background: rgba(255,255,255,0.25); cursor: pointer; }
.sh-work-note { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); margin: 0; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); white-space: nowrap; }

@media (max-width: 900px) {
  .sh-work-grid { grid-template-columns: 1fr; padding: 110px 24px 140px; text-align: left; gap: 18px; }
  .sh-work-grid > div:nth-child(2) { display: none; }
  #sh-work-right { align-items: flex-start; text-align: left; }
  .sh-work-desc { max-width: 100%; }
  .sh-shot { display: none; }
  .sh-work-note { white-space: normal; text-align: center; width: 80%; }
}

/* ---------- Services ---------- */
#sh-services { position: relative; height: 100vh; overflow: hidden; background: #050505; }
.sh-services-head { position: absolute; top: 60px; left: 56px; z-index: 3; display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.sh-services-head h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(30px, 3.4vw, 52px); line-height: 1; }
.sh-services-head h2 em { font-style: italic; font-weight: 400; }
.sh-services-head p { font-weight: 300; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }
#sh-services-track { position: absolute; bottom: 8vh; left: 0; display: flex; align-items: stretch; gap: 28px; padding: 0 56px; will-change: transform; }

.sh-service-card {
  flex: 0 0 auto; width: 330px; min-height: 330px; display: flex; flex-direction: column; gap: 14px; padding: 32px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  transition: border-color 400ms ease, transform 400ms ease;
}
.sh-service-card:hover { border-color: rgba(245,158,11,0.5); transform: translateY(-8px); }
.sh-service-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: rgba(245,158,11,0.85); }
.sh-service-card h3 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 27px; line-height: 1.1; }
.sh-service-card p { font-weight: 300; font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.sh-service-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.sh-service-tags span { padding: 6px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.sh-service-card--cta { justify-content: center; gap: 16px; border-color: rgba(245,158,11,0.4); background: linear-gradient(180deg, rgba(245,158,11,0.14), rgba(245,158,11,0.03)); }
.sh-service-card--cta h3 { font-size: 30px; line-height: 1.05; }
.sh-service-card--cta p { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.sh-service-card--cta a { align-self: flex-start; margin-top: 6px; padding: 14px 28px; border-radius: 999px; background: #fff; color: #000; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }

/* ---------- Packages ---------- */
#sh-packages { position: relative; background: #000; padding: 150px 56px; display: flex; flex-direction: column; gap: 60px; }
.sh-pkg-head { display: flex; flex-direction: column; gap: 14px; max-width: 620px; }
.sh-pkg-head h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(38px, 5vw, 76px); line-height: 0.98; }
.sh-pkg-head h2 em { font-style: italic; font-weight: 400; }
.sh-pkg-head p { font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); }
.sh-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.sh-pkg-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 18px; padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  transition: border-color 450ms cubic-bezier(.16,1,.3,1), transform 450ms cubic-bezier(.16,1,.3,1), box-shadow 450ms cubic-bezier(.16,1,.3,1);
}
.sh-pkg-card:hover { border-color: rgba(245,158,11,0.55); transform: translateY(-10px) scale(1.015); box-shadow: 0 26px 60px rgba(245,158,11,0.16), 0 10px 28px rgba(0,0,0,0.45); }
.sh-pkg-card::before { content: ''; position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(115deg, transparent, rgba(245,158,11,0.16), transparent); transform: skewX(-18deg); transition: left 750ms cubic-bezier(.16,1,.3,1); pointer-events: none; }
.sh-pkg-card:hover::before { left: 140%; }
.sh-pkg-badge { align-self: flex-start; padding: 6px 12px; border: 1px solid rgba(245,158,11,0.4); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: #F59E0B; }
.sh-pkg-card h3 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 38px; line-height: 1; }
.sh-pkg-for { font-size: 12px; font-weight: 600; color: #F59E0B; }
.sh-pkg-body { font-weight: 300; font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.sh-pkg-features { display: flex; flex-direction: column; gap: 11px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.sh-pkg-feat { display: flex; gap: 10px; align-items: flex-start; }
.sh-pkg-feat span:first-child { color: #F59E0B; font-size: 12px; line-height: 1.6; }
.sh-pkg-feat span:last-child { font-weight: 300; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.sh-pkg-card a.sh-btn-outline { margin-top: auto; text-align: center; padding: 15px 24px; }
.sh-pkg-note { margin: 0; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }

/* ---------- Care ---------- */
#sh-care { position: relative; background: #050505; display: flex; flex-wrap: wrap; align-items: center; gap: 80px; padding: 150px 56px; }
#sh-care-mask { position: relative; flex: 1 1 340px; height: 62vh; min-height: 400px; overflow: hidden; clip-path: inset(100% 0% 0% 0%); border-radius: 6px; }
#sh-care-img { position: absolute; inset: -12% 0; }
.sh-care-copy { flex: 1 1 420px; display: flex; flex-direction: column; gap: 24px; max-width: 600px; }
.sh-care-copy h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(36px, 4.6vw, 74px); line-height: 0.98; }
.sh-care-copy h2 em { font-style: italic; font-weight: 400; }
.sh-care-copy > p { font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); }
.sh-care-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 4px; }
.sh-care-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sh-care-item span:first-child { width: 6px; height: 6px; border-radius: 50%; background: #F59E0B; flex: 0 0 auto; }
.sh-care-item span:last-child { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.75); }
.sh-care-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 12px; }

/* ---------- Photos (case previews, care, manifesto) ---------- */
.sh-shot-img img,
#sh-care-img img,
#sh-manifesto-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@media (max-width: 900px) {
  #sh-care { padding: 100px 24px; gap: 40px; }
  #sh-care-mask { height: 44vh; min-height: 280px; }
  .sh-care-list { grid-template-columns: 1fr; }
}

/* ---------- Manifesto ---------- */
#sh-manifesto { position: relative; height: 150vh; background: #000; }
.sh-manifesto-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#sh-manifesto-bg { position: absolute; inset: -10%; opacity: 0.4; }
.sh-manifesto-scrim { position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 50%, rgba(0,0,0,0.25), #000 85%); pointer-events: none; }
.sh-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.sh-ring--outer { width: 76vh; height: 76vh; border: 1px dashed rgba(245,158,11,0.26); animation: sh-spin 120s linear infinite; }
.sh-ring--inner { width: 50vh; height: 50vh; border: 1px dashed rgba(255,255,255,0.1); animation: sh-spin 60s linear infinite reverse; }
#sh-manifesto-text { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 0 24px; }
#sh-manifesto-text > .sh-mono { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
#sh-manifesto-text h2 { font-family: 'Bodoni Moda', serif; font-weight: 900; font-size: clamp(42px, 7.6vw, 124px); line-height: 0.9; }
#sh-manifesto-text h2 em { font-style: italic; font-weight: 400; }
#sh-manifesto-text p { max-width: 520px; font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.6); }

/* ---------- Process ---------- */
#sh-process { position: relative; background: #050505; padding: 150px 56px; display: flex; flex-direction: column; gap: 70px; }
.sh-process-head { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.sh-process-head h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(36px, 4.8vw, 74px); line-height: 0.98; }
.sh-process-head h2 em { font-style: italic; font-weight: 400; }
.sh-process-head p { font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); }
.sh-process-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
#sh-process-line { position: absolute; top: 5px; left: 0; height: 1px; width: 100%; background: linear-gradient(90deg, rgba(245,158,11,0.6), rgba(245,158,11,0.1)); transform-origin: left center; grid-column: 1 / -1; }
#sh-process-steps { display: contents; }
.sh-step { display: flex; flex-direction: column; gap: 14px; padding-top: 0; }
.sh-step-bead { width: 11px; height: 11px; border-radius: 50%; border: 1px solid #F59E0B; background: #050505; display: block; position: relative; }
.sh-step-bead span { position: absolute; inset: 3px; border-radius: 50%; background: #F59E0B; display: block; }
.sh-step-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); }
.sh-step h3 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 28px; }
.sh-step p { font-weight: 300; font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }

/* ---------- FAQ ---------- */
#sh-faq { position: relative; background: #000; padding: 150px 56px; display: flex; flex-direction: column; gap: 50px; align-items: center; }
.sh-faq-head { display: flex; flex-direction: column; gap: 14px; max-width: 700px; width: 100%; }
.sh-faq-head h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(36px, 4.6vw, 70px); line-height: 0.98; }
.sh-faq-head h2 em { font-style: italic; font-weight: 400; }
.sh-faq-head p { font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); }
.sh-faq-list { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 820px; }
.sh-faq-item { border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; background: rgba(255,255,255,0.03); overflow: hidden; }
.sh-faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 26px; background: transparent; border: 0; color: #fff; text-align: left; cursor: pointer; }
.sh-faq-btn span:first-child { font-size: 16px; font-weight: 600; }
.sh-faq-sign { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #F59E0B; }
.sh-faq-answer { margin: 0; padding: 0 26px 26px; max-width: 700px; font-weight: 300; font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.6); }
.sh-faq-item[data-open="false"] .sh-faq-answer { display: none; }

/* ---------- Contact ---------- */
#sh-contact { position: relative; background: #050505; padding: 150px 56px 60px; display: flex; flex-direction: column; gap: 90px; }
.sh-contact-glow { position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 0%, rgba(245,158,11,0.1), rgba(0,0,0,0) 65%); pointer-events: none; }
.sh-contact-grid { position: relative; display: flex; flex-wrap: wrap; gap: 80px; align-items: flex-start; }
.sh-contact-info { flex: 1 1 380px; display: flex; flex-direction: column; gap: 24px; max-width: 520px; }
.sh-contact-info h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(38px, 5vw, 78px); line-height: 0.96; }
.sh-contact-info h2 em { font-style: italic; font-weight: 400; color: #F59E0B; }
.sh-contact-info > p { font-weight: 300; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); }
.sh-contact-points { display: flex; flex-direction: column; gap: 20px; margin-top: 12px; }
.sh-contact-point { display: flex; gap: 16px; align-items: flex-start; }
.sh-bullet { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: #F59E0B; flex: 0 0 auto; }
.sh-point-title { display: block; font-size: 14px; font-weight: 600; }
.sh-point-sub { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); }

.sh-contact-form { flex: 1 1 420px; display: flex; flex-direction: column; gap: 28px; max-width: 560px; }
.sh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.sh-field { display: flex; flex-direction: column; gap: 9px; }
.sh-field label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.sh-field input, .sh-field select { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 15px; font-weight: 300; padding: 10px 0; outline: none; }
.sh-field input:focus, .sh-field select:focus, .sh-field textarea:focus { border-color: #F59E0B; }
.sh-field-flash { animation: sh-field-flash 1200ms ease; border-radius: 4px; }
@keyframes sh-field-flash {
  0% { background: rgba(245,158,11,0.25); border-color: #F59E0B; }
  100% { background: transparent; border-color: rgba(255,255,255,0.2); }
}
.sh-field textarea { background: transparent; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; color: #fff; font-size: 15px; font-weight: 300; padding: 14px; outline: none; resize: vertical; }
.sh-form-submit { align-self: flex-start; padding: 17px 38px; }
.sh-form-submit[disabled] { opacity: 0.5; cursor: not-allowed; }
[data-fs-error] { display: block; margin-top: 6px; font-size: 11px; color: #FCA5A5; }
[data-fs-field][aria-invalid="true"] { border-color: #FCA5A5 !important; }
[data-fs-success] { font-size: 12px; color: #86EFAC; margin-top: 4px; }
[data-fs-success]:empty { display: none; }
.sh-form-error:empty { display: none; }

@media (max-width: 640px) {
  .sh-form-grid { grid-template-columns: 1fr; }
}

.sh-footer-grid { position: relative; display: flex; flex-wrap: wrap; gap: 70px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); }
.sh-footer-brand { flex: 1 1 300px; display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
.sh-footer-brand .sh-logo { font-size: 24px; }
.sh-footer-brand p { font-weight: 300; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.5); }
.sh-footer-col { flex: 0 1 200px; display: flex; flex-direction: column; gap: 14px; }
.sh-footer-head { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.sh-footer-bottom { position: relative; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
.sh-footer-bottom > span:first-child { font-size: 12px; color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  #sh-hero, #sh-services, #sh-packages, #sh-care, #sh-process, #sh-faq, #sh-contact { padding-left: 24px; padding-right: 24px; }
  #sh-nav { padding: 16px 20px; }
  .sh-h1 { font-size: clamp(30px, 10.5vw, 60px); }
  .sh-h1 span { white-space: normal; }
}

/* ---------- Legal pages ---------- */
.sh-legal-notice {
  max-width: 900px; margin: 0 auto 40px; padding: 16px 20px;
  border: 1px solid rgba(245,158,11,0.4); border-radius: 8px;
  background: rgba(245,158,11,0.08); color: rgba(255,255,255,0.85);
  font-size: 13.5px; line-height: 1.7;
}
.sh-legal-notice strong { color: #F59E0B; }
.sh-legal { max-width: 760px; margin: 0 auto; padding: 150px 24px 100px; }
.sh-legal h1 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 0 0 8px; }
.sh-legal .sh-legal-updated { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin: 0 0 50px; }
.sh-legal h2 { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 26px; margin: 48px 0 14px; }
.sh-legal p { font-weight: 300; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.sh-legal ul { margin: 0 0 14px; padding-left: 20px; }
.sh-legal li { font-weight: 300; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.sh-legal a { text-decoration: underline; text-underline-offset: 2px; }
.sh-legal .sh-fill { color: #F59E0B; font-weight: 600; background: rgba(245,158,11,0.12); padding: 1px 6px; border-radius: 4px; }
.sh-legal-back { display: inline-block; margin-bottom: 40px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
