/* ============================================================
   Cuts by Rachael — Vermont hair studio
   Warm, friendly, earthy. Forest green + terracotta on cream.
   ============================================================ */

:root {
  --cream:      #f7f1e6;
  --cream-2:    #efe6d4;
  --ink:        #2c2a24;
  --ink-soft:   #57534a;
  --green:      #3d5a45;
  --green-deep: #2c4433;
  --rust:       #c26a41;
  --rust-deep:  #a8542f;
  --line:       #e0d5bf;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1080px;
  --r:    16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 0.9rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  border: 1.5px solid var(--green);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.02rem; }
.btn--sm { padding: 0.5rem 1.05rem; font-size: 0.85rem; }
.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green);
}
.btn--ghost:hover { background: rgba(61,90,69,.08); border-color: var(--green-deep); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(247,241,230,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--green-deep);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.8rem);
}
.nav__links a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); }
.nav__links a:hover { color: var(--ink); }
.nav__links .btn { color: var(--cream); }
.nav__links a:nth-child(1),
.nav__links a:nth-child(2),
.nav__links a:nth-child(3) { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3.5rem, 10vw, 7rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(194,106,65,.12), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(61,90,69,.10), transparent 55%);
}
.hero__inner { max-width: var(--wrap); margin: 0 auto; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  margin: 0 0 1.2rem;
  color: var(--green-deep);
}
.hero__lede {
  max-width: 34ch;
  font-size: clamp(1.08rem, 2.3vw, 1.3rem);
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__note { margin: 1.2rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }
.hero__note a { color: var(--rust-deep); font-weight: 600; }

/* ---------- Sections ---------- */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}
.section__head { max-width: 46ch; margin-bottom: 2.6rem; }
.section__head h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--green-deep); }
.section__sub { color: var(--ink-soft); margin-top: 0.9rem; }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
}
.service__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service h3 { font-size: 1.3rem; }
.service p { margin: 0.6rem 0 0; color: var(--ink-soft); font-size: 0.96rem; }
.price {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--rust-deep);
  font-size: 1.15rem;
  white-space: nowrap;
}
.services__foot { margin-top: 1.6rem; color: var(--ink-soft); }
.services__foot a { color: var(--rust-deep); font-weight: 600; }

/* ---------- About ---------- */
.section--about { background: var(--cream-2); max-width: none; }
.about {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
.about__body h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--green-deep); margin-bottom: 1rem; }
.about__body p { color: var(--ink-soft); margin: 0 0 1rem; }
.link-arrow { font-weight: 600; color: var(--rust-deep); text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

/* ---------- Placeholders ---------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-2), #e6dcc6);
  border: 1px dashed var(--line);
  border-radius: var(--r);
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.ph--sq { aspect-ratio: 1; }
.ph--portrait { aspect-ratio: 4/5; }

/* ---------- Visit ---------- */
.section--visit { background: var(--green-deep); max-width: none; color: var(--cream); }
.visit { max-width: var(--wrap); margin: 0 auto; }
.visit .eyebrow { color: #e8a97f; }
.visit h2 { color: var(--cream); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.8rem; }
.visit .btn--ghost { color: var(--cream); border-color: rgba(247,241,230,.5); }
.visit .btn--ghost:hover { background: rgba(247,241,230,.12); border-color: var(--cream); }
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 2.2rem;
}
.info dt { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #e8a97f; margin-bottom: 0.4rem; }
.info dd { margin: 0; color: rgba(247,241,230,.9); }
.info a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 2.5rem;
  background: var(--green);
  color: var(--cream);
}
.footer__brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin: 0 0 0.3rem; }
.footer__tag { margin: 0 0 1.2rem; color: rgba(247,241,230,.75); }
.footer__meta { margin: 0 0 1.4rem; }
.footer__meta a { color: var(--cream); font-weight: 600; text-decoration: none; }
.footer__meta a:hover { text-decoration: underline; }
.footer__fine { margin: 0; font-size: 0.8rem; color: rgba(247,241,230,.55); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .info { grid-template-columns: 1fr; gap: 1.2rem; }
}
