/* North & True — main stylesheet
   Palette: forest green / oat cream / warm terracotta accent
*/

:root {
  --green: #2f5d50;
  --green-dark: #234539;
  --green-soft: #e8efe9;
  --cream: #faf6ef;
  --cream-deep: #f0e8d8;
  --terracotta: #d97844;
  --terracotta-deep: #b85f30;
  --ink: #1a1a1a;
  --ink-soft: #5b5b5b;
  --line: #e3dccb;
  --shadow: 0 6px 24px rgba(26, 26, 26, 0.06);
  --radius: 14px;
  --max: 1100px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Pinyon Script', 'Allura', cursive;
}

* { 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;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
}
h2 { letter-spacing: 0.08em; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); }
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em 0; color: var(--ink-soft); }

a { color: var(--green); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────── */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 241, 231, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand .brand-mark { width: 120px; height: 60px; object-fit: contain; }
.brand { gap: 14px; font-size: 1.5rem; letter-spacing: 0.08em; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}
.nav-links a { color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--green-dark); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero.hero-centered {
  display: block;
  text-align: center;
  padding: 70px 24px 60px;
  max-width: 720px;
}
.hero-logo {
  width: 380px;
  max-width: 80%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.04));
}
.hero.hero-centered .chips { justify-content: center; }
.hero.hero-centered .hero-img { max-width: 100%; margin-left: auto; margin-right: auto; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0 auto 30px;
  max-width: 520px;
}
.hero.hero-centered h1 { margin-left: auto; margin-right: auto; max-width: 640px; }
.hero.hero-centered .chips { margin-top: 24px; }
.hero-img {
  aspect-ratio: 4/5;
  background: var(--green-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--green);
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.5;
  padding: 20px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  background: var(--terracotta);
  color: white;
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(217, 120, 68, 0.25);
  text-decoration: none;
}
.btn:hover { background: var(--terracotta-deep, #b85d2f); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217, 120, 68, 0.35); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; padding: 40px 0 60px; gap: 30px; }
}

/* ── Sections ────────────────────────────────────────── */
section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}
section.alt { background: var(--cream-deep); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.portrait {
  aspect-ratio: 1/1;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--terracotta);
  opacity: 0.6;
  font-style: italic;
  font-family: var(--serif);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.value h3 { color: var(--green-dark); margin-bottom: 6px; font-size: 1.1rem; }
.value p { font-size: 0.95rem; margin: 0; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .values { grid-template-columns: 1fr; gap: 18px; }
}

/* ── Services ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terracotta);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.service-card .duration {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 500;
  white-space: nowrap;
}
.service-card p { margin: 0; }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-tile {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green-dark);
  font-style: italic;
  line-height: 1.4;
}
.testimonial cite {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--terracotta);
  transition: transform 0.2s;
  font-family: var(--sans);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; }

/* ── Contact ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info p { font-size: 1.05rem; }
.contact-info .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 4px;
}
.contact-info .label:first-child { margin-top: 0; }

form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
}
.field input, .field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(217, 120, 68, 0.12);
}
form .btn { justify-self: start; margin-top: 4px; }
.field textarea { resize: vertical; min-height: 110px; }
.booking-note {
  margin-top: 20px;
  padding: 16px;
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--green-dark);
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 50px 0 30px;
  text-align: center;
}
footer a { color: var(--cream); opacity: 0.85; }
footer .footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
footer .footer-meta { font-size: 0.85rem; opacity: 0.7; margin-top: 18px; }

/* ── Service-area chips ──────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--green-dark);
}

/* ── Submitted form state ────────────────────────────── */
.form-success {
  padding: 24px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  color: var(--green-dark);
}
.form-success h3 { margin: 0 0 8px; }
