:root {
  --ink: #1c1a15;
  --ink-soft: #6f6a5b;
  --paper: #f8f4ec;
  --paper-alt: #efe8d8;
  --line: #e4dcc8;
  --black: #17140f;
  --black-soft: #26221a;
  --gold: #b9903f;
  --gold-light: #d4af6a;
  --olive: #6b7048;
  --radius-lg: 28px;
  --radius: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 16px;
  color: var(--ink);
}

h1 em, h2 em { font-style: italic; color: var(--gold); }

h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }

p { margin: 0 0 16px; color: var(--ink-soft); }

a { color: inherit; }

img { display: block; }

/* Top bar */
.topbar {
  background: var(--black);
  color: #d8d2c2;
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 16px;
}

.topbar-meta {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.topbar-meta a { text-decoration: none; color: inherit; }

.topbar-social {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.topbar-social a { text-decoration: none; color: inherit; opacity: 0.8; transition: opacity 0.3s var(--ease); }
.topbar-social a:hover { opacity: 1; color: var(--gold-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark { color: var(--gold); flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.01em; }
.logo-text em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

.nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav > a:not(.nav-cta):hover::after { width: 100%; }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.nav-dropdown-trigger span { font-size: 0.7rem; transition: transform 0.3s var(--ease); }
.nav-dropdown-trigger[aria-expanded="true"] span { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(23, 20, 15, 0.14);
  padding: 10px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-dropdown-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-dropdown-menu a:hover { background: var(--paper-alt); color: var(--gold); }

.nav-cta {
  padding: 11px 22px;
  background: var(--black);
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-cta:hover { background: var(--gold); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span { display: block; height: 2px; background: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid transparent;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(185, 144, 63, 0.3); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-italic { font-family: var(--font-display); font-style: italic; text-transform: none; letter-spacing: 0.01em; font-size: 1rem; }
.eyebrow-center { text-align: center; }
.eyebrow-light { color: var(--gold-light); }

.section-title { text-align: center; }
.section-title-left { margin-bottom: 0; }
.section-sub { text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }
.section-sub-left { margin-top: -8px; }

/* Hero */
.hero { padding: 40px 0 0; overflow: hidden; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); }

.hero-sub { max-width: 460px; font-size: 1.02rem; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust { display: flex; align-items: center; gap: 14px; }

.hero-avatars { display: flex; }

.avatar-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}

.hero-avatars .avatar-mono:first-child { margin-left: 0; }

.avatar-mono-a { background: var(--gold); }
.avatar-mono-b { background: var(--olive); }
.avatar-mono-c { background: var(--black-soft); }

.hero-trust-text { display: flex; flex-direction: column; font-size: 0.82rem; color: var(--ink-soft); }
.hero-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.hero-trust-text em { font-style: normal; opacity: 0.65; }

.hero-visual { position: relative; }

.hero-photo {
  aspect-ratio: 4 / 4.4;
  background-color: var(--paper-alt);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  animation: hero-rise 0.9s var(--ease) both;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.55;
  z-index: 1;
}

.hero-ring-a { width: 130px; height: 130px; top: -30px; right: 40px; animation: ring-float 7s ease-in-out infinite; }
.hero-ring-b { width: 70px; height: 70px; top: 40px; right: -10px; border-color: var(--olive); animation: ring-float 6s ease-in-out infinite reverse; }

@keyframes ring-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-copy > * { animation: hero-rise 0.8s var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.06s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.24s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Feature strip */
.feature-strip-wrap { margin-top: 56px; position: relative; z-index: 3; }

.feature-strip {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(23, 20, 15, 0.12);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -70px;
}

.feature-item { text-align: center; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.feature-item strong { display: block; font-size: 0.95rem; }
.feature-item p { margin: 2px 0 0; font-size: 0.8rem; }

/* About */
.about { padding: 100px 0 90px; }

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-color: var(--paper-alt);
  background-size: cover;
  background-position: center;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 24px 0 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.check-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Services */
.services { padding: 0 0 90px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 20, 15, 0.1);
}

.service-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-color: var(--paper-alt);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-photo { transform: scale(1.06); }

.service-card h3 { margin-bottom: 4px; }
.service-card p { font-size: 0.85rem; margin-bottom: 10px; }

.service-price {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--paper-alt);
  padding: 5px 14px;
  border-radius: 999px;
}

/* Work */
.work { padding: 0 0 100px; }

.work-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.view-all-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.view-all-link:hover { color: var(--gold); gap: 10px; }

.work-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.filter-btn:hover { border-color: var(--gold); color: var(--ink); }

.filter-btn.is-active { background: var(--black); border-color: var(--black); color: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.work-item.is-hidden { display: none; }

.work-item { transition: transform 0.4s var(--ease); }
.work-item:hover { transform: translateY(-6px); }

.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-color: var(--paper-alt);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(23, 20, 15, 0);
  transition: box-shadow 0.4s var(--ease);
}

.work-item:hover .work-thumb { box-shadow: 0 20px 40px rgba(23, 20, 15, 0.18); }

.work-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(248, 244, 236, 0.92);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.work-info { margin-top: 14px; }
.work-info strong { font-size: 1rem; }
.work-info p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Before & after */
.before-after-block { margin-top: 84px; text-align: center; }

.ba-title { margin-bottom: 32px; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  transition: box-shadow 0.4s var(--ease);
}

.ba-slider:hover { box-shadow: 0 20px 40px rgba(23, 20, 15, 0.18); }

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  background-color: var(--paper-alt);
  background-size: cover;
  background-position: center;
}

.ba-before { clip-path: inset(0 50% 0 0); }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(23, 20, 15, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* Craft */
.craft { padding: 0 0 90px; }

.craft-panel {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.craft-copy h2 { color: #fff; }
.craft-copy p { color: #c8c2b2; }

.craft-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.craft-point {
  color: #efe8d8;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.craft-point span { color: var(--gold); font-size: 0.7rem; }

.craft-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.craft-photo {
  border-radius: var(--radius);
  background-color: var(--black-soft);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}

.craft-photo:hover { transform: translateY(-6px); }

.craft-photo-a { aspect-ratio: 3 / 4; margin-top: 28px; }
.craft-photo-b { aspect-ratio: 3 / 4; }

/* Stats */
.stats { background: var(--black); padding: 64px 0 24px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-icon { display: block; color: var(--gold); font-size: 0.7rem; margin-bottom: 10px; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: #fff;
}

.stat-item p { color: #a39d8c; font-size: 0.85rem; margin: 4px 0 0; }

.stats-note {
  text-align: center;
  font-size: 0.75rem;
  color: #6f6a5b;
  margin: 24px 0 0;
}

/* Testimonials */
.testimonials { padding: 90px 0; }

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.carousel-arrow:hover { background: var(--gold); color: #fff; transform: scale(1.06); }

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; display: block; margin-bottom: 8px; }

.testimonial-card p { color: var(--ink); font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-card p em { font-style: normal; color: var(--ink-soft); font-size: 0.78rem; }

.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person .avatar-mono { width: 44px; height: 44px; font-size: 0.95rem; margin-left: 0; }
.testimonial-person strong { display: block; font-size: 0.88rem; }
.testimonial-person > div > span { font-size: 0.78rem; color: var(--ink-soft); }

@media (min-width: 860px) {
  .testimonial-card { flex-basis: calc(33.333% - 16px); }
}

/* Contact */
.contact { padding: 0 0 90px; }

.contact-panel {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-block h2 { color: #fff; }
.contact-block p { color: #c8c2b2; }

.contact-meta {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #efe8d8;
  font-size: 0.9rem;
}

.contact-meta a { color: var(--gold-light); font-weight: 600; text-decoration: none; }

.hs-form-wrapper {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
}

/* Footer */
.site-footer { background: var(--black); color: #b8b2a0; padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.82rem; }
.footer-col a { display: block; text-decoration: none; color: #b8b2a0; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { color: #b8b2a0; font-size: 0.85rem; margin-bottom: 8px; }

.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-text strong { color: #fff; }

.footer-brand-col p { font-size: 0.85rem; margin-bottom: 18px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  margin-bottom: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.newsletter-form { display: flex; gap: 8px; margin-top: 4px; }

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.newsletter-form input::placeholder { color: #8a8574; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 24px;
  font-size: 0.78rem;
}

.footer-bottom p { margin: 0; color: #8a8574; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { text-decoration: none; color: #8a8574; transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--gold-light); }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .craft-panel, .contact-panel { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; margin-top: -50px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar-meta li:nth-child(2) { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 0 12px;
    margin-top: 8px;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown-menu.is-open { display: flex; }
  .hero { padding: 32px 0 0; }
  .feature-strip { grid-template-columns: 1fr; margin-top: 24px; }
  .feature-strip-wrap { margin-top: 32px; }
  .about { padding: 60px 0; }
  .about-checklist { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .craft-panel, .contact-panel { padding: 36px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-photo, .hero-copy > *, .hero-ring { animation: none; }
  .btn:hover, .service-card:hover, .work-item:hover, .craft-photo:hover, .nav-cta:hover {
    transform: none;
  }
}
