/* ── TOKENS ── */
:root {
  --cream:      #FFF5F5;
  --cream2:     #FFE5E5;
  --white:      #FFFFFF;
  --ink:        #0A0F14;
  --ink2:       #1A1010;
  --ink3:       #6B6060;
  --teal:       #C62828;
  --teal-lt:    #E53935;
  --teal-bg:    #FFEBEE;
  --accent:     #E85D26;
  --accent-lt:  #FF7A45;
  --gold:       #F4A623;
  --border:     #FFCDD2;
  --border-dk:  #EF9A9A;

  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Manrope', system-ui, sans-serif;

  --max:        1280px;
  --gutter:     clamp(20px, 5vw, 80px);
  --section:    clamp(60px, 10vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ── UTILITIES ── */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.tag::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--teal);
}

.serif-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}
.serif-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

/* reveal — initial hidden state, GSAP handles animation */
.reveal { opacity: 0; }

/* soft-reveal — CSS transition via IntersectionObserver */
.soft-reveal {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.soft-reveal.is-visible { opacity: 1; }

/* line-wrap for SplitType */
.line-wrap { overflow: hidden; display: block; }

/* ── MENU OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── NAV ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-name {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}

.nav-menu {
  display: flex; align-items: center; gap: 22px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--ink2);
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--teal); }
.nav-menu a:hover::after { transform: scaleX(1); }

.btn-nav {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  background: var(--teal);
  color: #fff;
  border: 1.5px solid var(--teal);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(198,40,40,0.3);
}
.btn-nav:hover { background: var(--teal-lt); border-color: var(--teal-lt); box-shadow: 0 4px 14px rgba(229,57,53,0.4); }
.btn-nav:active { transform: scale(0.97); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter) 32px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--ink2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn-nav {
  margin-top: 20px; text-align: center;
  display: block; padding: 14px;
}

/* ── SCROLL OFFSET (fixed nav = 68px) ── */
#services, #why, #process, #objects, #works, #faq, #reviews, #contact {
  scroll-margin-top: 68px;
}

/* ── HERO ── */
#hero {
  background: #ffffff;
  border-bottom: 3px solid var(--teal);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 68px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(20px, 5vh, 56px) 60px clamp(20px, 5vh, 56px) var(--gutter);
  border-right: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero-tag { margin-bottom: clamp(14px, 2.5vh, 28px); }

.hero-h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  margin-bottom: clamp(10px, 1.8vh, 20px);
  color: var(--ink);
}
.hero-h1 em { color: var(--teal); }

.hero-sub {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink3);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: clamp(20px, 3.5vh, 40px);
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-primary {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(198,40,40,0.35);
}
.btn-primary:hover {
  background: var(--teal-lt);
  border-color: var(--teal-lt);
  box-shadow: 0 6px 24px rgba(229,57,53,0.45);
}
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-dk);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline:active { transform: scale(0.97); }

.hero-meta {
  margin-top: clamp(18px, 3vh, 44px);
  display: flex; gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: clamp(14px, 2.5vh, 24px);
}
.hero-meta-num {
  font-family: var(--ff-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
}
.hero-meta-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-right {
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: linear-gradient(120deg, #4A0000 0%, #8B0000 50%, #C62828 100%);
  color: var(--white);
  padding: 56px var(--gutter);
  border-top: 3px solid var(--teal-lt);
  position: relative;
  overflow: hidden;
}
.about-strip::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,57,53,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.about-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-strip-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
}
.about-strip-text em { font-style: italic; color: #FF6B6B; }
.about-strip-loc {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.about-strip-loc:hover { opacity: 1; }

/* ── SERVICES ── */
#services {
  padding: var(--section) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px;
  gap: 30px;
  flex-wrap: wrap;
}
.section-h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
.section-note {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink2);
  max-width: 340px;
  text-align: right;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.svc-card {
  padding: 44px 36px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: inset 0 -3px 0 0 transparent;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe5e5 100%);
  box-shadow: inset 0 -4px 0 0 var(--teal-lt);
}

.svc-num {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 28px;
}
.svc-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
}
.svc-icon svg { stroke: var(--teal); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; width: 48px; height: 48px; }
.svc-title {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.svc-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.75;
}
.svc-price {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink3);
}
.svc-price strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}
.svc-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: transparent;
  border: 1.5px solid var(--teal);
  padding: 4px 10px;
}

