:root {
  --background: #fbf8f3;
  --background-soft: #f1eadf;
  --background-dark: #302a25;
  --card: #ffffff;
  --text: #332d28;
  --text-soft: #776e66;
  --sage: #8a9780;
  --sage-dark: #65715f;
  --border: rgba(51, 45, 40, 0.12);
  --shadow: 0 20px 60px rgba(48, 42, 37, 0.1);
  --radius-large: 30px;
  --radius-medium: 20px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.narrow {
  max-width: 850px;
}

.announcement {
  background: var(--background-dark);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(18px);
}

.navigation {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-menu a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.desktop-menu a:hover {
  color: var(--text);
}

.header-button {
  padding: 12px 20px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-button:hover {
  background: var(--text);
  color: white;
}

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

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 30px;
  background: var(--background);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  border: 0;
  background: transparent;
  font-size: 34px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 70px;
}

.mobile-menu-links a {
  font-family: Georgia, serif;
  font-size: 36px;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: var(--background-soft);
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 90px max(6vw, 40px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.editorial-copy h2,
.newsletter h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 105px);
  line-height: 0.95;
}

.hero-description {
  max-width: 580px;
  margin-top: 30px;
  color: var(--text-soft);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

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

.button-dark {
  background: var(--text);
  color: white;
}

.button-light {
  background: transparent;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 35px;
  color: var(--text-soft);
  font-size: 13px;
}

.hero-image {
  min-height: 600px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 110px 0;
}

.intro {
  text-align: center;
}

.section h2,
.editorial-copy h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
}

.large-text {
  margin: 30px auto 0;
  color: var(--text-soft);
  font-size: 20px;
}

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

.section-heading p {
  max-width: 420px;
  color: var(--text-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-large);
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.72));
  color: white;
}

.category-overlay span {
  font-size: 12px;
  letter-spacing: 0.15em;
}

.category-overlay h3 {
  margin: 8px 0 4px;
  font-family: Georgia, serif;
  font-size: 30px;
}

.category-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.featured-section {
  background: #f4eee5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--card);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-content {
  padding: 22px;
}

.product-category,
.article-content span {
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-content h3,
.article-content h3 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.15;
}

.product-content p {
  color: var(--text-soft);
}

.product-link,
.text-link,
.article-content a {
  font-weight: 800;
}

.editorial-section {
  padding: 110px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.editorial-image img {
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.editorial-copy p {
  margin: 26px 0;
  color: var(--text-soft);
  font-size: 18px;
}

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

.article-card {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: white;
  box-shadow: var(--shadow);
}

.article-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-content {
  padding: 24px;
}

.newsletter {
  margin-bottom: 100px;
}

.newsletter-inner {
  padding: 90px 30px;
  border-radius: var(--radius-large);
  background: var(--background-dark);
  color: white;
  text-align: center;
}

.light-eyebrow {
  color: #cdd6c8;
}

.newsletter-inner p {
  max-width: 650px;
  margin: 24px auto;
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  display: flex;
  width: min(620px, 100%);
  margin: 30px auto 15px;
  padding: 7px;
  border-radius: 999px;
  background: white;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  outline: 0;
}

.newsletter-form button {
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--sage);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
}

.footer {
  padding: 70px 0 30px;
  background: #e9e0d4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-grid h4 {
  margin-top: 0;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: var(--text-soft);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
}

.footer-bottom p {
  max-width: 600px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1000px) {
  .desktop-menu,
  .desktop-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero-image {
    order: -1;
    min-height: 520px;
  }

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

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

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

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-content {
    padding: 65px 24px;
  }

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

  .section {
    padding: 80px 0;
  }

  .section-heading {
    display: block;
  }

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

  .category-card {
    min-height: 420px;
  }

  .editorial-image img {
    min-height: 450px;
  }

  .newsletter-form {
    display: block;
    padding: 10px;
    border-radius: 24px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

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

  .footer-bottom {
    display: block;
  }

  .hero-trust {
    display: grid;
  }
}
.footer{
    background:#111;
    color:#fff;
    padding:50px 20px;
    margin-top:80px;
    text-align:center;
}

.footer h3{
    margin-bottom:15px;
    font-size:28px;
}

.footer p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:30px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-links a:hover{
    text-decoration:underline;
}

.copyright{
    opacity:.7;
    font-size:14px;
}
