@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #f7f2ea;
  --warm: #fffdf8;
  --sand: #e8ded1;
  --sage: #ccd4c2;
  --sage-deep: #6c7563;
  --olive: #8f8e72;
  --ink: #24231f;
  --muted: #706a60;
  --line: rgba(36, 35, 31, 0.13);
  --shadow: 0 26px 70px rgba(36, 35, 31, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-size: 1.65rem;
}

.brand small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

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

.nav-button {
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.75rem;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(44px, 7vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(3.65rem, 8.3vw, 7.9rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.75rem, 5.2vw, 5.2rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.dark {
  background: var(--ink);
  color: var(--warm);
}

.button.dark:hover {
  background: transparent;
  color: var(--ink);
}

.button.light {
  background: transparent;
  color: var(--ink);
}

.button.light:hover {
  background: var(--ink);
  color: var(--warm);
}

.trust-bar {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-bar span {
  background: var(--cream);
  color: var(--sage-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  padding: 38px 38px 38px 0;
  display: flex;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 90px;
}

.hero-card {
  position: absolute;
  left: -58px;
  bottom: 84px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  border-radius: 24px;
  max-width: 270px;
}

.hero-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.87rem;
}

.intro-band {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.78);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--warm);
}

.intro-grid div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.intro-grid span {
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 800;
}

.section {
  padding: 112px 0;
}

.about {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 82px;
  align-items: center;
}

.about-image-wrap img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 999px 999px 32px 32px;
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
  max-width: 700px;
}

.about-copy .large {
  color: var(--ink);
  font-size: 1.1rem;
}

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

.story-panel {
  min-height: 340px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.story-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 35, 31, 0.28);
  z-index: -1;
}

.story-panel span {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.035em;
}

.story-one {
  background: linear-gradient(rgba(36,35,31,0.12), rgba(36,35,31,0.12)), url('assets/nazila-garden.jpg') center/cover;
}

.story-two {
  background: linear-gradient(rgba(36,35,31,0.12), rgba(36,35,31,0.12)), url('assets/vegetable-flatlay.jpg') center/cover;
}

.story-three {
  background: linear-gradient(rgba(36,35,31,0.12), rgba(36,35,31,0.12)), url('assets/cabbage-prep.jpg') center/cover;
}

.soft {
  background: var(--sand);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.split {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: end;
}

.section-header.split p:last-child,
.section-header.centered {
  color: var(--muted);
}

.section-header.centered {
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s ease;
}

.service-card:hover {
  background: var(--warm);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(36, 35, 31, 0.08);
}

.service-card.featured {
  background: #d5dbc9;
}

.service-card span {
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: auto;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.specialty {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 78px;
  align-items: center;
}

.specialty-copy p {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list li:before {
  content: "✓";
  color: var(--sage-deep);
  margin-right: 12px;
}

.specialty-visual img {
  min-height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method {
  background: var(--sage);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.method-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 22px;
}

.supports-card {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.supports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.supports-list span {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--sage-deep);
  font-size: 0.82rem;
}

.quote-section {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.quote-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 35, 31, 0.38);
}

.quote-overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  width: min(900px, calc(100% - 40px));
}

.quote-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.journal-card {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(36, 35, 31, 0.07);
}

.journal-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.journal-card div {
  padding: 24px;
}

.journal-card h3 {
  font-size: 1.75rem;
}

.tag {
  font-size: 0.68rem;
  margin-bottom: 8px;
}

.favorites-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 62px;
  align-items: center;
}

.favorites-grid p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.mini-list span {
  min-height: 110px;
  padding: 24px;
  background: var(--warm);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.booking-copy p {
  color: var(--muted);
}

.pricing-card {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.08;
}

.price-row strong {
  white-space: nowrap;
  font-size: 1rem;
}

.testimonial-section {
  padding: 86px 0;
  background: var(--ink);
  color: var(--warm);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 64px;
  align-items: center;
}

blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.testimonial-grid p {
  color: rgba(255, 253, 248, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
}

.contact p {
  color: var(--muted);
}

.contact-details {
  margin-top: 28px;
}

.contact-form {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  color: var(--sage-deep);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 24px;
}

input,
textarea {
  width: 100%;
  display: block;
  margin-top: 9px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 13px 0;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--ink);
}

textarea {
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
  display: block;
  margin-top: 18px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 253, 248, 0.7);
  padding: 48px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  padding-bottom: 28px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--warm);
  font-size: 2rem;
  line-height: 1;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-note {
  padding-top: 20px;
  font-size: 0.82rem;
}

.footer p {
  margin: 8px 0 0;
}

.service-page {
  background: var(--cream);
}

.inner-hero {
  padding: 116px 0 76px;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.inner-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 60px;
  align-items: end;
}

.inner-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.inner-content {
  padding: 88px 0;
}

.inner-card {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}

.inner-card ul {
  color: var(--muted);
}

.back-link {
  color: var(--sage-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

@media (max-width: 1040px) {
  .hero,
  .about,
  .section-header.split,
  .specialty,
  .method-grid,
  .favorites-grid,
  .booking,
  .testimonial-grid,
  .contact,
  .inner-hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 0 24px 44px;
    min-height: auto;
  }

  .hero-visual img {
    border-radius: 40px;
    min-height: 520px;
  }

  .hero-card {
    left: 54px;
    bottom: 74px;
  }

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

  .intro-grid div {
    justify-content: flex-start;
  }

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

  .image-story {
    grid-template-columns: 1fr;
  }

  .story-panel {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: var(--warm);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy {
    padding: 58px 24px;
  }

  .hero-visual img {
    min-height: 430px;
  }

  .hero-card {
    left: 42px;
    right: 42px;
    bottom: 64px;
    max-width: none;
  }

  .section {
    padding: 78px 0;
  }

  .about {
    gap: 42px;
  }

  .about-image-wrap img,
  .specialty-visual img {
    min-height: 430px;
  }

  .service-grid,
  .journal-grid,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .quote-section {
    min-height: 420px;
  }

  .price-row {
    display: block;
  }

  .price-row strong {
    display: block;
    margin-top: 8px;
  }

  .footer-grid {
    display: block;
  }

  .footer-links {
    margin-top: 24px;
  }

  .inner-hero {
    padding: 78px 0 56px;
  }
}