/* ── WHY ── */
#why {
  padding: var(--section) 0;
  background: linear-gradient(160deg, #FFF5F5 0%, #FFE5E5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.why-sticky { position: sticky; top: 100px; }
.why-h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px 0 22px; }
.why-lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-contact-teaser {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
}
.why-contact-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-contact-icon svg { stroke: white; fill: none; stroke-width: 1.5; }
.why-contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink3); }
.why-contact-val { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); }

.why-list { display: flex; flex-direction: column; }
.why-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-row:first-child { border-top: 1px solid var(--border); }
.why-index {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  line-height: 1;
  border-top: 2px solid var(--teal);
  padding-top: 10px;
  margin-top: 2px;
}
.why-row-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-row-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.75;
}

/* ── PROCESS ── */
#process {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-top: 52px;
}
.process-item {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.process-item:hover { background: linear-gradient(180deg, #fff5f5 0%, #ffe5e5 100%); }
.process-item:last-child { border-right: none; }
.process-step-num {
  font-family: var(--ff-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-lt);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.process-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.75;
}
.process-item::after {
  content: '→';
  position: absolute; top: 36px; right: 16px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.2s;
}
.process-item:hover::after { opacity: 1; }
.process-item:last-child::after { display: none; }

/* ── PARTNERS ── */
#objects {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.partner-card:hover {
  border-color: var(--teal-lt);
  box-shadow: 0 8px 36px rgba(198,40,40,0.18);
  transform: translateY(-3px);
}
.partner-logo {
  height: 72px;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 10px 20px;
  background: var(--white);
  margin-bottom: 26px;
}
.partner-logo img {
  max-height: 44px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}
.partner-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.partner-type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  background: transparent;
  border: 1px solid var(--border);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.partner-desc {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.partner-links {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-top: auto;
}
.partner-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}
.partner-link:hover { gap: 11px; }
.partner-link-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
}
.partner-link-ghost:hover { color: var(--teal); }

/* ── WORKS ── */
#works {
  padding-top: var(--section);
  background: linear-gradient(120deg, #4A0000 0%, #8B0000 50%, #C62828 100%);
  overflow: hidden;
  border-top: 3px solid var(--teal-lt);
}
.works-head {
  margin-bottom: clamp(36px, 5vw, 56px);
}
.works-carousel {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}
.works-carousel:active { cursor: grabbing; }
.works-track {
  display: flex;
  gap: clamp(12px, 1.8vw, 22px);
  padding: 0 var(--gutter) clamp(40px, 7vw, 80px);
  will-change: transform;
}
.work-item {
  flex-shrink: 0;
  width: clamp(260px, 34vw, 480px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #1A1A1A;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.work-item:hover img { transform: scale(1.06); }
.work-num {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}
.works-hint {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: #FF6B6B;
  margin-top: 0; padding: 0 var(--gutter) 0;
  margin-bottom: clamp(20px, 3vw, 36px);
}
#works .tag { color: #FF6B6B; }
#works .tag::before { background: #FF6B6B; }
#works .section-h2 { color: #fff; }
#works .serif-title em { color: #FF6B6B; }
.works-hint svg { flex-shrink: 0; }

/* ── REVIEWS ── */
#reviews {
  padding: var(--section) 0;
  background: linear-gradient(120deg, #4A0000 0%, #8B0000 50%, #C62828 100%);
  color: var(--white);
  overflow: hidden;
}
#reviews .tag { color: #FF6B6B; }
#reviews .tag::before { background: #FF6B6B; }
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.reviews-h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 14px 0 0;
}
.reviews-h2 em { font-style: italic; font-weight: 400; color: #FF6B6B; }
.reviews-count {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
  text-align: right;
}
#cnt3 { display: inline; }
.reviews-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,107,107,0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,107,107,0.15);
}
.review-stars {
  display: flex; gap: 4px;
}
.review-stars svg { fill: var(--gold); }
.review-quote {
  font-size: 2.8rem;
  font-family: var(--ff-serif);
  font-style: italic;
  line-height: 1;
  color: var(--teal-lt);
  opacity: 0.9;
  margin-bottom: -8px;
}
.review-text {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.review-object {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: span 2; }
}

/* ── REVIEWS DOTS ── */
.reviews-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.reviews-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── CONTACT ── */
#contact {
  padding: var(--section) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 0; }
