:root {
  --cream: #fff9ed;
  --paper: #fffdf7;
  --orange: #ef6c32;
  --orange-dark: #bc431f;
  --yellow: #f8bc3b;
  --green: #2f684b;
  --green-light: #dcebd6;
  --ink: #27221d;
  --muted: #746a60;
  --line: #eadfce;
  --shadow: 0 22px 55px rgba(86, 59, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(24px, 6vw, 96px);
  background: rgba(255, 249, 237, 0.92);
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-words {
  line-height: 0.78;
  text-align: center;
}

.logo-leaves {
  color: #7b8f29;
  font-size: 2rem;
  line-height: 1;
  transform: rotate(-15deg);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 600;
}

.navigation a:hover {
  color: var(--orange-dark);
}

.navigation .nav-cta {
  padding: 10px 17px;
  color: white;
  background: var(--green);
  border-radius: 99px;
}

.menu-button {
  display: none;
  width: 42px;
  padding: 8px;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  padding: clamp(60px, 9vw, 130px) clamp(24px, 8vw, 130px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6.5vw, 6.8rem);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--orange);
  font-weight: 600;
}

.hero-text {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 36px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 99px;
  font-weight: 700;
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(239, 108, 50, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.text-link {
  font-weight: 700;
}

.text-link span,
.product-content a span {
  color: var(--orange);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.hero-note strong {
  color: var(--ink);
}

.note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--orange);
  background: #ffe5d3;
  border-radius: 50%;
}

.hero-art {
  position: relative;
  min-height: 570px;
}

.hero-image-frame {
  height: 570px;
  overflow: hidden;
  background: #f7f4ed;
  border: 12px solid white;
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-stamp {
  position: absolute;
  right: -25px;
  bottom: 40px;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: var(--green);
  background: #f4eaa6;
  border: 2px solid var(--green);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transform: rotate(7deg);
}

.section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px);
}

.products {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 35px rgba(86, 59, 31, 0.07);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
}

.product-card-orange .product-visual {
  background: #eae7c2;
}

.product-card-green .product-visual {
  background: var(--green-light);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-content {
  padding: 32px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.product-content > p:not(.product-kicker) {
  min-height: 104px;
  margin: 0 0 22px;
  color: var(--muted);
}

.product-content a {
  font-weight: 700;
}

.product-facts {
  display: grid;
  margin: 0 0 25px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.product-facts li {
  padding: 12px;
  background: var(--cream);
  border-radius: 12px;
}

.product-facts strong,
.product-facts span {
  display: block;
}

.product-facts span {
  color: var(--muted);
  font-size: 0.8rem;
}

.about {
  background: var(--green);
}

.about-card {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  border-radius: 30px;
  grid-template-columns: 0.8fr 1.2fr;
  box-shadow: var(--shadow);
}

.about-decoration {
  min-height: 520px;
  overflow: hidden;
  background: #e6e7c7;
}

.about-decoration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.about-copy {
  padding: clamp(40px, 7vw, 90px);
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

blockquote {
  margin: 28px 0 0;
  padding: 18px 0 18px 22px;
  color: var(--green);
  border-left: 3px solid var(--yellow);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

blockquote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.values div {
  padding-top: 18px;
  border-top: 2px solid var(--yellow);
}

.values strong,
.values span {
  display: block;
}

.values span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.contact-copy > p:last-child {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(86, 59, 31, 0.06);
}

.contact-card:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px clamp(24px, 8vw, 130px);
  color: #d9dfd4;
  background: #1f4935;
  font-size: 0.8rem;
}

.footer-logo {
  color: white;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .navigation {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .navigation.open {
    display: flex;
  }

  .navigation .nav-cta {
    text-align: center;
  }

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

  .hero-art {
    min-height: 520px;
  }

  .hero-image-frame {
    height: 520px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-decoration {
    min-height: 350px;
  }

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

@media (max-width: 650px) {
  .site-header {
    padding: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-image-frame {
    height: 420px;
    border-width: 8px;
  }

  .hero-stamp {
    right: -5px;
    bottom: -25px;
    width: 95px;
    height: 95px;
    font-size: 0.9rem;
  }

  .product-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .product-content > p:not(.product-kicker) {
    min-height: auto;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card {
    font-size: 0.88rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .contact-card {
    transition: 180ms ease;
  }

}
