:root {
  --bg: #fdf9f4;
  --bg-alt: #f7f1ea;
  --bg-card: #ffffff;
  --accent: #c47435;
  --accent-soft: #f1c9a3;
  --accent-dark: #7c4a22;
  --text-main: #262321;
  --text-muted: #736b63;
  --border-soft: #e4d7c8;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #ffe9d2 0, #fdf9f4 35%, #fdf9f4 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-narrow {
  max-width: 640px;
}

.hero {
  padding: 6.4rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

/* HEADER / NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(253, 249, 244, 0.95);
  border-bottom: 1px solid rgba(228, 215, 200, 0.8);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b2515, #c47435);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-main);
}

/* Hero text */

.hero-copy h1 {
  margin: 0.8rem 0 1.3rem;
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.hero-heading-main {
  display: inline;
  background-image: linear-gradient(
    120deg,
    rgba(241, 201, 163, 0.7),
    rgba(255, 233, 210, 0.9)
  );
  background-size: 100% 0.55em;
  background-position: 0 88%;
  background-repeat: no-repeat;
}

.hero-heading-sub {
  display: block;
  margin-top: 0.3rem;
}

.hero-text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero media */

.hero-media {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 6%;
  bottom: -8%;
  transform: translateY(-5%);
  background: var(--bg-card);
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  max-width: 230px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.hero-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.hero-card-text {
  margin: 0 0 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-list {
  list-style: none;
  margin: 0 0 0.8rem;
  padding: 0;
}

.hero-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.hero-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Buttons */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  background: #fff5ec;
  color: var(--accent-dark);
  border-color: var(--accent-soft);
}

.btn-secondary:hover {
  background: #ffe5c7;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Badges, misc */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  font-size: 0.73rem;
  border-radius: 999px;
  background: #fff5ec;
  color: var(--accent-dark);
  border: 1px solid var(--accent-soft);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4caf50;
}

/* Cards */

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin: 0 0 0.6rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card-outline {
  border: 1px solid var(--border-soft);
  box-shadow: none;
}

/* Services */

.services-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1.5px solid rgba(196, 116, 53, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.service-media {
  position: relative;
  padding-top: 68%;
  overflow: hidden;
  background: var(--bg-alt);
}

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  border-radius: 999px;
  background: rgba(253, 249, 244, 0.9);
  border: 1px solid var(--border-soft);
  color: var(--accent-dark);
}

.service-content {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-content h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ABOUT */

.about-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.about-media img {
  display: block;
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.about-text h2 {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-highlights {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-highlight {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  min-width: 110px;
}

.about-label {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.about-value {
  display: block;
  margin-top: 0.1rem;
  font-weight: 600;
}

/* Tastings */

.tastings-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.tasting-photo {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.tasting-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasting-photo figcaption {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg);
}

/* Wholesale */

.wholesale-grid {
  display: grid;
  gap: 2.6rem;
  align-items: start;
}

.wholesale-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.wholesale-point {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 116, 53, 0.18);
}

.wholesale-emoji {
  font-size: 1.35rem;
}

.wholesale-point-title {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.wholesale-point-text {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* FAQ */

.faq-list {
  margin-top: 1.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-soft);
}

.faq-item {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(228, 215, 200, 0.7);
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 0.7rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* CTA / Contact */

.section-cta {
  background: radial-gradient(circle at top, #ffe6c5 0, #fdf9f4 38%, #fdf9f4 100%);
}

.contact-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.contact-card p {
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1rem;
}

.contact-location {
  font-size: 0.92rem;
}

/* Footer */

.site-footer {
  padding: 1.7rem 0 2rem;
  background: #f2e6d8;
  border-top: 1px solid rgba(228, 215, 200, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent-dark);
}

/* Responsive */

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tastings-grid,
  .wholesale-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

@media (max-width: 719px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 1.25rem;
    top: 70px;
    background: rgba(253, 249, 244, 0.98);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start;
    min-width: 190px;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero {
    padding-top: 5.4rem;
  }

  .hero-card {
    position: static;
    transform: none;
    max-width: 100%;
  }
}
