:root {
  --ink: #073f3d;
  --ink-soft: #315b59;
  --teal: #087d79;
  --teal-bright: #20aaa2;
  --cream: #fff9ee;
  --paper: #ffffff;
  --sand: #f4ead9;
  --coral: #f46176;
  --yellow: #f9ba39;
  --green: #9bca55;
  --blue: #72ced1;
  --pink: #f8a4b4;
  --orange: #f59a3f;
  --line: rgba(7, 63, 61, 0.13);
  --shadow-sm: 0 10px 30px rgba(7, 63, 61, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 63, 61, 0.14);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1200px;
  --header-height: 82px;
  --font-display: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:not(.is-ready) #app {
  opacity: 0;
}

#app {
  opacity: 1;
  transition: opacity 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon--filled {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(244, 97, 118, 0.28);
  color: white;
}

.button--primary:hover {
  background: #e74e66;
  box-shadow: 0 16px 34px rgba(244, 97, 118, 0.34);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: rgba(7, 63, 61, 0.25);
  background: white;
  box-shadow: var(--shadow-sm);
}

.button--light {
  position: relative;
  z-index: 1;
  align-self: center;
  background: white;
  box-shadow: 0 14px 34px rgba(89, 43, 5, 0.18);
  color: var(--ink);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--teal);
  font-weight: 800;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 249, 238, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(7, 63, 61, 0.07);
}

.announcement {
  background: var(--ink);
  color: white;
}

.announcement__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.78rem;
  text-align: center;
}

.announcement__inner p {
  margin: 0;
}

.announcement__inner a {
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 800;
}

.navbar {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 178px;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  position: relative;
}

.language-trigger,
.menu-toggle {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.language-trigger {
  min-width: 82px;
  padding: 0 13px;
}

.language-trigger__globe {
  color: var(--teal);
}

.language-trigger__chevron {
  transition: transform 180ms ease;
}

.language-picker.is-open .language-trigger__chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 168px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.language-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-option:hover,
.language-option[aria-checked="true"] {
  background: var(--cream);
}

.language-option__code {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 260ms ease, border-color 260ms ease;
}

.mobile-menu.is-open {
  max-height: calc(100vh - 100px);
  border-color: var(--line);
}

.mobile-menu .container {
  display: grid;
  gap: 6px;
  padding-block: 16px 24px;
}

.mobile-menu .nav-link {
  padding: 13px 6px;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding-top: 54px;
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 32%, rgba(249, 186, 57, 0.18), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(114, 206, 209, 0.15), transparent 29%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 12%;
  left: -70px;
  width: 130px;
  height: 130px;
  border: 26px solid rgba(244, 97, 118, 0.09);
}

.hero::after {
  right: 7%;
  bottom: 56px;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  box-shadow: 36px -34px 0 var(--coral), -28px -48px 0 var(--green);
  transform: rotate(18deg);
}

.hero__grid {
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 82px);
  padding-bottom: 70px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__title {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.5vw, 6rem);
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: var(--coral);
}

.hero__description {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 34px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-highlight__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 125, 121, 0.1);
  color: var(--teal);
}

.hero-highlight__icon .icon {
  width: 16px;
  height: 16px;
}

.hero__media {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  isolation: isolate;
}

.hero__image-wrap::before {
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -24px;
  width: 82%;
  height: 76%;
  border-radius: var(--radius-lg);
  background: var(--teal);
  content: "";
  transform: rotate(4deg);
}

.hero__image-wrap::after {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 0 rgba(7, 63, 61, 0.08);
  content: "";
}

.hero__image-wrap > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 7px solid white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 210px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.2;
}

.hero__badge .icon {
  color: var(--coral);
}

.hero__badge--top {
  top: 40px;
  left: -28px;
}

.hero__badge--bottom {
  right: -16px;
  bottom: 36px;
}

.hero__badge--bottom .icon {
  color: var(--teal);
}

.hero__ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: white;
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 22px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-item::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Products */
.section--products {
  background: white;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading--split > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(7, 63, 61, 0.08);
  border-radius: var(--radius-md);
  background: var(--card-bg, var(--cream));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  content: "";
}

.product-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px) rotate(-0.5deg);
}

.product-card--large {
  grid-column: span 2;
}

.product-card--large .product-card__description {
  max-width: 430px;
}

