:root {
  --bg: #f7f3ee;
  --paper: #fbf8f3;
  --sand: #e6d8ca;
  --linen: #efe8df;
  --clay: #c3a07c;
  --mist: #d8e1e5;
  --sea: #a8bbc3;
  --ink: #534a43;
  --muted: #81786f;
  --border: rgba(83, 74, 67, 0.16);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(66, 54, 45, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
figure { margin: 0; }

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 238, 0.76);
  border-bottom: 1px solid rgba(83, 74, 67, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand,
.hero h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
}

.brand {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a:hover,
.text-link:hover { color: var(--ink); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  transition: 0.25s ease;
  font-size: 0.95rem;
}

.button.primary,
.nav-cta {
  background: var(--clay);
  color: var(--white);
}

.button.soft {
  background: rgba(255,255,255,0.8);
  color: var(--ink);
  border-color: rgba(83,74,67,0.12);
}

.button.primary:hover,
.nav-cta:hover,
.button.soft:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.hero {
  position: relative;
  min-height: 95svh;
  overflow: hidden;
}

.personal-hero {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f2ece4 0%, #f7f3ee 100%);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7) saturate(0.95);
}

.personal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(63,53,46,0.55) 0%, rgba(63,53,46,0.35) 38%, rgba(63,53,46,0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 860px;
  padding: 5rem 0;
}

.hero-personal-content {
  text-align: left;
}

.eyebrow,
.section-label,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin: 0.6rem 0 1rem;
  max-width: 760px;
}

.hero-copy {
  max-width: 700px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.section { padding: 6rem 0; }
.intro-band { padding: 5rem 0; }

.intro-grid,
.process-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.intro-text,
.text-panel {
  padding: 1rem 0.5rem;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.97;
  font-weight: 500;
  margin: 0.4rem 0 1rem;
}

h3 {
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 500;
  margin: 0.35rem 0 0.65rem;
}

.script {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: #8aa0aa;
  margin: 0 0 0.4rem;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.offer-list span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.service-note,
.section-subcopy {
  max-width: 720px;
  color: var(--muted);
}

.stacked-photo-pair {
  position: relative;
  min-height: 680px;
}

.image-card,
.photo-card,
.portfolio-item,
.contact-card,
.service-card,
.cta-inner {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.photo-card {
  overflow: hidden;
  background: var(--paper);
}

.photo-card img,
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-card {
  height: 560px;
  width: 78%;
  margin-left: auto;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 320px;
  border: 10px solid rgba(251,248,243,0.92);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 2rem;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--border);
}

.service-card p:last-child { margin-bottom: 0; }

.portfolio-flow {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(239,232,223,0.4));
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 300px 300px 320px;
  gap: 1rem;
}

.portfolio-item {
  overflow: hidden;
  background: var(--paper);
}

.large-left { grid-column: 1 / 2; grid-row: 1 / 3; }
.small-top { grid-column: 2 / 4; grid-row: 1 / 2; }
.small-bottom { grid-column: 2 / 4; grid-row: 2 / 3; }
.horizontal-wide { grid-column: 1 / 2; grid-row: 3 / 4; }
.medium-left { grid-column: 2 / 3; grid-row: 3 / 4; }
.medium-middle { grid-column: 3 / 4; grid-row: 3 / 4; }
.medium-right {
  display: none;
}

.process-layout {
  align-items: start;
}

.process-copy h2 {
  max-width: 700px;
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--linen);
  color: var(--ink);
  font-size: 0.84rem;
  letter-spacing: 0.15em;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-top: 0.1rem;
}

.process-side-images {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 98px;
}

.process-photo-a { height: 290px; }
.process-photo-b { height: 420px; }

.cta-banner { padding: 2rem 0 5rem; }

.cta-inner {
  background: linear-gradient(145deg, #f3ece5, #eee5da 60%, #dfe7ea 100%);
  border: 1px solid var(--border);
  padding: 3.5rem 2rem;
  text-align: center;
}

.contact-panel h2 {
  max-width: 760px;
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(83,74,67,0.12);
}

.text-link {
  display: inline-block;
  color: #7b958f;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(83,74,67,0.1);
  padding-top: 1rem;
}

@media (max-width: 1080px) {
  .services-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px 320px 320px;
  }

  .large-left { grid-column: 1 / 3; grid-row: 1 / 2; }
  .small-top { grid-column: 1 / 2; grid-row: 2 / 3; }
  .small-bottom { grid-column: 2 / 3; grid-row: 2 / 3; }
  .horizontal-wide { grid-column: 1 / 3; grid-row: 3 / 4; }
  .medium-left { grid-column: 1 / 2; grid-row: 4 / 5; }
  .medium-middle { grid-column: 2 / 3; grid-row: 4 / 5; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .intro-grid,
  .process-layout,
  .services-grid,
  .contact-cards,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .stacked-photo-pair {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .tall-card,
  .floating-card {
    position: static;
    width: 100%;
    height: 360px;
    margin: 0;
    border-width: 0;
  }

  .editorial-grid {
    grid-template-rows: repeat(6, 280px);
  }

  .large-left,
  .small-top,
  .small-bottom,
  .horizontal-wide,
  .medium-left,
  .medium-middle {
    grid-column: auto;
    grid-row: auto;
  }

  .process-side-images {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.2rem, 1180px); }
  .site-header { position: static; }
  .nav-wrap { min-height: 68px; }
  .brand { font-size: 1.18rem; }
  .nav-cta { display: none; }
  .hero { min-height: 82svh; }
  .hero h1 { font-size: 2.95rem; }
  .button, .nav-cta { width: 100%; }
  .hero-actions { flex-direction: column; }
  .section { padding: 4.4rem 0; }
  .intro-band { padding: 4rem 0; }
  .services-grid,
  .contact-cards,
  .process-side-images { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; }
  .service-card,
  .contact-card,
  .process-step,
  .cta-inner { border-radius: 24px; }
}
