:root {
  --brown-950: #24140f;
  --brown-900: #302018;
  --brown-800: #3a2418;
  --brown-700: #5a351f;
  --gold-600: #c8872d;
  --gold-500: #d8a84f;
  --gold-200: #f6dfad;
  --cream-100: #fff8ec;
  --cream-200: #f6ebd8;
  --cream-300: #ead9bc;
  --green-800: #21422f;
  --green-600: #2f6a47;
  --warm-white: #fffdf8;
  --ink: #2b1c15;
  --muted: #756659;
  --line: rgba(58, 36, 24, .14);
  --shadow-soft: 0 18px 44px rgba(43, 28, 21, .12);
  --shadow-strong: 0 24px 70px rgba(36, 20, 15, .24);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: min(1120px, calc(100% - 32px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(216, 168, 79, .18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(47, 106, 71, .11), transparent 26rem),
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 42%, #f5ead7 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--warm-white);
  background: var(--brown-950);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-shell {
  position: relative;
  padding: 76px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, .78);
  border-bottom: 1px solid rgba(58, 36, 24, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 236, .94);
  box-shadow: 0 12px 32px rgba(36, 20, 15, .08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  width: auto;
  height: auto;
  padding: 0;
}
.brand-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--gold-600);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.brand-mark-line {
  fill: none;
  stroke: var(--brown-800);
  stroke-width: 2.6;
  stroke-linecap: round;
}

.brand-name {
  display: block;
  color: var(--brown-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.36rem, 5vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--gold-600);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--brown-900);
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(43, 28, 21, .08);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .24s ease, opacity .24s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 101;
  display: grid;
  gap: 10px;
  padding: 104px 24px 28px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, .98), rgba(246, 235, 216, .98)),
    radial-gradient(circle at 100% 0%, rgba(216, 168, 79, .24), transparent 18rem);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  transform: translateY(-110%);
  transition: transform .28s ease;
}

.nav-panel.is-open {
  transform: translateY(0);
}

.nav-panel a {
  padding: 14px 16px;
  color: var(--brown-800);
  font-weight: 800;
  border-radius: 16px;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--green-800);
  background: rgba(216, 168, 79, .15);
}

.nav-cta {
  color: var(--warm-white) !important;
  text-align: center;
  background: linear-gradient(135deg, var(--brown-800), var(--green-800));
  box-shadow: 0 14px 28px rgba(33, 66, 47, .18);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(36, 20, 15, .84), rgba(58, 36, 24, .48) 44%, rgba(33, 66, 47, .62)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23f4c46f'/%3E%3Cstop offset='0.45' stop-color='%237d4a2c'/%3E%3Cstop offset='1' stop-color='%2321432f'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='900' fill='url(%23sky)'/%3E%3Ccircle cx='1050' cy='125' r='120' fill='%23ffe2a0' opacity='0.72'/%3E%3Cpath d='M0 620 C180 510 380 505 550 590 C740 685 930 560 1100 610 C1245 650 1330 724 1400 760 L1400 900 L0 900 Z' fill='%232b5c3b' opacity='0.96'/%3E%3Cpath d='M0 705 C210 590 390 610 570 680 C760 755 940 655 1120 690 C1260 718 1360 786 1400 820 L1400 900 L0 900 Z' fill='%233a7a4f' opacity='0.72'/%3E%3Cg fill='none' stroke='%23f6dfad' stroke-width='5' opacity='0.34'%3E%3Cpath d='M-30 690 C185 608 390 618 590 690 C805 767 995 680 1220 722 C1310 739 1380 780 1430 820'/%3E%3Cpath d='M-40 760 C195 655 408 670 620 745 C835 822 1030 752 1230 790 C1320 806 1390 842 1440 875'/%3E%3C/g%3E%3Cpath d='M710 270c-55-82-36-143 58-185M805 285c-48-80-22-145 80-197M900 315c-35-64-18-117 50-160' fill='none' stroke='%23fff3d1' stroke-width='18' stroke-linecap='round' opacity='0.38'/%3E%3Cellipse cx='825' cy='545' rx='155' ry='48' fill='%2324140f' opacity='0.5'/%3E%3Cpath d='M675 360h225v88c0 75-50 137-112 137s-113-62-113-137Z' fill='%23d8a84f' opacity='0.84'/%3E%3Cpath d='M895 395h43c42 0 72 31 72 70s-30 70-72 70h-48v-45h45c16 0 29-11 29-25s-13-25-29-25h-40Z' fill='%23643b24' opacity='0.82'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto -18% -14% -18%;
  z-index: -1;
  height: 220px;
  content: "";
  background: var(--cream-100);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-500);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero .eyebrow {
  color: var(--gold-200);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .95;
}

