:root {
  --bg: #dad2c2;
  --text: #2A2420;
  --jade: #4c5c42;
  --terracotta: #B35C3B;
  --sky: #4c788a;
  --sand: #392c24;

  --card: rgba(255,255,255,0.92);
  --cardBorder: rgba(0,0,0,0.08);
  --shadow: 0 18px 55px rgba(0,0,0,0.12);
  --shadowSoft: 0 10px 30px rgba(0,0,0,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
picture img { border-radius: 14px; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
p { color: rgba(42,36,32,0.85); }

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

.container {
  width: 92%;
  max-width: 1140px;
  margin: auto;
}

/* =============== HEADER / NAV =============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(57,44,36,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo { width: 70px; height: auto; }

.brand small {
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(218,210,194,0.85);
}

.brand strong {
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(218,210,194,0.98);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: rgba(218,210,194,0.95);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--jade);
  transition: width 0.25s ease;
}

.nav-links a:hover { opacity: 0.85; transform: translateY(-1px); }
.nav-links a:hover::after { width: 100%; }

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

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(76,92,66,0.95);
  color: white !important;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.nav-cta::after { display: none; }

/* =============== BUTTONS =============== */
.button-primary {
  background: var(--jade);
  color: white;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.button-primary:hover {
  background: #3f4d36;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.button-ghost {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,0.52); }

/* =============== SECTIONS / TITLES =============== */
.section { padding: 90px 0; }

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: 2.6rem;
  letter-spacing: -0.01em;
}

.section-title p {
  max-width: 520px;
  font-size: 1.02rem;
  color: rgba(42,36,32,0.78);
}

/* =============== HOME HERO =============== */
.hero-wrap { padding: 70px 0 30px; }

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

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(42,36,32,0.85);
  font-size: 0.9rem;
  width: fit-content;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(179,92,59,0.20);
}

.hero-text h1 {
  font-size: 4.4rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
}

.hero-text p {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(42,36,32,0.78);
  font-size: 0.92rem;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.28);
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -18px -18px 18px 18px;
  border-radius: 22px;
  background: rgba(76,120,138,0.18);
  z-index: 0;
}

.hero-image picture {
  position: relative;
  z-index: 1;
  display: block;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img { border-radius: 16px; }

/* =============== FEATURED PRODUCTS (home) =============== */
.featured {
  background: linear-gradient(180deg, rgba(57,44,36,1), rgba(57,44,36,0.97));
  color: var(--bg);
}

.featured .section-title h2 { color: var(--bg); }
.featured .section-title p { color: rgba(218,210,194,0.85); }

.products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 4;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}

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

.product-body { padding: 18px 18px 20px; color: var(--text); }
.product-body h3 { font-size: 1.35rem; margin-bottom: 6px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.price { color: var(--terracotta); font-weight: 600; }

.buy-mini {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(76,92,66,0.95);
  color: white;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.buy-mini:hover { transform: translateY(-1px); background: #3f4d36; }

/* =============== PAGE HERO (shop/about/gallery) =============== */
.page-hero { padding: 60px 0 18px; }
.page-hero h1 { font-size: 3.4rem; line-height: 1.05; margin-bottom: 10px; }
.page-hero p { max-width: 760px; color: rgba(42,36,32,0.80); }

/* =============== SHOP PAGE GRID =============== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.chip:hover { background: rgba(255,255,255,0.55); }

.shop-grid {
  padding: 20px 0 90px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.shop-card {
  grid-column: span 4;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,0.26); }

.shop-card .media { aspect-ratio: 4 / 3; overflow: hidden; }
.shop-card .media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .35s ease; }
.shop-card:hover .media img { transform: scale(1.04); }

.shop-card .body { padding: 18px 18px 20px; }
.shop-card .body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.shop-card .meta { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:12px; }

.buy {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(76,92,66,0.95);
  color: white;
  font-weight: 700;
}
.buy:hover { background: #3f4d36; }

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.35);
}

/* =============== ABOUT PAGE =============== */
.about-split {
  padding: 20px 0 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.card {
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 18px;
}

.card h2 { font-size: 2rem; margin-bottom: 10px; color: var(--jade); }

.rule {
  height: 3px;
  width: 80px;
  background: var(--sky);
  border-radius: 999px;
  margin: 14px 0 16px;
}

ul { padding-left: 18px; }
li { margin: 10px 0; color: rgba(42,36,32,0.85); }

.photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo img { border-radius: 0; }

/* =============== GALLERY PAGE =============== */
.gallery {
  padding: 20px 0 90px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.tile {
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(0,0,0,0.10);
}

.tile.wide { grid-column: span 8; }
.tile.tall .media { aspect-ratio: 3 / 4; }

.media { aspect-ratio: 4 / 3; overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .35s ease; }
.tile:hover .media img { transform: scale(1.03); }

.caption {
  padding: 12px 14px 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.caption strong { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.caption span { color: rgba(42,36,32,0.70); font-size: 0.92rem; }

/* =============== FOOTER =============== */
footer {
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 3.4rem; }
  .hero-image::before { inset: -14px -14px 14px 14px; }
  .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .products { gap: 14px; }
  .product-card { grid-column: span 12; }
  .shop-card { grid-column: span 12; }
  .tile, .tile.wide { grid-column: span 12; }
  .nav-links { gap: 18px; }
  .nav-cta { display: none; }
}

@media (max-width: 520px) {
  .hero-text h1 { font-size: 2.9rem; }
  .badge { font-size: 0.85rem; }
}
/* =============== EMAIL SIGNUP (shared on all pages) =============== */
.email-section {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255,255,255,0.20), transparent),
              linear-gradient(180deg, rgba(76,120,138,1), rgba(76,120,138,0.92));
  color: white;
}

.email-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.email-section h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.email-section p {
  color: rgba(255,255,255,0.88);
  max-width: 680px;
}

.form {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.form input {
  padding: 14px 16px;
  width: min(360px, 100%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  color: white;
  outline: none;
}

.form input::placeholder { color: rgba(255,255,255,0.75); }

.form button {
  padding: 14px 18px;
  background: rgba(76,92,66,0.95);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.form button:hover {
  transform: translateY(-2px);
  background: #3f4d36;
}

@media (max-width: 980px) {
  .email-inner { grid-template-columns: 1fr; }
  .form { justify-content: flex-start; }
}

.brand { text-decoration: none; }
.brand:hover { opacity: 0.8; }