@charset "UTF-8";
/* ============================================
   Kimberly Flear — Design System
   Boho-minimal, warm & grounded (Midsummer-inspired)
   ============================================ */

:root {
  /* Palette */
  --cream: #faf5ec;
  --cream-deep: #f1e6d3;
  --white: #fffdfa;
  --terracotta: #c1704d;
  --terracotta-deep: #a35a3a;
  --sage: #93a184;
  --sage-deep: #71805f;
  --gold: #c9a24e;
  --charcoal: #3a342c;
  --charcoal-soft: #6b6255;
  --forest: #08301b; /* official monogram color */

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout — flatter, more architectural than a rounded "SaaS" default */
  --container: 1180px;
  --radius: 3px;
  --radius-lg: 4px;
  --shadow-soft: 0 16px 34px -26px rgba(58, 52, 44, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle film-grain texture so photo sections read as analog, not stock-clean */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 140px 140px;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--terracotta-deep);
  margin-bottom: 1.1em;
}

.lede {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  max-width: 640px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 6vw;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section--cream {
  background: var(--cream);
}

.section--deep {
  background: var(--cream-deep);
}

.section--sage {
  background: var(--sage);
  color: var(--white);
}

.section--sage h2,
.section--sage h3,
.section--sage .eyebrow {
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--cream);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head .lede {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 2.2em;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.3s ease 0.05s, border-color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary::before {
  background: var(--terracotta-deep);
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline::before {
  background: var(--charcoal);
}

.btn-outline:hover {
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.section--sage .btn-outline::before,
.section--charcoal .btn-outline::before {
  background: var(--white);
}

.section--sage .btn-outline:hover,
.section--charcoal .btn-outline:hover {
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 0.2em;
  border-bottom: 1px solid rgba(58, 52, 44, 0.35);
  transition: border-color 0.25s ease, gap 0.25s ease;
}

.link-arrow::after {
  content: "\2192";
}

.link-arrow:hover {
  gap: 0.75em;
  border-bottom-color: currentColor;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 52, 44, 0.08);
  transition: box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 32px -24px rgba(58, 52, 44, 0.45);
}

.site-header.is-scrolled .nav {
  padding: 0.85rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: padding 0.4s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 1.1em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nav-logo-mark {
  height: 22px;
  width: auto;
}

.nav-logo span {
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 0.7em 1.6em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 25%;
  will-change: transform;
}

/* About page portrait needs a lower crop window to keep the subject centered, not headroom */
.hero--simple .hero-media img {
  object-position: center 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Steeper, earlier-starting scrim — guarantees AA contrast right where the text block begins */
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.04) 0%, rgba(15, 13, 11, 0.1) 32%, rgba(15, 13, 11, 0.68) 50%, rgba(15, 13, 11, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 0 0 clamp(3rem, 7vw, 5rem);
  text-shadow: 0 2px 20px rgba(8, 7, 5, 0.4);
}

.hero-content .eyebrow {
  color: var(--cream);
}

.hero-content h1 {
  color: var(--white);
}

.hero-content .lede {
  color: rgba(255, 253, 250, 0.95);
}

.hero-content .btn-row {
  align-items: center;
}

.hero-content .link-arrow {
  color: var(--cream);
  border-bottom: 1px solid rgba(250, 245, 236, 0.45);
}

.hero-content .link-arrow:hover {
  border-bottom-color: var(--cream);
}

.hero--simple {
  min-height: 62vh;
}

.hero--simple .hero-content {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* ---------- Page intro (no photo hero) ---------- */
.page-intro {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}

/* ---------- Grid / Cards ---------- */
.grid {
  display: grid;
  gap: 2.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  border: 1px solid rgba(58, 52, 44, 0.12);
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 0.3em;
}

.card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--terracotta);
  margin: 0.2em 0 0.6em;
}

.card .price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.card ul {
  list-style: none;
  margin: 1.2em 0;
  padding: 0;
  flex-grow: 1;
}

.card ul li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.6em;
  color: var(--charcoal-soft);
}

.card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8em;
}

.card--featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.card--featured h3,
.card--featured .price {
  color: var(--cream);
}

.card--featured .price {
  color: var(--gold);
}

.card--featured ul li {
  color: rgba(250, 245, 236, 0.8);
}

/* ---------- Qualities / checklist ---------- */
.qualities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}

.qualities li {
  position: relative;
  padding-left: 1.8em;
}

.qualities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- Split / image-text layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius);
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media--circle img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 0%;
}

.split-media--circle {
  border-radius: 50%;
}

.credentials-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(58, 52, 44, 0.12);
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}

.credentials-note strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-strip img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-strip li:nth-child(2n) img {
  aspect-ratio: 4 / 5;
}

.photo-strip {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem;
  border: 1px solid rgba(58, 52, 44, 0.12);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  margin: 0 0 1em;
  color: var(--charcoal);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(58, 52, 44, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--charcoal);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  transition: transform 0.3s ease;
}

.faq-question .icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-question .icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.open .faq-question .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--charcoal-soft);
}

.faq-answer-inner {
  padding-bottom: 1.6rem;
  max-width: 680px;
}

/* ---------- Newsletter / CTA band ---------- */
.cta-band {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
}

.cta-band .lede {
  margin: 0 auto 1.6rem;
}

.form-inline {
  display: flex;
  gap: 0.8rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.form-inline input[type="email"] {
  flex: 1 1 260px;
  padding: 0.9em 1.2em;
  border-radius: 2px;
  border: 1px solid rgba(58, 52, 44, 0.25);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 245, 236, 0.85);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 245, 236, 0.15);
}

.footer-grid h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.1em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.85);
  margin-bottom: 0.9em;
}

.footer-logo-mark {
  height: 28px;
  width: auto;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7em;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(250, 245, 236, 0.55);
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ---------- Marquee ticker ---------- */
.marquee {
  overflow: hidden;
  background: var(--sage-deep);
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}

.marquee-track span::after {
  content: "\2733";
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Hero curve divider ---------- */
.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}

/* ---------- Scroll reveal ---------- */
.reveal-target {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.grid > *:nth-child(1) { --reveal-delay: 0s; }
.grid > *:nth-child(2) { --reveal-delay: 0.12s; }
.grid > *:nth-child(3) { --reveal-delay: 0.24s; }
.grid > *:nth-child(4) { --reveal-delay: 0.36s; }
.grid > *:nth-child(5) { --reveal-delay: 0.48s; }
.grid > *:nth-child(6) { --reveal-delay: 0.6s; }

.split > *:nth-child(2) { --reveal-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-target {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Refined hover lift — subtle, no shadow-pop */
/* Includes opacity so it doesn't clobber .reveal-target's transition (later rule wins the whole shorthand) */
.card,
.testimonial {
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.card:hover,
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 52, 44, 0.28);
}

.split-media img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-media:hover img {
  transform: scale(1.03);
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 3rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .card--featured {
    transform: none;
  }

  .qualities {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 3rem;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 45px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
    z-index: 200;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
