:root {
  --bg: #f8f5f0;
  --bg-soft: #f2ede6;
  --surface: #ffffff;
  --surface-dark: #302823;
  --text: #2d2a27;
  --muted: #6f675f;
  --border: #e6ddd3;
  --shadow: 0 24px 60px rgba(75, 60, 45, 0.10);
  --radius: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 221, 211, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a,
.footer-links a {
  position: relative;
  font-size: 0.98rem;
}

.site-nav a::after,
.footer-links a::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.inline-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s ease;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.95), rgba(248,245,240,0.92), rgba(230,221,211,0.75));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a7f74;
}

.eyebrow-dark {
  color: #c7bdb5;
}

.hero h1,
.section-title,
.value-grid h2,
.portfolio-copy h3,
.content-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 14ch;
}

.hero-text,
.section-text,
.content-card p,
.step-card p,
.portfolio-copy p,
.testimonial-attrib,
.contact-section .section-text {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 18px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #473c35;
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: #cabaa9;
}

.hero-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.visual-card,
.quote-card,
.content-card,
.step-card,
.portfolio-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card {
  background: var(--surface);
  padding: 1rem;
}

.visual-lg {
  min-height: 320px;
}

.visual-sm {
  min-height: 170px;
}

.offset {
  margin-top: 3rem;
}

.tone-warm {
  background: linear-gradient(135deg, #e9d7ca, #ccb4a2, #f6ede6);
}

.tone-sage {
  background: linear-gradient(135deg, #dde4d8, #bac9b3, #f2f5ef);
}

.tone-soft {
  background: linear-gradient(135deg, #e4d9d1, #beaba0, #f6f0eb);
}

.tone-portfolio-1 {
  background: linear-gradient(135deg, #dfd2c5, #c3af9f, #f5ece5);
}

.tone-portfolio-2 {
  background: linear-gradient(135deg, #ddd8e4, #b8b0cb, #f5f2fa);
}

.tone-portfolio-3 {
  background: linear-gradient(135deg, #d8dfda, #aec0b2, #eef5ef);
}

.quote-card {
  background: var(--surface-dark);
  color: #fff;
  padding: 2rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.2;
  margin: 1rem 0 0;
}

.value-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 2rem 0;
}

.value-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.value-grid p,
.portfolio-copy p,
.testimonial-attrib {
  margin: 0.35rem 0 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section {
  padding: 5rem 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  max-width: 16ch;
}

.section-text {
  max-width: 60ch;
  margin-top: 1.3rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.inline-link {
  position: relative;
  font-weight: 500;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
}

.content-card h3 {
  margin: 0;
  font-size: 2rem;
}

.content-card p {
  margin: 1rem 0 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.4rem;
  align-items: flex-start;
}

.step-card span {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.step-card p {
  margin: 0.55rem 0 0;
}

.portfolio-card {
  overflow: hidden;
  background: #fff;
}

.portfolio-image {
  min-height: 320px;
}

.portfolio-copy {
  padding: 1.5rem;
}

.portfolio-copy h3 {
  font-size: 2rem;
  margin: 0.4rem 0 0;
}

.testimonial-band {
  background: var(--surface-dark);
  color: #fff;
}

.testimonial-wrap {
  text-align: center;
  padding: 5rem 0;
}

.testimonial-wrap blockquote {
  margin: 0.5rem auto 0;
  max-width: 24ch;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.1;
}

.contact-section {
  text-align: center;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .process-grid,
  .three-up,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visuals {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visuals,
  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-visuals {
    display: grid;
  }

  .offset {
    margin-top: 0;
  }

  .quote-text {
    font-size: 1.65rem;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-sub {
    font-size: 0.85rem;
  }
}
