/* ==========================================================================
   Gus Hill — home page sections
   ========================================================================== */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("/assets/img/hero-bg.jpg");
  background-image: -webkit-image-set(url("/assets/img/hero-bg.webp") 1x);
  background-image: image-set(url("/assets/img/hero-bg.webp") type("image/webp"), url("/assets/img/hero-bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}
/* Dark overlay: left-weighted so the huge off-white title stays crisp, with
   a bottom fade for the scroll hint and a faint accent glow up top. The shop
   shows through on the right. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 60% at 50% -10%, var(--accent-dim), transparent 55%),
    linear-gradient(90deg, rgba(8,9,12,0.90) 0%, rgba(8,9,12,0.68) 48%, rgba(8,9,12,0.42) 100%),
    linear-gradient(180deg, rgba(8,9,12,0.30) 0%, transparent 45%, rgba(8,9,12,0.88) 100%);
}
/* Film grain over the hero photo: the source render is 1456px wide, so large
   viewports upscale it soft — the grain makes that read as mood, not compression. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.06;
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600; margin-bottom: 26px;
}
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(96px, 24vw, 260px); line-height: 0.82;
  letter-spacing: 3px; color: var(--fg); margin-bottom: 30px;
}
.hero-title span { display: block; }
.hero-sub {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px); color: var(--muted);
  max-width: 540px; margin-bottom: 40px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Scroll hint */
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 1; color: var(--dim); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--accent-2), transparent); }

/* ===== ABOUT ===== */
.about-quote {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(28px, 4.4vw, 48px); line-height: 1.16; letter-spacing: 0.2px;
  color: var(--fg); max-width: 940px; margin-bottom: 56px;
}
.about-quote .accent { color: var(--accent-2); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.stat { border-top: 2px solid var(--accent); padding-top: 18px; }
.stat-value { font-family: var(--display); font-size: clamp(34px, 5vw, 52px); line-height: 1; color: var(--fg); letter-spacing: 1px; }
.stat-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; }
.about-bio { max-width: 760px; display: grid; gap: 20px; }
.about-bio p { color: var(--muted); font-size: 17px; }
.about-bio strong { color: var(--fg); font-weight: 600; }

/* ===== SERVICES ===== */
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card {
  background: var(--bg-card); padding: 32px 30px;
  display: flex; flex-direction: column; gap: 12px; transition: background var(--ease);
}
.svc-card:hover { background: var(--bg-card-2); }
.svc-top { display: flex; align-items: baseline; gap: 14px; }
.svc-n { font-family: var(--display); font-size: 20px; color: var(--accent); letter-spacing: 1px; }
.svc-name { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: 0; color: var(--fg); line-height: 1.05; }
.svc-desc { color: var(--muted-2); font-size: 15px; flex: 1; }
.svc-meta { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--border-soft); padding-top: 14px; margin-top: 4px; }
.svc-price { font-family: var(--display); font-size: 28px; color: var(--accent-2); letter-spacing: 1px; }
.svc-time { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }

/* ===== WORK / GALLERY ===== */
/* Feature-plus-quad: first shot spans 2x2 so five photos fill the grid with no orphan row. */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.work-item { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 286 / 272; background: var(--bg-card); }
.work-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-item:hover img { transform: scale(1.05); }

/* ===== REVIEWS ===== */
.rev-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.rev-intro { color: var(--muted); font-size: 17px; font-style: italic; }
.rev-group + .rev-group { margin-top: 32px; }
.rev-group-title { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 0; text-transform: none; color: var(--accent-2); margin-bottom: 16px; }
.rev-list { display: grid; gap: 14px; }
.rev-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.rev-stars { color: var(--accent-2); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.rev-quote { color: var(--fg); font-size: 16px; }
.rev-name { display: block; margin-top: 10px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }

/* ===== VISIT ===== */
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 44px; }
.visit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.visit-card h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 0; color: var(--accent-2); margin-bottom: 16px; }
.visit-card p, .visit-card a { color: var(--muted); font-size: 16px; }
.visit-card a:hover { color: var(--accent-2); }
.visit-hours { display: grid; gap: 8px; }
.visit-hours div { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.visit-hours span:first-child { color: var(--fg); }
.visit-hours span:last-child { color: var(--muted-2); }
.visit-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; }
.visit-cta p { color: var(--muted); font-size: 16px; }

/* ===== CLOSING CTA ===== */
.cta {
  position: relative; text-align: center; padding: 120px 0; overflow: hidden;
  background: var(--bg-alt);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, var(--accent-dim), transparent 65%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; margin-bottom: 18px; }
.cta-title { font-family: var(--display); font-weight: 400; font-size: clamp(48px, 9vw, 108px); line-height: 0.9; letter-spacing: 1px; color: var(--fg); margin-bottom: 22px; }
.cta-title span { display: block; }
.cta-text { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto 36px; }
.cta-foot { margin-top: 44px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .stats { grid-template-columns: 1fr; gap: 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-cols { grid-template-columns: 1fr; gap: 32px; }
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(72px, 26vw, 120px); }
}
