:root {
  --color-cream: #fff8f0;
  --color-cream-2: #fbefe0;
  --color-crust: #e8c39e;
  --color-terracotta: #c9622d;
  --color-terracotta-dark: #a94f20;
  --color-choc: #4a2e1f;
  --color-choc-light: #6b4530;
  --color-text: #3a2a1e;
  --color-border: #e9d9c4;
  --font-heading: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-logo: "Space Grotesk", sans-serif;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(74, 46, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-choc);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-logo);
  color: var(--color-choc);
}

.logo-mark {
  flex-shrink: 0;
}

.logo-mark .logo-loaf,
.logo-mark .logo-scores {
  stroke: var(--color-choc);
}

.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-line1 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-choc);
  opacity: 0.75;
  margin-bottom: 3px;
}

.logo-line2 {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-terracotta);
}

.logo-arrow {
  flex-shrink: 0;
}

.logo-arrow path {
  stroke: var(--color-terracotta);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
}

.nav a {
  color: var(--color-choc-light);
}

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

.nav-cta {
  background: var(--color-terracotta);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-terracotta-dark);
  color: #fff !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-choc);
  display: block;
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-cream-2), var(--color-cream));
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 1em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-choc-light);
  max-width: 620px;
  margin: 0 auto 2em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--color-choc);
  color: var(--color-choc);
}

.btn-ghost:hover {
  background: var(--color-choc);
  color: #fff;
}

/* Value props */
.value-props {
  padding: 70px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* Section headings */
section h2 {
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--color-choc-light);
  max-width: 560px;
  margin: 0 auto 2.5em;
}

/* Services */
.services {
  padding: 70px 0;
  background: var(--color-cream-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border);
}

/* Work / case study */
.work {
  padding: 70px 0;
}

.case-study {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 1.5em 0;
}

.case-group h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-choc);
  margin: 0 0 0.6em;
}

.case-tag {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 0.5em;
}

.case-list {
  padding-left: 1.2em;
  margin: 1em 0;
}

.case-list li {
  margin-bottom: 6px;
}

.case-note {
  font-size: 0.85rem;
  color: var(--color-terracotta-dark);
  font-style: italic;
}

.case-study-visual {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.lara-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lara-lockup-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

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

.lara-lockup-name {
  font-family: "Bodoni Moda", ui-serif, Georgia, serif;
  font-weight: 900;
  font-size: 2rem;
  color: #c5473d;
  text-transform: uppercase;
}

.lara-lockup-sub {
  font-family: "Jost", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #c5473d;
  text-transform: uppercase;
  margin-top: 0.4em;
}

/* Process */
.process {
  padding: 70px 0;
  background: var(--color-cream-2);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.steps li {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Pricing */
.pricing {
  padding: 70px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-choc);
  font-weight: 700;
  margin-bottom: 0.2em;
}

.price-desc {
  color: var(--color-choc-light);
  font-size: 0.92rem;
}

.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  flex-grow: 1;
}

.price-list li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

/* Testimonial */
.testimonial {
  padding: 60px 0;
  background: var(--color-choc);
  color: var(--color-cream);
  text-align: center;
}

.testimonial blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
}

.testimonial cite {
  display: block;
  margin-top: 1em;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-crust);
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 1px;
}

.contact-form button {
  margin-top: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-terracotta-dark);
  font-style: italic;
  margin: 8px 0 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--color-choc-light);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

/* Responsive */
@media (max-width: 860px) {
  .case-study {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  color: #1f7a3d;
}

.form-error {
  color: #b3261e;
}

/* Legal pages */
.legal {
  padding: 56px 0 72px;
}

.legal-inner {
  max-width: 760px;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 1.8em 0 0.5em;
}

.legal ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.legal a {
  color: var(--color-terracotta-dark);
  text-decoration: underline;
}

.legal-updated {
  color: var(--color-choc-light);
  font-size: 0.9rem;
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--color-choc-light);
  margin: 4px 0 0;
}

.form-privacy a {
  text-decoration: underline;
}