.product-card--yellow { --card-bg: #fff1be; --card-icon: #e79708; }
.product-card--coral { --card-bg: #ffe0e4; --card-icon: #e95469; }
.product-card--teal { --card-bg: #d9f3ef; --card-icon: #087d79; }
.product-card--green { --card-bg: #e9f4d6; --card-icon: #689b2e; }
.product-card--blue { --card-bg: #dcf3f4; --card-icon: #278f93; }
.product-card--pink { --card-bg: #fee5ed; --card-icon: #d95d83; }
.product-card--mint { --card-bg: #e2f5eb; --card-icon: #31865b; }
.product-card--orange { --card-bg: #ffe8cd; --card-icon: #d66c22; }

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--card-icon);
  transform: rotate(-4deg);
}

.product-card__icon .icon {
  width: 35px;
  height: 35px;
}

.product-card__tag {
  padding: 7px 11px;
  border: 1px solid rgba(7, 63, 61, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 34px 0 12px;
  font-size: 1.65rem;
}

.product-card__description {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Gift */
.section--gift {
  padding: 72px 0;
  background: white;
}

.gift-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 48px 52px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(120deg, var(--yellow), #f7a83d 58%, var(--orange));
  box-shadow: 0 30px 60px rgba(208, 119, 22, 0.18);
}

.gift-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  background: var(--ink);
  box-shadow: 0 14px 0 rgba(89, 43, 5, 0.12);
  color: white;
  transform: rotate(-5deg);
}

.gift-card__icon .icon {
  width: 72px;
  height: 72px;
}

.gift-card__copy {
  position: relative;
  z-index: 1;
}

.gift-card .eyebrow {
  color: var(--ink);
}

.gift-card h2 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.gift-card__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 18px;
  color: rgba(7, 63, 61, 0.8);
}

.gift-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gift-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 850;
}

.gift-card li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.gift-card__decor span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.gift-card__decor span:nth-child(1) {
  top: -35px;
  right: 22%;
  width: 110px;
  height: 110px;
}

.gift-card__decor span:nth-child(2) {
  right: -25px;
  bottom: -30px;
  width: 160px;
  height: 160px;
}

.gift-card__decor span:nth-child(3) {
  bottom: 24px;
  left: 28%;
  width: 28px;
  height: 28px;
  background: var(--coral);
}

/* Story */
.section--story {
  background:
    radial-gradient(circle at 85% 50%, rgba(155, 202, 85, 0.12), transparent 26%),
    var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(52px, 8vw, 108px);
}

.story-media {
  position: relative;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}

.story-media::before {
  position: absolute;
  z-index: -1;
  top: 20px;
  right: -22px;
  width: 90%;
  height: 92%;
  border-radius: var(--radius-lg);
  background: var(--coral);
  content: "";
  transform: rotate(4deg);
}

.story-media img {
  width: 100%;
  max-height: 660px;
  border-radius: 31px;
  object-fit: cover;
  object-position: center 45%;
}

.story-media__caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.story-media__caption .icon {
  color: var(--coral);
}

.story-media__caption p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 850;
}

.story-copy h2 {
  margin-bottom: 24px;
}

.story-copy__lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.value-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 12px;
  background: rgba(8, 125, 121, 0.1);
  color: var(--teal);
}

.value-card h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Visit and contact */
.section--visit {
  overflow: hidden;
  background: white;
}

.section--visit::before {
  position: absolute;
  top: 60px;
  right: -150px;
  width: 360px;
  height: 360px;
  border: 65px solid rgba(114, 206, 209, 0.13);
  border-radius: 50%;
  content: "";
}

.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
}

.visit-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

.visit-copy > p:not(.eyebrow):not(.hours-note) {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--ink-soft);
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #e8f5dd;
  color: #477527;
  font-size: 0.8rem;
  font-weight: 850;
}

.open-status.is-closed {
  background: #fff0e0;
  color: #9b551d;
}

.open-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px currentColor;
  opacity: 0.72;
}

.hours-list {
  max-width: 620px;
  border-top: 1px solid var(--line);
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
}

.hours-row__day {
  font-weight: 800;
}

.hours-row__time {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 620px;
  margin: 16px 0 0;
  color: #876246;
  font-size: 0.76rem;
  line-height: 1.5;
}

.hours-note::before {
  content: "*";
  font-weight: 900;
}

.contact-card {
  position: relative;
  overflow: hidden;
  align-self: start;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 5%, rgba(32, 170, 162, 0.55), transparent 28%),
    var(--ink);
  box-shadow: var(--shadow-lg);
  color: white;
}

