/* =============================================
   STUCCO ON TREND — STYLESHEET
   Palette: Deep Forest Green + Antique Gold
   ============================================= */

/* --- TOKENS --- */
:root {
  --green-deepest: #0d1f14;
  --green-deep:    #132a1c;
  --green-mid:     #1e4029;
  --green-light:   #2c5c3a;
  --gold:          #c9a84c;
  --gold-light:    #e2c97e;
  --gold-pale:     #f0e0a8;
  --cream:         #f5f0e8;
  --cream-dark:    #ede5d4;
  --white:         #faf8f4;
  --text-dark:     #1a1a18;
  --text-mid:      #3d3b34;
  --text-light:    #7a7060;

  --font-display:  'Cinzel', serif;
  --font-body:     'Cormorant Garamond', serif;
  --font-ui:       'Jost', sans-serif;

  --nav-h: 76px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: 1280px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--green-deepest);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- SAFE AREA PADDING --- */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- NAV --- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(13, 31, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.08em;
}
.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--gold);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
  opacity: 0.7;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 0.5rem 1.4rem !important;
  color: var(--gold) !important;
  opacity: 1 !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deepest) !important;
}
/* mobile touch target for nav-cta */
@media (max-width: 900px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.6rem 1.8rem !important;
  }
}
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--green-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* --- HERO --- */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease-smooth) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,31,20,0.82) 0%,
    rgba(13,31,20,0.55) 50%,
    rgba(13,31,20,0.35) 100%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.72em;
  text-transform: none;
  color: var(--gold-pale);
  letter-spacing: 0;
  display: block;
  margin-bottom: 0.1em;
}
.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cream-dark);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* --- BUTTONS --- */
.btn-gold {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-deepest);
  background: var(--gold);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-smooth);
}
.btn-gold:hover::after { transform: translateX(0); }
.btn-gold span, .btn-gold { z-index: 1; }
.btn-gold:hover { transform: translateY(-1px); }
.btn-gold.full { width: 100%; text-align: center; }

/* --- LABEL --- */
.label-gold {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* --- SECTION: CRAFT --- */
.section-craft {
  background: var(--cream);
  color: var(--text-dark);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
}
.container-split {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 1.8rem;
}
.split-text h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--green-light);
}
.body-copy {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.body-copy em { color: var(--green-mid); font-style: italic; }
.craft-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.split-image { position: relative; }
.img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.img-frame img { transition: transform 0.8s var(--ease-smooth); }
.img-frame:hover img { transform: scale(1.04); }
.img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

/* --- SECTION: GALLERY --- */
.section-gallery {
  background: var(--green-deepest);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
}
.gallery-header {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/10;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  transition: transform 0.7s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(13,31,20,0.9), transparent);
  transform: translateY(30%);
  opacity: 0;
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-caption span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.gallery-caption p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
}

/* --- SECTION: PROCESS --- */
.section-process {
  background: var(--green-deep);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.section-process::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 4rem;
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  align-items: start;
  transition: background 0.3s;
}
.process-step:first-child { border-top: 1px solid rgba(201, 168, 76, 0.15); }
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  padding-top: 0.2rem;
  transition: color 0.3s;
}
.process-step:hover .step-number { color: var(--gold); }
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.step-body p {
  font-size: 1.05rem;
  color: var(--cream-dark);
  opacity: 0.75;
  line-height: 1.7;
}

/* --- QUOTE (multiple testimonials) --- */
.section-quote {
  background: var(--gold);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 3rem);
}
.quote-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-wrap blockquote {
  padding-top: 2rem;
  margin-bottom: 1rem;
}
.quote-wrap blockquote:first-of-type {
  padding-top: 0;
}
.quote-wrap blockquote {
  border-top: 1px solid rgba(13,31,20,0.12);
}
.quote-wrap blockquote:first-of-type {
  border-top: none;
}
.quote-mark {
  width: 3rem;
  color: var(--green-deepest);
  opacity: 0.25;
  margin: 0 auto 1.5rem;
}
blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--green-deepest);
  margin-bottom: 1.5rem;
}
cite {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-mid);
  font-style: normal;
}

/* --- SECTION: CONTACT --- */
.section-contact {
  background: var(--cream);
  color: var(--text-dark);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-text h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--green-light);
}
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}
.contact-item a, .contact-item span {
  font-size: 1.05rem;
  color: var(--text-dark);
}
.contact-item a:hover { color: var(--green-mid); }

/* FORM */
.contact-form { padding-top: 0.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; background-image: none; }
.form-group textarea { resize: none; }
.form-note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--green-mid);
  margin-top: 1rem;
  min-height: 1.2rem;
  text-align: center;
}

.field-error {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: #a84444;
  margin-top: 0.35rem;
  min-height: 1em;
}

/* --- TRUST BAR --- */
.section-trust {
  background: var(--green-deep);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-pale);
  opacity: 0.75;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 31, 20, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-bg {
  position: absolute;
  inset: 0;
}
.lightbox img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--green-deepest);
}
.footer {
  background: var(--green-deepest);
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 2rem;
  text-align: center;
}
.footer-inner {
  max-width: 500px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.footer-logo .logo-main { font-size: 1.5rem; }
.footer-copy {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer-legal {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  opacity: 0.5;
  margin-top: 3rem;
}
.footer-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin-top: 2rem;
}

/* --- REVEAL ANIMATIONS --- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container-split,
  .contact-inner { grid-template-columns: 1fr; }
  .split-image { order: -1; }
  .img-frame { aspect-ratio: 4/3; max-height: 400px; }
  .img-accent { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/4; }
  .nav-links { display: none; }
  .burger { display: flex; }

  /* mobile form input sizing — prevent iOS zoom */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  /* mobile button sizing */
  .btn-gold {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
  }
  .btn-gold.full {
    padding: 0.9rem 2rem;
  }

  /* mobile lightbox */
  .lightbox-close {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    top: calc(1rem + var(--safe-top));
    right: 1rem;
  }
  .lightbox-caption {
    bottom: calc(1.5rem + var(--safe-bottom));
  }

  /* mobile hero spacing */
  .hero-content {
    padding-top: calc(var(--nav-h) + var(--safe-top) + 2rem);
  }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .craft-stats { flex-wrap: wrap; gap: 1.5rem; }
  .process-step { grid-template-columns: 3.5rem 1fr; gap: 1.2rem; }
  .trust-inner { gap: 1.5rem; }

  /* tighten hero on small phones */
  .hero-content { padding-top: calc(var(--nav-h) + var(--safe-top) + 1rem); }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-tagline { font-size: 1rem; }
}

/* --- GALLERY: captions always visible on touch devices --- */
@media (hover: none) {
  .gallery-caption {
    transform: translateY(0);
    opacity: 1;
    pointer-events: none;
  }
  .gallery-item:hover img {
    transform: none;
  }
}