.hero h1 {
  margin-top: 18px;
  color: var(--warm-white);
  font-size: clamp(4.1rem, 18vw, 8.2rem);
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--gold-200);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.hero-text {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, .86);
  font-size: clamp(1rem, 3.8vw, 1.16rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  overflow: hidden;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .38) 45%, transparent 76%);
  transform: translateX(-120%);
  transition: transform .5s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--brown-950);
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500));
  box-shadow: 0 16px 36px rgba(216, 168, 79, .28);
}

.btn-secondary {
  color: var(--warm-white);
  background: rgba(255, 253, 248, .1);
  border-color: rgba(255, 253, 248, .34);
  box-shadow: 0 16px 36px rgba(36, 20, 15, .18);
  backdrop-filter: blur(10px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.trust-strip div {
  padding: 14px 12px;
  background: rgba(255, 253, 248, .11);
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.trust-strip strong {
  display: block;
  color: var(--gold-200);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, .76);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  align-self: end;
  max-width: 520px;
  padding: 14px;
  margin-inline: auto;
  background: linear-gradient(145deg, rgba(255, 253, 248, .28), rgba(255, 253, 248, .08));
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: 38px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 244, 216, .85), transparent 35%),
    linear-gradient(145deg, rgba(52, 28, 17, .94), rgba(36, 76, 51, .88));
  border-radius: 28px;
}

.hero-card-image svg {
  width: min(94%, 420px);
  filter: drop-shadow(0 28px 34px rgba(36, 20, 15, .34));
  animation: floatCup 5.5s ease-in-out infinite;
}

.hero-card-note {
  position: absolute;
  right: 4px;
  bottom: 18px;
  width: min(78%, 290px);
  padding: 16px;
  background: rgba(255, 248, 236, .92);
  border: 1px solid rgba(216, 168, 79, .34);
  border-radius: 22px 0 28px 22px;
  box-shadow: 0 18px 40px rgba(36, 20, 15, .16);
}

.hero-card-note span {
  color: var(--green-600);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-card-note strong {
  display: block;
  margin-top: 4px;
  color: var(--brown-900);
  line-height: 1.25;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  margin-top: 13px;
  font-size: clamp(2.7rem, 12vw, 5rem);
  letter-spacing: -.045em;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.1rem);
}

.about-grid {
  display: grid;
  gap: 22px;
}

.about-story,
.heritage-card,
.contact-panel,
.contact-form,
.map-card {
  background: rgba(255, 253, 248, .74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-story {
  padding: clamp(24px, 7vw, 42px);
}

.about-story p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-story p + p {
  margin-top: 18px;
}

.about-copy-note {
  padding: 16px 18px;
  color: var(--brown-900) !important;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(216, 168, 79, .18), rgba(47, 106, 71, .08));
  border: 1px solid rgba(216, 168, 79, .22);
  border-radius: 20px;
}

.about-icons {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-icons div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  color: var(--brown-800);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(216, 168, 79, .14), rgba(47, 106, 71, .08));
  border: 1px solid rgba(216, 168, 79, .22);
  border-radius: 18px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-200);
  background: var(--green-800);
  border-radius: 14px;
}

.mini-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heritage-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(216, 168, 79, .2), transparent 18rem),
    linear-gradient(145deg, var(--brown-900), var(--green-800));
}

.heritage-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(246, 223, 173, .2);
  border-radius: 26px;
  pointer-events: none;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 14px;
}

