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

:root {
  --bg: #f7f6f3;
  --bg-alt: #edeae3;
  --white: #ffffff;
  --ink: #1a1a1a;
  --text: #4d4d4d;
  --muted: #8a8a87;
  --border: #e5e2db;
  --accent: #b52d1c;
  --accent-dk: #8f2316;
  --accent-glow: rgba(181,45,28,.12);
  --sans: 'Sora', system-ui, sans-serif;
  --heading: 'Instrument Serif', Georgia, serif;
  --radius: 6px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.topbar {
  background: var(--accent);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  padding: 8px 0;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: #fff; }
.topbar svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
}
.topbar-bkr {
  height: 22px;
  border-radius: 3px;
  background: #fff;
  padding: 2px 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
@media (max-width: 640px) {
  .topbar { padding: 7px 0; }
  .topbar .container { justify-content: center; }
  .topbar-left { gap: 16px; }
  .topbar-left a:last-child { display: none; }
  .topbar-right { display: none; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .4s;
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.nav .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-logo img {
  height: 38px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
  letter-spacing: .03em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 11px 28px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  margin-left: 8px;
  letter-spacing: .02em;
}
.nav-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,45,28,.3);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-hamburger span,
.nav-hamburger span::before,
.nav-hamburger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-hamburger span { top: 50%; margin-top: -1px; }
.nav-hamburger span::before { content: ''; top: -7px; left: 0; width: 22px; }
.nav-hamburger span::after { content: ''; top: 7px; left: 0; width: 16px; }
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 340px;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 90px 36px 36px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu > a {
  font-family: var(--heading);
  font-size: 1.7rem;
  color: rgba(255,255,255,.6);
  padding: 14px 0;
  transition: color .2s, padding-left .25s;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu > a:first-of-type { border-top: 1px solid rgba(255,255,255,.06); }
.mobile-menu > a:hover { color: #fff; padding-left: 6px; }
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: .02em;
  border-bottom: none;
  transition: background .2s;
}
.mobile-cta:hover { background: var(--accent-dk); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-close:hover { background: rgba(255,255,255,.08); }
.mobile-close svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.5); transition: stroke .2s; }
.mobile-close:hover svg { stroke: #fff; }
.mobile-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-foot a {
  display: block;
  margin-top: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.mobile-foot a:hover { color: #fff; }

.mobile-logo {
  height: 32px;
  margin-bottom: 28px;
}

.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 40%),
    linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 60%);
  pointer-events: none;
}
.hero-panel {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px 52px;
  max-width: 540px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  animation: panelReveal .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .3s;
}
.hero-panel h1 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
}
.hero-panel p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .84rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.hero-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(181,45,28,.3);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge img {
  height: 22px;
  border-radius: 2px;
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel { animation: none; }
}
@media (max-width: 768px) {
  .hero-panel {
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: none;
    padding: 32px 28px;
  }
}
@media (max-width: 640px) {
  .hero { height: calc(100vh - 72px - 33px); min-height: 520px; max-height: none; }
  .hero-img { object-position: center top; }
  .hero-panel {
    left: 0; right: 0; bottom: 0;
    padding: 32px 24px;
    border-left: none;
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .hero-panel h1 { font-size: 1.7rem; }
}

.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.5) 0%, rgba(12,12,12,.8) 100%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .page-hero { height: 260px; }
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
}
.section-header h2 {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
}
.section-header p {
  max-width: 500px;
  margin: 14px auto 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

.services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 24px 24px 28px;
}
.service-card-body h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
  transition: gap .25s cubic-bezier(.16,1,.3,1);
}
.service-link:hover { gap: 12px; }
.service-link svg { width: 14px; height: 14px; }

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: .06s; }
.services-grid .service-card:nth-child(3) { transition-delay: .12s; }
.services-grid .service-card:nth-child(4) { transition-delay: .18s; }
.services-grid .service-card:nth-child(5) { transition-delay: .24s; }
.services-grid .service-card:nth-child(6) { transition-delay: .3s; }

.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: .4s; }

.services-more {
  text-align: center;
  margin-top: 40px;
}
.services-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
  padding: 13px 32px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background .2s, color .2s, gap .25s;
}
.services-more-link:hover {
  background: var(--accent);
  color: #fff;
  gap: 12px;
}
.services-more-link svg { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 72px 0; }
}

