/* ===========================================================
   COLOR PALETTE — change these six lines to re-theme the whole site
   =========================================================== */
:root {
  --bg: #FAF6F0;         /* main background: warm ivory */
  --bg-alt: #F1E9DF;     /* alternating section background: deeper warm neutral */
  --text: #2B2723;       /* main text: warm charcoal */
  --text-soft: #6B6259;  /* secondary text: muted brown-gray */
  --accent: #AD5726;     /* terracotta accent */
  --line: #E2D8CB;       /* hairline borders / dividers */
}

/* ===========================================================
   RESET & BASE
   =========================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-narrow {
  max-width: 720px;
}

.center { text-align: center; }

/* ===========================================================
   SHARED TEXT STYLES
   =========================================================== */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.body-text {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* keep the text box itself centered (not just the text inside it)
   whenever body-text sits inside a .center wrap, e.g. Contact, Follow the Process */
.center .body-text {
  margin: 20px auto 32px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  height: 36px;
  width: auto;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--accent); }

/* hidden checkbox that drives the mobile menu open/closed state — no JS needed */
.nav-toggle {
  display: none;
}

/* hamburger icon: hidden on desktop, shown only in the mobile media query below */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.hero-inner h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin: 12px 0 20px;
}

.hero-tagline {
  color: var(--text-soft);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--text);
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-soft);
  font-size: 1.2rem;
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===========================================================
   SECTIONS (general)
   =========================================================== */
.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* ===========================================================
   PROCESS
   =========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-email {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin: 24px 0 16px;
  border-bottom: 1px solid var(--accent);
}

.contact-insta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-insta:hover { color: var(--accent); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 12px;
  mix-blend-mode: multiply;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 720px) {
  .hamburger {
    display: flex;
  }

  /* off-canvas dropdown panel, hidden until the checkbox above is checked */
  .site-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a { font-size: 0.85rem; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 80px 0; }
}