.timeline::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 20px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--gold-200), rgba(246, 223, 173, .1));
}

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--gold-500);
  border: 4px solid var(--brown-900);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 168, 79, .18);
}

.timeline-item span {
  display: inline-block;
  color: var(--gold-200);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, .78);
}

.products {
  overflow: hidden;
}

.product-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  display: grid;
  gap: 20px;
  padding: clamp(16px, 4vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .92), rgba(246, 235, 216, .78)),
    radial-gradient(circle at top right, rgba(216, 168, 79, .22), transparent 20rem);
  border: 1px solid rgba(216, 168, 79, .22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(43, 28, 21, .16);
}

.product-media {
  min-width: 0;
}

.slider-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 24%, rgba(246, 223, 173, .5), transparent 32%),
    linear-gradient(145deg, var(--brown-800), #74502b);
  border: 1px solid rgba(216, 168, 79, .24);
  border-radius: 28px;
}

.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .75s ease;
}

.product-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(58, 36, 24, .2);
  border: 0;
  border-radius: 999px;
  transition: width .24s ease, background .24s ease;
}

.slider-dot.is-active {
  width: 22px;
  background: var(--gold-600);
}

.product-content {
  display: grid;
  align-content: center;
}

.product-kicker {
  margin: 0 0 10px;
  color: var(--green-600);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: clamp(2.5rem, 12vw, 4rem);
  letter-spacing: -.04em;
}

.product-content p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.pack-list span {
  padding: 9px 13px;
  color: var(--brown-800);
  font-size: .82rem;
  font-weight: 900;
  background: rgba(216, 168, 79, .16);
  border: 1px solid rgba(216, 168, 79, .28);
  border-radius: 999px;
}

.product-btn {
  justify-self: start;
  margin-top: 24px;
  color: var(--warm-white);
  background: linear-gradient(135deg, #1f6f43, var(--green-800));
  box-shadow: 0 14px 34px rgba(47, 106, 71, .24);
}

.why-us {
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 168, 79, .18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 253, 248, .22), rgba(246, 235, 216, .74));
}

.why-grid {
  display: grid;
  gap: 16px;
}

.why-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 253, 248, .76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 42px rgba(43, 28, 21, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.why-card::after {
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, rgba(216, 168, 79, .2), transparent 68%);
  border-radius: 50%;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 168, 79, .32);
  box-shadow: 0 24px 58px rgba(43, 28, 21, .14);
}

.why-card:hover .why-icon {
  transform: rotate(-3deg) scale(1.06);
}

.why-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-200);
  background: linear-gradient(145deg, var(--brown-800), var(--green-800));
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(43, 28, 21, .16);
  transition: transform .28s ease;
}

.why-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-year {
  width: 78px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.why-card h3 {
  margin-top: 22px;
  font-size: 1.7rem;
  letter-spacing: -.02em;
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 20px;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 6vw, 34px);
}

.contact-card {
  padding: 18px;
  background: linear-gradient(135deg, rgba(216, 168, 79, .13), rgba(47, 106, 71, .07));
  border: 1px solid rgba(216, 168, 79, .2);
  border-radius: 20px;
}

.contact-card + .contact-card {
  margin-top: 14px;
}

.contact-label {
  display: block;
  color: var(--green-600);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 7px 0 0;
  color: var(--brown-800);
  font-weight: 800;
}

.contact-card a {
  color: var(--brown-800);
}

.contact .btn-secondary {
  color: var(--brown-800);
  background: var(--warm-white);
  border-color: rgba(58, 36, 24, .16);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--brown-800);
  font-size: .84rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid rgba(90, 53, 31, .18);
  border-radius: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 168, 79, .78);
  box-shadow: 0 0 0 4px rgba(216, 168, 79, .15);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 8px;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.map-card {
  min-height: 330px;
  padding: 10px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
  border-radius: 26px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 253, 248, .78);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 168, 79, .18), transparent 20rem),
    linear-gradient(145deg, var(--brown-950), var(--green-800));
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000);
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 62px 0 34px;
}

