:root {
  --navy: #1b365d;
  --navy-deep: #122844;
  --navy-soft: #274872;
  --orange: #f58220;
  --orange-deep: #e06d0c;
  --cream: #fff4d8;
  --cream-deep: #ffe7a8;
  --ink: #1a2433;
  --muted: rgba(27, 54, 93, 0.72);
  --white: #ffffff;
  --font-display: "Outfit", sans-serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(27, 54, 93, 0.55), transparent);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 244, 216, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27, 54, 93, 0.08);
}

.site-header.is-scrolled .logo-name,
.site-header.is-scrolled .nav a {
  color: var(--navy);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--navy);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
  color: var(--white);
}

.logo-badge {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.logo-badge.small {
  filter: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.site-header.is-scrolled .logo-tag {
  color: var(--orange);
  opacity: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.nav a {
  opacity: 0.92;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav a:hover {
  opacity: 1;
  color: var(--cream-deep);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white) !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--orange-deep);
  color: var(--white) !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.25s;
}

.menu-toggle span:last-child {
  width: 1.1rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  width: 1.5rem;
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  transform: translateY(12px);
  opacity: 0;
  animation: rise-in 0.5s var(--ease) forwards;
}

.mobile-nav a:nth-child(2) {
  animation-delay: 0.05s;
}
.mobile-nav a:nth-child(3) {
  animation-delay: 0.1s;
}
.mobile-nav a:nth-child(4) {
  animation-delay: 0.15s;
}
.mobile-nav a:nth-child(5) {
  animation-delay: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 20%;
  transform: scale(1.2);
  filter: blur(5px) saturate(1.12) contrast(1.08) brightness(0.92);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 40, 68, 0.72) 0%, rgba(18, 40, 68, 0.45) 30%, rgba(18, 40, 68, 0.7) 58%, #122844 100%),
    linear-gradient(105deg, rgba(18, 40, 68, 0.92) 0%, rgba(18, 40, 68, 0.62) 42%, rgba(18, 40, 68, 0.35) 70%, rgba(245, 130, 32, 0.22) 100%),
    radial-gradient(ellipse 50% 45% at 72% 42%, rgba(245, 130, 32, 0.28), transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -10% -8% -12% -6%;
  z-index: -1;
  background: radial-gradient(ellipse at left center, rgba(18, 40, 68, 0.75), transparent 70%);
  pointer-events: none;
}

.brand-lockup {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 13vw, 6.75rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0;
  color: var(--cream);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  animation: brand-in 1s var(--ease) both;
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0.35rem 0 1.25rem;
  animation: rise-in 0.9s var(--ease) 0.1s both;
}

.hero h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.8rem);
  font-weight: 700;
  max-width: 16ch;
  animation: rise-in 0.9s var(--ease) 0.18s both;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--cream-deep);
  font-size: 1.05em;
}

.hero-lead {
  max-width: 36ch;
  color: rgba(255, 244, 216, 0.9);
  font-size: 1.06rem;
  margin: 0 0 1.75rem;
  animation: rise-in 0.9s var(--ease) 0.28s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 0.9s var(--ease) 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(135deg, #ff9a3d, var(--orange) 45%, var(--orange-deep));
  color: var(--white);
  border: 0;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ffab5c, #f58b30 45%, #d86408);
}

.btn-navy {
  border-color: rgba(255, 244, 216, 0.4);
  color: var(--cream);
  background: rgba(27, 54, 93, 0.28);
}

.btn-navy:hover {
  border-color: var(--cream);
  background: rgba(27, 54, 93, 0.45);
}

.btn-light {
  background: var(--cream);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--white);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-intro h2,
.souvenirs-intro h2,
.order-panel h2,
.contact-card h2,
.wholesale-banner h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--navy);
}

.section-intro p,
.souvenirs-intro p,
.order-panel > p,
.contact-lead,
.wholesale-banner p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40ch;
}

.product-rail {
  display: grid;
  gap: 1.5rem;
}

.product h3 {
  font-size: 1.35rem;
  margin-top: 1rem;
  color: var(--navy);
}

.product p {
  color: var(--muted);
  font-size: 0.98rem;
}

.product-visual {
  aspect-ratio: 4 / 3;
  border-radius: 1.35rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(27, 54, 93, 0.12);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27, 54, 93, 0.28));
}

.food-a {
  background-image:
    linear-gradient(145deg, rgba(245, 130, 32, 0.22), rgba(27, 54, 93, 0.15)),
    url("https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=900&q=80");
}

.food-b {
  background-image:
    linear-gradient(145deg, rgba(255, 231, 168, 0.25), rgba(27, 54, 93, 0.2)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=900&q=80");
}

.food-c {
  background-image:
    linear-gradient(145deg, rgba(27, 54, 93, 0.25), rgba(245, 130, 32, 0.15)),
    url("https://images.unsplash.com/photo-1604719312566-891d7512481b?auto=format&fit=crop&w=900&q=80");
}

/* Gift sections share souvenir styling */
.gift-section {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(245, 130, 32, 0.14), transparent 55%),
    linear-gradient(180deg, #fff8e8 0%, var(--cream) 100%);
}

.gift-section.alt {
  background:
    radial-gradient(ellipse 70% 50% at 0% 10%, rgba(27, 54, 93, 0.06), transparent 55%),
    linear-gradient(180deg, #fffaf0 0%, #fff4d8 100%);
}

/* Souvenirs */
.souvenirs {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(245, 130, 32, 0.14), transparent 55%),
    linear-gradient(180deg, #fff8e8 0%, var(--cream) 100%);
}

.souvenirs-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.souvenirs-intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.souvenirs-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.souvenir-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 0.9rem;
  max-width: 56rem;
  margin: 0 auto;
}

.souvenir-item {
  margin: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.45rem;
  align-content: start;
}

.souvenir-thumb {
  display: block;
  width: 100%;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #12233d;
  aspect-ratio: 1 / 1;
}

.souvenir-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.souvenir-item:hover .souvenir-thumb img {
  transform: scale(1.04);
}

.souvenir-item h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin: 0.15rem 0 0;
  line-height: 1.25;
}