.projects {
  padding: 100px 0;
  background: var(--bg-alt);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.project-item:hover img {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-overlay span {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.project-featured {
  grid-row: span 2;
}

.projects-grid .project-item.reveal:nth-child(1) { transition-delay: 0s; }
.projects-grid .project-item.reveal:nth-child(2) { transition-delay: .06s; }
.projects-grid .project-item.reveal:nth-child(3) { transition-delay: .12s; }
.projects-grid .project-item.reveal:nth-child(4) { transition-delay: .18s; }
.projects-grid .project-item.reveal:nth-child(5) { transition-delay: .24s; }
.projects-grid .project-item.reveal:nth-child(6) { transition-delay: .3s; }
.projects-grid .project-item.reveal:nth-child(7) { transition-delay: .36s; }
.projects-grid .project-item.reveal:nth-child(8) { transition-delay: .42s; }
.projects-grid .project-item.reveal:nth-child(9) { transition-delay: .48s; }
.projects-grid .project-item.reveal:nth-child(10) { transition-delay: .54s; }
.projects-grid .project-item.reveal:nth-child(11) { transition-delay: .6s; }
.projects-grid .project-item.reveal:nth-child(12) { transition-delay: .66s; }

.projects-more {
  text-align: center;
  margin-top: 40px;
}
.projects-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
  padding: 13px 32px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background .2s, color .2s, gap .25s;
}
.projects-more-link:hover {
  background: var(--accent);
  color: #fff;
  gap: 12px;
}
.projects-more-link svg { width: 16px; height: 16px; }

.instagram-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.instagram-bottom {
  margin-top: 32px;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
  padding: 12px 28px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background .2s, color .2s, gap .25s;
}
.instagram-link:hover {
  background: var(--accent);
  color: #fff;
  gap: 14px;
}
.instagram-link svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .instagram-section { padding: 72px 0; }
}

.reviews {
  padding: 100px 0;
  background: var(--bg-alt);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .3s, transform .3s;
}
.review-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.review-author strong {
  display: block;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 600;
}
.review-author span {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .03em;
}
.reviews-grid .review-card.reveal:nth-child(1) { transition-delay: 0s; }
.reviews-grid .review-card.reveal:nth-child(2) { transition-delay: .1s; }
.reviews-grid .review-card.reveal:nth-child(3) { transition-delay: .2s; }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .reviews { padding: 72px 0; }
}
@media (max-width: 480px) {
  .reviews-grid { max-width: 100%; }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .project-featured { grid-row: span 1; }
  .projects { padding: 72px 0; }
}
@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

.intro {
  padding: 100px 0;
  background: var(--white);
}
.intro.intro-alt {
  background: var(--bg-alt);
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.intro-text {
  max-width: 480px;
}
.intro-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.intro-text h2 {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 16px;
}
.intro-text p {
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.intro-stats {
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.intro-stat {
  text-align: left;
  padding: 0 24px;
  border-left: 2px solid var(--accent);
}
.intro-stat:first-child {
  padding-left: 0;
  border-left: none;
}
.intro-stat-val {
  display: block;
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
}
.intro-stat-label {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}

.intro-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
  justify-self: center;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.06);
  pointer-events: none;
}

.intro-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.intro-text li {
  position: relative;
  padding-left: 22px;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text);
}
.intro-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
  padding: 13px 32px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background .2s, color .2s, gap .25s;
}
.intro-cta:hover {
  background: var(--accent);
  color: #fff;
  gap: 12px;
}
.intro-cta svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .intro .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-image {
    max-width: 320px;
    order: -1;
  }
  .intro { padding: 72px 0; }
  .intro-stats {
    flex-wrap: nowrap;
    gap: 0;
  }
  .intro-stat {
    padding: 0 14px;
  }
  .intro-stat:first-child {
    padding-left: 0;
  }
  .intro-stat-val {
    font-size: 1.6rem;
  }
  .intro-stat-label {
    font-size: .6rem;
  }
}
@media (max-width: 400px) {
  .intro-stat { padding: 0 10px; }
  .intro-stat-val { font-size: 1.4rem; }
  .intro-stat-label { font-size: .56rem; }
}

.contact-hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.65) 0%, rgba(12,12,12,.85) 100%);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-hero p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}
.contact-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .84rem;
  padding: 15px 40px;
  border-radius: var(--radius);
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.contact-hero-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(181,45,28,.3);
}
.contact-hero-cta svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .contact-hero { padding: 64px 0; }
}

.contact {
  background: var(--white);
}
.contact > .container {
  padding-top: 80px;
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 400px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .25s, box-shadow .25s;
}
.contact-detail:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}
.contact-detail strong {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-detail span {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-bkr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ink);
  border-radius: var(--radius-lg);
}
.contact-bkr img {
  height: 28px;
  border-radius: 3px;
}
.contact-bkr span {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.4;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: .6;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .84rem;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  width: 100%;
  justify-content: center;
}
.form-submit:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,45,28,.25);
}
.form-submit svg {
  width: 16px;
  height: 16px;
  transition: transform .25s;
}
.form-submit:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact > .container { padding-top: 56px; padding-bottom: 72px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.4);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  height: 32px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .82rem;
  line-height: 1.65;
  max-width: 300px;
}
.footer-bkr {
  height: 36px;
  margin-top: 16px;
  border-radius: 4px;
  background: #fff;
  padding: 4px 6px;
}
.footer-col h4 {
  color: rgba(255,255,255,.7);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: .82rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .72rem;
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer { padding: 48px 0 0; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-grid > div {
    min-width: 0;
    max-width: 100%;
  }
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}

#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}
