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

:root {
  --dark:    #0F1419;
  --dark-m:  #1A2330;
  --brand:   #E07820;
  --brand-l: #F09040;
  --light:   #FFF8F0;
  --off:     #FAF5EE;
  --white:   #FFFFFF;
  --text:    #1A1F28;
  --dim:     rgba(26,31,40,0.52);
  --border:  rgba(26,31,40,0.09);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── HEADER ──────────────────────────────── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  transition: padding .3s;
}
#hdr.scrolled { padding: .75rem 4rem; }
.logo {
  display: flex; flex-direction: column; gap: .1rem;
  text-decoration: none;
}
.logo__name {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1;
}
.logo__tag {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1;
}
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .2s;
}
nav a:hover { color: var(--white); }
.nav-call {
  background: var(--brand);
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: 4px;
  transition: background .2s !important;
}
.nav-call:hover { background: var(--brand-l) !important; }

/* ─── HERO ────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 55% 45%;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 4rem;
  gap: 2.2rem;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
}
.hero__tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--brand);
}
.hero__title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.hero__desc {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
}
.hero__rating {
  display: flex; align-items: center; gap: 1rem;
}
.hero__rating .num {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero__rating .detail { display: flex; flex-direction: column; gap: .2rem; }
.hero__rating .stars { color: #FBBF24; font-size: 1rem; letter-spacing: .08em; }
.hero__rating .sub { font-size: .72rem; color: rgba(255,255,255,0.4); }
.hero__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  width: fit-content;
  transition: background .2s, transform .2s;
}
.hero__cta:hover { background: var(--brand-l); transform: translateY(-2px); }

/* hero right: review cards grid */
.hero__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
  align-content: center;
}
.hero__rv {
  background: var(--dark-m);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: background .2s;
}
.hero__rv:hover { background: rgba(255,255,255,0.05); }
.hero__rv .stars { color: #FBBF24; font-size: .8rem; letter-spacing: .06em; }
.hero__rv .text {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.hero__rv .name {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  margin-top: auto;
}

/* ─── STATS BAR ───────────────────────────── */
.stats-bar {
  background: var(--brand);
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  gap: .3rem;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-item__label {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ─── SERVICES ────────────────────────────── */
.services {
  padding: 6rem 4rem;
  background: var(--white);
}
.section-head { margin-bottom: 3.5rem; }
.eyebrow {
  display: block;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .7rem;
}
.section-head h2 {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--brand); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.svc-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(224,120,32,0.08);
  transform: translateY(-3px);
}
.svc-card__icon {
  width: 46px; height: 46px;
  background: var(--light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.svc-card__name {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.svc-card__desc {
  font-size: .84rem;
  line-height: 1.75;
  color: var(--dim);
}

/* ─── GALLERY ─────────────────────────────── */
.gallery {
  padding: 6rem 4rem;
  background: var(--off);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
}
.ph { overflow: hidden; border-radius: 4px; }
.ph:first-child { grid-row: 1 / 3; }
.ph img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.ph img:hover { transform: scale(1.04); }

/* ─── VISIT ───────────────────────────────── */
.visit {
  background: var(--dark);
  color: var(--white);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.visit__left { display: flex; flex-direction: column; gap: 1.8rem; }
.visit__left h2 {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.visit__left h2 em { font-style: italic; font-weight: 400; color: var(--brand); }
.visit__left p {
  font-size: .96rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 40ch;
}
.visit__left .eyebrow { color: var(--brand); }
.call-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: 4px;
  width: fit-content;
  transition: background .2s, transform .2s;
}
.call-btn:hover { background: var(--brand-l); transform: translateY(-2px); }
.hours-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: .86rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.45); }
.hours-row .time { color: var(--white); font-weight: 600; }
.hours-row.closed .time { color: rgba(255,255,255,0.25); font-weight: 400; }

/* ─── FOOTER ──────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.3);
  padding: 1.4rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer a { color: rgba(255,255,255,0.3); text-decoration: none; }

/* ─── REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  #hdr { padding: 1rem 2rem; }
  #hdr.scrolled { padding: .75rem 2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 4rem 2rem; }
  .hero__right { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .services { padding: 5rem 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { padding: 5rem 2rem; }
  .visit { padding: 5rem 2rem; grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  #hdr { padding: .9rem 1.2rem; }
  nav a:not(.nav-call) { display: none; }
  .nav-call { padding: .45rem 1rem; font-size: .68rem; }
  .hero__left { padding: 3rem 1.5rem; gap: 1.6rem; }
  .hero__title { font-size: 2.2rem; }
  .stat-item { flex: 1 1 100%; }
  .services { padding: 4rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery { padding: 4rem 1.5rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }
  .ph:first-child { grid-row: auto; }
  .visit { padding: 4rem 1.5rem; }
  .footer { padding: 1.2rem 1.5rem; flex-direction: column; gap: .3rem; text-align: center; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 1.9rem; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ph { height: 55vw; }
}