.souvenir-item > p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.product .item-actions {
  margin-top: 0.75rem;
}

.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(27, 54, 93, 0.28);
}

.btn-ghost-light:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  background: rgba(245, 130, 32, 0.08);
}

.price-strip {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 54, 93, 0.1);
}

.price-strip p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  max-width: 42ch;
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  justify-self: start;
  margin-top: 0.2rem;
}

.item-actions .btn-sm {
  margin-top: 0;
}

.customize {
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(245, 130, 32, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #fff8e8 100%);
}

.customize-panel {
  max-width: 48rem;
  margin: 0 auto;
}

.customize-intro {
  margin-bottom: 1.5rem;
}

.customize-intro h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.customize-intro p {
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.05rem;
}

.single-booking-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.order-redirect {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.28);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.order-redirect[hidden] {
  display: none;
}

.order-redirect a:not(.btn) {
  color: var(--orange-deep);
  text-decoration: underline;
}

/* Wholesale */
.wholesale {
  padding-top: 0;
}

.wholesale-banner {
  border-radius: 1.75rem;
  padding: clamp(2.25rem, 6vw, 3.5rem);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(245, 130, 32, 0.35), transparent 50%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.wholesale-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.18);
  pointer-events: none;
}

.wholesale-banner .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-deep);
  margin-bottom: 0.75rem;
}

.wholesale-banner h2 {
  color: var(--white);
  max-width: 16ch;
}

.wholesale-banner p {
  color: rgba(255, 244, 216, 0.85);
  margin-bottom: 1.5rem;
}

/* Order */
.order {
  background:
    linear-gradient(180deg, transparent, rgba(255, 231, 168, 0.45)),
    var(--cream);
}

.order-panel {
  max-width: 40rem;
  margin: 0 auto;
}

.order-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.order-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 54, 93, 0.16);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(27, 54, 93, 0.4);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.18);
}

.order-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23F58220' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.order-form .btn {
  justify-self: start;
  margin-top: 0.5rem;
}

.form-note {
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--orange-deep);
  font-weight: 600;
}

.trust-note {
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 107, 74, 0.22);
  background: rgba(31, 107, 74, 0.08);
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1f6b4a;
}

.privacy {
  padding-top: 0;
}

.privacy-panel {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 54, 93, 0.1);
}

.privacy-panel h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.privacy-panel > p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  max-width: 48ch;
}

.privacy-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.privacy-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 550;
}

.privacy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #1f6b4a;
}

.footer-privacy {
  color: rgba(255, 244, 216, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.reviews {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(245, 130, 32, 0.12), transparent 55%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.reviews-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.reviews-intro h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.reviews-intro p {
  color: var(--muted);
  max-width: 42ch;
}

.rating-summary {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 54, 93, 0.1);
}

.rating-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 0 0 0.35rem;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.rating-score p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.rating-breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.rating-breakdown li {
  display: grid;
  grid-template-columns: 7.5rem 1fr 2rem;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--navy);
}

.rating-breakdown .bar {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(27, 54, 93, 0.1);
  overflow: hidden;
}

.rating-breakdown .bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, #ff9a3d, var(--orange));
  border-radius: inherit;
}

.review-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.review-card {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 54, 93, 0.08);
}

.review-text {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0.55rem 0 0.75rem;
}

.review-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.feedback-panel {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 54, 93, 0.1);
}

.feedback-panel h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feedback-panel > div > p {
  color: var(--muted);
  max-width: 40ch;
}

.recommend-field {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.recommend-field legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  padding: 0;
}

.radio-inline {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--navy);
  grid-template-columns: none !important;
}

.radio-inline input {
  width: auto;
  accent-color: var(--orange);
}

/* Contact */
.contact {
  padding-top: 0;
}

.contact-card {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(27, 54, 93, 0.1);
}

.contact-lead {
  margin-bottom: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(27, 54, 93, 0.08);
  transition: transform 0.25s var(--ease);
}

.contact-row:hover {
  transform: translateX(4px);
}

.contact-row span:last-child {
  display: grid;
  gap: 0.15rem;
}

.contact-row strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-row span span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  background: var(--navy-deep);
  color: rgba(255, 244, 216, 0.75);
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cream);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-links a:hover {
  color: var(--orange);
}

/* Motion */
@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, -1%, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .product-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .souvenir-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.1rem;
  }

  .order-form {
    grid-template-columns: 1fr 1fr;
  }

  .order-form .full,
  .order-form .btn,
  .order-form .form-note {
    grid-column: 1 / -1;
  }

  .customize-form .trust-note {
    grid-column: 1 / -1;
  }

  .rating-summary {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-panel {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-img {
    transform: none;
  }
}