.contact-h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin: 16px 0 16px; }
.contact-lead {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.8;
  white-space: nowrap;
  margin-bottom: 40px;
}
.contact-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid var(--border);
  border-radius: 6px 6px 0 0;
  transition: background 0.2s;
  cursor: default;
}
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-item:hover { background: var(--teal-bg); }
.c-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-bg);
  border: none;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background 0.2s;
}
.contact-item:hover .c-icon { background: var(--teal); }
.c-icon svg { stroke: var(--teal); fill: none; stroke-width: 1.6; transition: stroke 0.2s; }
.contact-item:hover .c-icon svg { stroke: #fff; }
.c-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); margin-bottom: 5px; }
.c-val { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.c-val a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: var(--teal); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; align-self: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--teal);
  background: var(--white);
  outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink3); }
.form-submit {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  align-self: center;
  box-shadow: 0 4px 18px rgba(198,40,40,0.3);
}
.form-submit:hover {
  background: var(--teal-lt);
  border-color: var(--teal-lt);
  box-shadow: 0 6px 24px rgba(229,57,53,0.45);
}
.form-submit:active { transform: scale(0.97); }
.form-note {
  font-size: 0.72rem;
  color: var(--ink3);
  font-weight: 400;
  margin-top: -6px;
  text-align: center;
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #C0392B;
  background: #FDF8F7;
}
.field-error-msg {
  font-size: 0.7rem;
  color: #C0392B;
  font-weight: 500;
  margin-top: 4px;
}
.form-result {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  border: 1.5px solid transparent;
}
.form-result--success { background: #EBF5F0; border-color: #27AE60; color: #1E8449; }
.form-result--error   { background: #FDF5F5; border-color: #C0392B; color: #922B21; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(120deg, #4A0000 0%, #8B0000 50%, #C62828 100%);
  color: rgba(255,255,255,0.45);
  padding: 44px var(--gutter);
  border-top: 2px solid var(--teal-lt);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.75rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact span { color: rgba(255,255,255,0.3); }
.footer-copy {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 4px;
}

/* ── FAQ ── */
#faq { padding: var(--section) 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 100px;
}
.faq-h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.15;
}
.faq-h2 em { color: var(--teal); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--ff-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q::after {
  content: '';
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-dk);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3.5l3 3 3-3' stroke='%230077B6' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
  transition: transform 0.3s ease, border-color 0.2s;
}
.faq-num {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  min-width: 24px;
}
.faq-item.open .faq-q { color: var(--teal); }
.faq-item.open .faq-num { color: var(--teal); }
.faq-item.open .faq-q::after {
  transform: rotate(180deg);
  border-color: var(--teal);
}
.faq-a {
  overflow: hidden;
  height: 0;
}
.faq-a-inner {
  padding: 2px 0 24px 42px;
  font-size: 0.93rem;
  color: var(--ink3);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 300;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-lt) 50%, var(--accent) 100%);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── RESPONSIVE ── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 42svh auto;
    height: auto;
    min-height: 0;
  }
  .hero-right { order: -1; padding: 0; min-height: 0; }
  .hero-left {
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--border);
    padding: 10px var(--gutter) 10px;
    overflow: visible;
    justify-content: flex-start;
  }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-sticky { position: static; }

  /* Partners */
  .partners-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 32px; }
  .contact-lead { white-space: normal; }

  /* Section head stacking */
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-note { text-align: left; max-width: 100%; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-menu { display: none; }
  .nav-inner > .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-logo-name { display: none; }

  /* Typography */
  .section-h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .why-h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .faq-h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .contact-h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .reviews-h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }

  /* Hero */
  .hero-meta {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
  }
  .hero-meta-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-meta-num { font-size: 1.3rem; min-width: 0; }
  .hero-meta-label { margin-top: 0; font-size: 0.58rem; }
  .hero-tag { margin-bottom: 8px; }
  .hero-h1 { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 12px; font-size: 0.88rem; line-height: 1.6; }
  .hero-meta { margin-top: 10px; padding-top: 10px; }
  .hero-btns { flex-direction: column; gap: 8px; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; max-width: 320px; padding: 11px 24px; }

  /* About strip */
  .about-strip-inner { flex-direction: column; gap: 20px; }
  .about-strip-loc { font-size: 0.7rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }

  /* Why */
  .why-contact-teaser { margin-top: 8px; }
  .why-row { grid-template-columns: 40px 1fr; gap: 16px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-top: 1px solid var(--border); }
  .process-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .process-item::after { display: none; }

  /* Partners */
  .partners-grid { grid-template-columns: 1fr; }

  /* Works */
  .works-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .work-item { width: clamp(220px, 75vw, 340px); }
  .works-hint { font-size: 0.65rem; }

  /* Reviews — slider on mobile */
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reviews-count { font-size: clamp(2.4rem, 7vw, 3.6rem); text-align: left; }
  .reviews-slider-wrap { overflow: hidden; margin: 0 calc(-1 * var(--gutter)); }
  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    grid-template-columns: unset;
    padding: 0 var(--gutter) 4px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 calc(100vw - calc(2 * var(--gutter)));
    min-width: calc(100vw - calc(2 * var(--gutter)));
    scroll-snap-align: center;
    margin-right: 12px;
    grid-column: unset !important;
  }
  .reviews-dots { display: flex; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; padding: 16px 24px; }
  .contact-item { padding: 18px 12px; margin: 0 -12px; }
  .c-icon { width: 44px; height: 44px; }

  /* Footer */
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: flex-start; gap: 24px; }
  .footer-links { display: none; }
  .footer-logo { align-self: center; }
  .footer-copy { flex-basis: 100%; text-align: left; margin-top: 4px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-sticky { position: static; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  /* Hero */
  .hero-inner { grid-template-rows: 35svh auto; }
  .hero-left { padding: 8px var(--gutter) 8px; }
  .hero-h1 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .hero-tag { margin-bottom: 10px; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 16px; }
  .hero-btns { max-width: 100%; }
  .btn-primary, .btn-outline { max-width: 100%; padding: 12px 20px; font-size: 0.72rem; }

  /* General typography */
  .tag { font-size: 0.65rem; }
  .section-h2 { font-size: clamp(1.5rem, 7.5vw, 2rem); }

  /* About strip */
  .about-strip { padding: 36px var(--gutter); }
  .about-strip-text { font-size: clamp(0.95rem, 4.5vw, 1.2rem); }

  /* Services */
  .svc-card { padding: 32px 24px 28px; }
  .svc-title { font-size: 1.25rem; }

  /* Why */
  .why-h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .why-row { padding: 20px 0; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-bottom: 1px solid var(--border); }
  .process-item:last-child { border-bottom: none; }
  .process-item:nth-child(3), .process-item:nth-child(4) { border-top: none; }
  .process-step-num { font-size: 1.8rem; }

  /* Partners */
  .partner-card { padding: 28px 22px 24px; }

  /* Works */
  .work-item { width: clamp(200px, 82vw, 300px); }

  /* Reviews */
  .review-card { padding: 24px 20px; }

  /* Contact */
  .contact-lead { font-size: 0.92rem; white-space: normal; }
  .contact-h2 { font-size: clamp(1.45rem, 6.5vw, 2rem); }
  .c-val { font-size: 1.05rem; }

  /* FAQ */
  .faq-q { font-size: 0.9rem; }
  .faq-a-inner { padding-left: 28px; }

  /* Footer */
  .footer-logo-img { height: 40px; }
  .footer-copy { font-size: 0.68rem; }

}

/* Overrride section spacing on small screens */
@media (max-width: 480px) {
  :root { --section: clamp(44px, 9vw, 80px); }
}
