:root {
  --primary: #5c6b2f;
  --bg: #f7f6ec;
  --ink: #23260f;
  --accent: #bc8a2e;
  --paper: #fffef5;
  --line: #e3e0c8;
  --mute: #6a6a45;
  --dark: #1c1e0a;
  --s: clamp(16px, 2vw, 24px);
  --r: 16px;
  --display: 'Tinos', Georgia, serif;
  --body: 'Open Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); line-height: 1.1; }
h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
p { color: var(--mute); }
.lead { font-size: clamp(15px, 1.5vw, 18px); color: var(--mute); max-width: 50ch; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.eyebrow--accent { color: var(--accent); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(247,246,236,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { font-family: var(--display); font-size: 22px; font-weight: 700; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand__icon { color: var(--primary); font-size: 26px; line-height: 1; }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 600; border-radius: 999px; transition: transform .15s, background .15s, box-shadow .15s; cursor: pointer; border: none; font-family: var(--body); }
.btn--primary { background: var(--primary); color: #fff; padding: 14px 26px; }
.btn--primary:hover { background: #4a561f; transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(92,107,47,.5); }
.btn--outline { background: transparent; color: var(--primary); padding: 14px 26px; box-shadow: inset 0 0 0 2px var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* Gallery Hero — image left, text right */
.gallery-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 90vh; }
.gallery-hero__media { position: relative; overflow: hidden; }
.gallery-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-hero__badge { position: absolute; bottom: 32px; left: 32px; background: var(--paper); border-radius: var(--r); padding: 16px 22px; box-shadow: 0 12px 36px -10px rgba(35,38,15,.3); }
.badge__num { display: block; font-family: var(--display); font-size: 28px; font-weight: 700; color: var(--primary); }
.badge__label { display: block; font-size: 13px; color: var(--mute); margin-top: 2px; }
.gallery-hero__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px); }
.gallery-hero__content h1 { margin-top: 0; color: var(--ink); }
.gallery-hero__content .lead { margin-top: 20px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.stat b { display: block; font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--primary); }
.stat span { font-size: 13px; color: var(--mute); }

/* Section */
.section { padding: clamp(50px, 6vw, 90px) 0; }
.section__head { max-width: 52ch; margin-bottom: 42px; }
.section__head p { color: var(--mute); margin-top: 10px; }

/* Effects grid */
.effects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.effect-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; display: flex; flex-direction: column; min-height: 240px; position: relative; transition: box-shadow .2s, transform .2s; }
.effect-card:hover { box-shadow: 0 12px 36px -10px rgba(92,107,47,.2); transform: translateY(-3px); }
.effect-card--featured { border-color: var(--primary); background: linear-gradient(160deg, rgba(92,107,47,.06) 0%, var(--paper) 70%); }
.effect-card__label { position: absolute; top: 16px; right: 16px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.effect-card__icon { font-size: 28px; color: var(--accent); margin-bottom: 14px; line-height: 1; }
.effect-card h3 { color: var(--ink); margin-bottom: 8px; }
.effect-card p { color: var(--mute); font-size: 14px; flex: 1; }
.effect-card__price { margin-top: 18px; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--primary); }

/* Fitting section */
.fitting { background: var(--ink); color: #fff; padding: clamp(50px, 6vw, 90px) 0; }
.fitting__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.fitting__text .lead { color: rgba(255,255,255,.75); }
.fitting__text .eyebrow--accent { color: var(--accent); }
.fitting__text h2 { color: #fff; margin-bottom: 20px; }
.fitting__sub { color: rgba(255,255,255,.6); font-size: 14.5px; margin-top: 16px; margin-bottom: 28px; max-width: 48ch; }
.fitting__steps { display: flex; flex-direction: column; gap: 0; }
.fstep { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.fstep:last-child { border-bottom: none; }
.fstep__num { font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--accent); opacity: .6; flex-shrink: 0; line-height: 1; width: 48px; }
.fstep b { display: block; color: #fff; font-size: 15px; margin-bottom: 6px; }
.fstep p { font-size: 14px; color: rgba(255,255,255,.6); }

/* Services list */
.services-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.svc-row__name { font-weight: 600; color: var(--ink); }
.svc-row__time { font-size: 14px; color: var(--mute); }
.svc-row__price { font-family: var(--display); font-weight: 700; color: var(--primary); font-size: 16px; text-align: right; min-width: 100px; }

/* Trust */
.trust { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(50px, 6vw, 90px) 0; }
.trust h2 { margin-bottom: 36px; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; min-height: 160px; }
.trust-card b { display: block; font-family: var(--display); font-size: 17px; color: var(--ink); margin-bottom: 10px; }
.trust-card p { font-size: 14.5px; color: var(--mute); }

/* Contact */
.contact { padding: clamp(50px, 6vw, 90px) 0; }
.contact__in { background: linear-gradient(135deg, var(--primary), #3e4b1d); border-radius: calc(var(--r) + 8px); padding: clamp(32px, 4vw, 60px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact__text h2 { color: #fff; }
.contact__text p { color: rgba(255,255,255,.8); margin-top: 10px; max-width: 42ch; }
.contact__detail { color: rgba(255,255,255,.95) !important; font-weight: 600; }
.contact__ctas { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.contact .btn--primary { background: #fff; color: var(--primary); }
.contact .btn--primary:hover { background: #f0eedf; }
.contact .btn--outline { box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); color: #fff; }
.contact .btn--outline:hover { background: rgba(255,255,255,.15); }

/* Footer */
.foot { background: var(--dark); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot__brand { font-family: var(--display); color: rgba(255,255,255,.9); font-size: 15px; }
.foot__copy { font-size: 13px; color: rgba(255,255,255,.45); }

/* section--dark for trust */
.section--dark { background: var(--paper); }

@media (max-width: 900px) {
  .gallery-hero { grid-template-columns: 1fr; min-height: auto; }
  .gallery-hero__media { height: 50vw; min-height: 260px; }
  .gallery-hero__content { padding: 40px 24px; }
  .effects-grid { grid-template-columns: repeat(2, 1fr); }
  .fitting__grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row__time { display: none; }
  .contact__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .gallery-hero__badge { left: 16px; bottom: 16px; }
  .effects-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 16px; }
  .contact__ctas { flex-direction: column; width: 100%; }
  .contact__ctas .btn { width: 100%; }
}
