:root {
  --bg: #f6f0e8;
  --surface: #fffdf8;
  --text: #111111;
  --muted: #5c5449;
  --gold: #b68a42;
  --shadow: rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand p,
.hero-text,
.section-content p,
.vision-card p,
.footer-inner p {
  color: var(--muted);
  max-width: 780px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 5rem 0 6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 760px;
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero h1,
.section-header h2,
.vision-card h2,
.product-grid h3,
.quality-grid h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 1rem 0 1.25rem;
}

.hero-text {
  font-size: 1.05rem;
  margin: 0;
}

.hero-actions {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
}

.button-primary {
  background: var(--text);
  color: #fff;
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 253, 248, 0.72);
}

.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 760px;
}

.section-header h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
  margin: 1rem 0 0;
}

.product-grid,
.quality-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

.product-grid article,
.quality-grid article {
  padding: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
}

.product-grid img,
.quality-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-grid h3,
.quality-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.product-grid p,
.quality-grid p {
  margin: 0;
  font-size: 1rem;
}

.section-alt {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 0;
}

.vision-card {
  max-width: 780px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 2rem;
  padding: 3rem;
  margin: 0 auto;
}

.vision-card h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
  text-align: center;
}

.vision-card p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  text-align: center;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
