:root {
  --brand-50: #fdf8ef;
  --brand-100: #f9edd1;
  --brand-200: #f3d9a1;
  --brand-300: #e9c073;
  --brand-400: #dba84e;
  --brand-500: #c8912f;
  --brand-600: #a97425;
  --brand-700: #875a20;

  --cocoa-50: #f8f3ee;
  --cocoa-100: #ecdccb;
  --cocoa-200: #d6b795;
  --cocoa-300: #b98a5e;
  --cocoa-500: #7a4a26;
  --cocoa-600: #5c3a1f;
  --cocoa-700: #4a2e1a;
  --cocoa-800: #3c2414;
  --cocoa-900: #2a190d;

  --cream-50: #faf7f0;
  --cream-100: #f3ecdc;
  --cream-200: #e8ddc4;

  --shadow-soft: 0 1px 3px rgba(42, 25, 13, 0.08), 0 1px 2px rgba(42, 25, 13, 0.05);
  --shadow-lift: 0 18px 45px -15px rgba(42, 25, 13, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--cocoa-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.font-display {
  font-family: "Fraunces", Georgia, serif;
}

.font-hand {
  font-family: "Caveat", "Segoe Script", cursive;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__brand img {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--cream-200);
}

.nav__brand span {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--cocoa-700);
}

.nav__links {
  display: none;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a {
  text-decoration: none;
  color: var(--cocoa-600);
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--brand-600);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-500);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
}

@media (min-width: 860px) {
  .nav__links {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(42, 25, 13, 0.45), rgba(42, 25, 13, 0.6)),
    url("assets/branding/bg-pattern-fisherton.jpg") center/cover no-repeat;
  color: var(--cream-50);
}

.hero__inner {
  position: relative;
  padding: 90px 20px 70px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-200);
  margin-bottom: 18px;
}

.hero__title {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  line-height: 0.95;
  margin: 0 0 6px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 500;
  margin: 0 0 18px;
  color: #fff;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream-100);
  margin: 0 auto 34px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

.btn-primary:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-100);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Sections generic ---------- */
section {
  padding: 84px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 10px;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--cocoa-800);
  margin: 0 0 14px;
}

.section-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cocoa-600);
}

/* ---------- About ---------- */
.about {
  background: #fff;
}

.about__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat strong {
  overflow-wrap: break-word;
}

.stat {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--brand-600);
}

@media (min-width: 480px) {
  .stat strong {
    font-size: 1.4rem;
  }
}

.stat span {
  font-size: 0.82rem;
  color: var(--cocoa-500);
}

@media (min-width: 780px) {
  .about__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

/* ---------- Products ---------- */
.products {
  background: var(--cream-100);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  border: 1px solid var(--cream-200);
  background: #fff;
  color: var(--cocoa-600);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab:hover {
  border-color: var(--brand-300);
}

.tab.is-active {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-200);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__img img {
  transform: scale(1.06);
}

.card__body {
  padding: 12px 14px 16px;
}

.card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-600);
}

.card__name {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cocoa-800);
  margin-top: 3px;
}

.products__more {
  text-align: center;
  margin-top: 40px;
  color: var(--cocoa-500);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cocoa-800);
  color: var(--cream-100);
}

.contact .section-title {
  color: #fff;
}

.contact .section-eyebrow {
  color: var(--brand-300);
}

.contact .section-text {
  color: var(--cream-200);
}

.contact__grid {
  display: grid;
  gap: 32px;
  margin-top: 20px;
}

@media (min-width: 860px) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

.contact__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
}

.contact__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact__item:last-child {
  margin-bottom: 0;
}

.contact__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--brand-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__item h3 {
  margin: 0 0 3px;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  color: #fff;
}

.contact__item p,
.contact__item a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cream-200);
  text-decoration: none;
  line-height: 1.5;
}

.contact__item a:hover {
  color: var(--brand-300);
}

.contact__map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 320px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cocoa-900);
  color: var(--cream-200);
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer__brand {
  font-family: "Caveat", cursive;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}

.footer a {
  color: var(--brand-300);
  text-decoration: none;
}

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