.footer-logo {
  width: clamp(140px, 22vw, 200px);
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand h2,
.footer-links h3,
.footer-contact h3 {
  margin: 16px 0 0;
  color: var(--warm-white);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.footer-brand h2 {
  font-size: 2.4rem;
  letter-spacing: -.03em;
}

.footer-brand p,
.footer-contact p {
  max-width: 360px;
  margin: 12px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 253, 248, .78);
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-200);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-200);
  background: rgba(255, 253, 248, .08);
  border: 1px solid rgba(255, 253, 248, .14);
  border-radius: 50%;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copyright {
  position: relative;
  padding: 20px 0 104px;
  border-top: 1px solid rgba(255, 253, 248, .1);
}

.copyright-inner {
  display: grid;
  gap: 12px;
}

.copyright p {
  margin: 0;
  color: rgba(255, 253, 248, .62);
  font-size: .88rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal-links a {
  color: rgba(255, 253, 248, .78);
  font-size: .88rem;
  font-weight: 800;
}

.footer-legal-links a:hover {
  color: var(--gold-200);
}

.legal-page .section-shell {
  padding: 70px 0;
}

.legal-hero {
  padding-top: 48px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-actions .btn-secondary {
  color: var(--brown-900);
  background: rgba(255, 253, 248, .92);
  border-color: rgba(58, 36, 24, .12);
  box-shadow: 0 16px 36px rgba(36, 20, 15, .1);
  backdrop-filter: none;
}

.legal-actions .btn-secondary:hover,
.legal-actions .btn-secondary:focus-visible {
  color: var(--brown-950);
  background: rgba(246, 235, 216, .98);
}

.legal-layout {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0;
  color: var(--brown-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -.03em;
}

.legal-card h3 {
  margin: 28px 0 10px;
  color: var(--brown-900);
  font-size: 1.2rem;
}

.legal-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.legal-card a,
.inline-links a {
  color: var(--green-600);
  font-weight: 800;
}

.legal-card a:hover,
.inline-links a:hover {
  color: var(--brown-800);
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-list li + li {
  margin-top: 10px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--warm-white);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(36, 20, 15, .24);
  transition: transform .24s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-actions svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-call {
  background: linear-gradient(135deg, var(--brown-800), var(--gold-600));
}

.float-whatsapp {
  background: linear-gradient(135deg, #1caa59, #147a42);
  animation: pulseWhatsApp 2.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCup {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes pulseWhatsApp {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(36, 20, 15, .24), 0 0 0 0 rgba(28, 170, 89, .34);
  }

  50% {
    box-shadow: 0 18px 36px rgba(36, 20, 15, .24), 0 0 0 12px rgba(28, 170, 89, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 560px) {
  :root {
    --container: min(1120px, calc(100% - 48px));
  }

  .hero-actions,
  .contact-actions {
    flex-wrap: nowrap;
  }

  .btn {
    padding-inline: 24px;
  }

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

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

}

@media (min-width: 800px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-panel a {
    padding: 10px 12px;
    font-size: .9rem;
  }

  .nav-cta {
    margin-left: 6px;
    padding-inline: 18px !important;
    border-radius: 999px !important;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  }

  .hero-card {
    margin-inline: 0;
  }

  .section-shell {
    padding: 104px 0;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
    align-items: stretch;
  }

  .product-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .product-card:nth-child(even) .product-media {
    order: 2;
  }

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

  .contact-grid {
    grid-template-columns: minmax(250px, .72fr) minmax(300px, .9fr);
  }

  .map-card {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, .45fr) minmax(240px, .75fr);
  }

  .copyright-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .copyright {
    padding-bottom: 26px;
  }
}

@media (min-width: 1040px) {
  .nav-panel a {
    padding-inline: 15px;
  }

  .contact-grid {
    grid-template-columns: .74fr .82fr 1fr;
    align-items: stretch;
  }

  .map-card {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .brand-subtitle {
    font-size: .65rem;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-card-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 12px;
    border-radius: 22px;
  }
  

.brand-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.brand-subtitle {
  font-size: 14px;
  color: #8a6b3d;
  font-weight: 500;
}
@media (max-width: 768px) {
  .brand-logo {
    width: 115px;
  }

  .brand-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
}
