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

:root {
  --bg: #FAF8F5;
  --white: #FFFFFF;
  --ink: #1F2430;
  --muted: #666666;
  --accent: #D8C3A5;
  --border: #ECE7DF;
  --button: #1F2430;
  --button-hover: #333843;
  --max-width: 1180px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  border-bottom: 1px solid rgba(236, 231, 223, 0.8);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: 0.04em;
}

.logo strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo span {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-icon {
  width: 19px;
  height: 19px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.search-icon svg { width: 19px; height: 19px; }

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  padding: 46px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 24px;
  color: #a68d6e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(52px, 8vw, 86px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 31px;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 435px;
  margin: 26px 0 32px;
  font-size: 16px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 27px;
  border: 1px solid var(--button);
  background: var(--button);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  transform: translateY(-1px);
}

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

.button.secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  min-height: 620px;
  background: var(--white);
  overflow: hidden;
}

.hero-image img,
.page-hero-image img,
.card-image img,
.article-card img,
.split-image img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 84px 0;
}

.section-kicker {
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

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

.section-heading p {
  max-width: 450px;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.category-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--white);
}

.category-card img {
  height: 100%;
  transition: transform 380ms ease;
}

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

.category-title {
  position: absolute;
  inset: auto 18px 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0,0,0,0.3);
}

.category-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  margin: 12px auto 0;
  background: currentColor;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card .image-wrap {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: var(--white);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9b7d59;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 28px;
  line-height: 1.04;
}

.article-card p {
  margin: 0;
  font-size: 14px;
}

.editor-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 34px;
}

.editor-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
}

.editor-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.editor-item h4 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.08;
}

.editor-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.quote-band {
  padding: 0;
}

.quote-inner {
  min-height: 250px;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(31, 36, 48, 0.34), rgba(31, 36, 48, 0.34)), url('../images/quote-still-life.svg') center/cover;
  color: var(--white);
  text-align: center;
}

.quote-inner blockquote {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 58px;
  background: var(--white);
  border: 1px solid var(--border);
}

.newsletter-box img {
  width: 100%;
  aspect-ratio: 1.35 / 0.75;
  object-fit: cover;
}

.newsletter-box h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.newsletter-form {
  display: flex;
  margin-top: 26px;
  border: 1px solid var(--border);
  background: var(--white);
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}

.newsletter-form input {
  min-height: 54px;
  padding: 0 18px;
}

.newsletter-form button {
  flex: 0 0 auto;
  border: 0;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 38px;
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-col h4 {
  margin: 0 0 17px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  padding: 72px 0 42px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.page-hero p {
  max-width: 530px;
  font-size: 17px;
}

.page-hero-image {
  height: 430px;
  overflow: hidden;
  background: var(--white);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.filter-row a {
  padding: 9px 15px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-row a.active,
.filter-row a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 54px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
}

.featured-image {
  height: 470px;
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  height: 520px;
  overflow: hidden;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 170px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
}

.value-card h3 {
  font-size: 30px;
}

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

.contact-form {
  display: grid;
  gap: 16px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
}

.field {
  border: 1px solid var(--border);
  padding: 15px 17px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.article-shell {
  width: min(100% - 40px, 790px);
  margin: 0 auto;
}

.article-header {
  padding: 74px 0 38px;
  text-align: center;
}

.article-header .article-meta {
  justify-content: center;
  margin-bottom: 18px;
}

.article-header p {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 18px;
}

.article-hero-img {
  width: min(100% - 40px, 1120px);
  height: 580px;
  margin: 0 auto 66px;
  overflow: hidden;
}

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

.toc,
.affiliate-callout,
.author-box {
  margin: 42px 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
}

.toc h2,
.affiliate-callout h2,
.author-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.05;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 17px;
}

.article-content ul {
  padding-left: 20px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.product-card {
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.product-card h3 {
  font-size: 24px;
}

.legal-page {
  padding: 74px 0;
}

.legal-page .article-shell {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Shop page */
.section-kicker.left {
  text-align: left;
  margin-bottom: 16px;
}

.shop-intro-section {
  padding-top: 34px;
}

.shop-disclosure {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
  padding: 38px 44px;
  background: var(--white);
  border: 1px solid var(--border);
}

.shop-disclosure h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.shop-disclosure p {
  margin: 0;
  font-size: 15px;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
}

.shop-card-image {
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: var(--bg);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.025);
}

.shop-card h3 {
  font-size: 31px;
  line-height: 1.02;
}

.shop-card p {
  margin: 0;
  font-size: 14px;
}

.shop-preview-section {
  padding-top: 20px;
}

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

.shop-preview-card {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
}

.shop-preview-card img {
  width: 125px;
  height: 125px;
  object-fit: cover;
}

.shop-preview-card span {
  display: block;
  margin-bottom: 9px;
  color: #9b7d59;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.shop-preview-card h3 {
  font-size: 26px;
  line-height: 1.04;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .mobile-toggle { display: block; }
  .search-icon { display: none; }

  .hero-grid,
  .page-hero-grid,
  .featured-layout,
  .split-section,
  .contact-grid,
  .newsletter-box,
  .shop-disclosure {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-image,
  .page-hero-image,
  .split-image,
  .featured-image,
  .article-hero-img {
    height: auto;
    min-height: auto;
    aspect-ratio: 1 / 1.08;
  }

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

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

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

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .nav-wrap { min-height: 72px; }
  .nav-links { inset: 72px 0 auto; }
  .logo strong { font-size: 24px; }
  .hero { padding-top: 28px; }
  section { padding: 58px 0; }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  .category-grid,
  .article-grid,
  .editor-list,
  .values-grid,
  .footer-grid,
  .product-row,
  .shop-grid,
  .shop-preview-grid {
    grid-template-columns: 1fr;
  }
  .category-card { min-height: 380px; }
  .section-heading { align-items: start; flex-direction: column; }
  .newsletter-box,
  .contact-form,
  .legal-page .article-shell,
  .featured-layout,
  .shop-disclosure { padding: 24px; }
  .newsletter-form { flex-direction: column; border: 0; gap: 12px; }
  .newsletter-form input { border: 1px solid var(--border); }
  .newsletter-form button { width: 100%; }
  .quote-inner { min-height: 280px; padding: 30px; }
  .page-hero { padding: 48px 0 22px; }
}

@media (max-width: 640px) {
  .shop-preview-card { grid-template-columns: 1fr; }
  .shop-preview-card img { width: 100%; height: auto; aspect-ratio: 1.2 / 1; }
}