.contact-card::after {
  position: absolute;
  right: -45px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.contact-card__top {
  position: relative;
  z-index: 1;
}

.contact-card__paw {
  position: absolute;
  top: -28px;
  right: -12px;
  color: rgba(255, 255, 255, 0.14);
  transform: rotate(18deg);
}

.contact-card__paw .icon {
  width: 86px;
  height: 86px;
}

.contact-card .eyebrow {
  color: var(--yellow);
}

.contact-card h2 {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
}

.contact-card__top > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.contact-method {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(3px);
}

.contact-method__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
}

.contact-method__copy {
  min-width: 0;
}

.contact-method__label {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-method__value {
  display: block;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-method > .icon {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.56);
}

.contact-card__social {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.contact-card__social p {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.social-link:hover {
  background: var(--yellow);
  color: var(--ink);
}

/* Footer */
.footer {
  padding: 70px 0 22px;
  background: #052f2d;
  color: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 70px;
  padding-bottom: 54px;
}

.footer__brand img {
  width: 230px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.footer__brand p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer__heading {
  margin: 12px 0 18px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border: 3px solid white;
  border-radius: 999px;
  background: #1fa969;
  box-shadow: 0 14px 36px rgba(7, 63, 61, 0.28);
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-card.reveal:nth-child(2n) { transition-delay: 60ms; }
.product-card.reveal:nth-child(3n) { transition-delay: 120ms; }

/* Responsive */
@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: 190px 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
    gap: 46px;
  }

  .hero__title {
    font-size: clamp(3.3rem, 6.8vw, 5.1rem);
  }

  .gift-card {
    grid-template-columns: 130px 1fr;
  }

  .gift-card__icon {
    width: 120px;
    height: 120px;
  }

  .gift-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 86px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
    height: 62px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 0;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__media {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .section-heading--split,
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 20px;
  }

  .section-heading--split > p {
    max-width: 680px;
  }

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

  .story-media {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .story-media img {
    max-height: 620px;
  }

  .visit-grid {
    gap: 60px;
  }

  .visit-copy,
  .hours-list,
  .hours-note {
    max-width: 680px;
  }

  .contact-card {
    max-width: 680px;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer__grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .announcement__inner {
    min-height: 32px;
    font-size: 0.67rem;
  }

  .announcement__inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand img {
    width: 134px;
    height: 60px;
  }

  .header-cta {
    display: none;
  }

  .nav-actions {
    gap: 7px;
  }

  .language-trigger {
    min-width: 70px;
    padding: 0 10px;
  }

  .language-trigger__globe {
    display: none;
  }

  .hero__grid {
    gap: 40px;
    padding-bottom: 54px;
  }

  .hero__title {
    margin-bottom: 18px;
    font-size: clamp(3rem, 14.8vw, 4.5rem);
  }

  .hero__description {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero__image-wrap::before {
    right: -10px;
    bottom: -13px;
  }

  .hero__image-wrap::after {
    top: -12px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .hero__image-wrap > img {
    border-width: 5px;
    border-radius: 28px;
  }

  .hero__badge {
    padding: 9px 12px;
    font-size: 0.67rem;
  }

  .hero__badge--top {
    top: 20px;
    left: -7px;
  }

  .hero__badge--bottom {
    right: -4px;
    bottom: 18px;
  }

  .section-heading--split {
    margin-bottom: 34px;
  }

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

  .product-card,
  .product-card--large {
    min-height: 270px;
    grid-column: auto;
  }

  .section--gift {
    padding: 44px 0;
  }

  .gift-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .gift-card__icon {
    width: 94px;
    height: 94px;
  }

  .gift-card__icon .icon {
    width: 52px;
    height: 52px;
  }

  .gift-card h2 {
    font-size: 2.5rem;
  }

  .gift-card .button {
    width: 100%;
    grid-column: auto;
  }

  .story-grid {
    gap: 58px;
  }

  .story-media {
    padding: 8px;
    border-radius: 28px;
  }

  .story-media img {
    max-height: 510px;
    border-radius: 22px;
  }

  .story-media__caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    padding: 15px;
  }

  .value-card__icon {
    grid-row: span 2;
    margin: 0;
  }

  .value-card h3,
  .value-card p {
    margin: 0;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-row__time {
    text-align: left;
  }

  .contact-card {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .contact-method {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .contact-card__social {
    flex-wrap: wrap;
  }

  .contact-card__social p {
    width: 100%;
    margin-bottom: 4px;
  }

  .footer {
    padding-top: 52px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__grid > :last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    min-height: 0;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp [data-label] {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
  }
}

@media (max-width: 390px) {
  .announcement__inner a {
    display: none;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .language-menu {
    right: -52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
