/* =========================================================
   01. TOKENS + BASE
========================================================= */
:root {
  --bg: #fff7e8;
  --paper: #fffaf3;
  --cream: #fff4df;
  --ink: #17211f;
  --muted: #5f6f67;
  --brown: #8b4b22;
  --orange: #cc7a2c;
  --line: rgba(23, 33, 31, 0.1);
  --white: #ffffff;

  --container: 1280px;

  --gradient: linear-gradient(90deg, #fbbf24, #fb923c, #fb7185);
  --shadow: 0 24px 70px rgba(91, 52, 23, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Spectral", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

#app,
#legal-app,
#not-found-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-white {
  background: var(--white);
}

.scroll-offset {
  scroll-margin-top: 9rem;
}

/* =========================================================
   02. TYPE + SHARED ELEMENTS
========================================================= */
.logo-text,
.eyebrow,
.section-title,
.hero-title,
.shop-heading {
  font-family: "Special Elite", monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  margin: 0;
  padding: 0 1.15rem;
  rotate: -2deg;
  border: 1px solid rgba(23, 33, 31, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brown);
  box-shadow: 0 8px 24px rgba(91, 52, 23, 0.06);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  font-family: "Special Elite", monospace;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em
}

.section-text {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.center .section-title,
.center .section-text {
  margin-inline: auto;
}

/* =========================================================
   03. BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: var(--gradient);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.3);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.btn-full {
  width: 100%;
}

/* =========================================================
   04. HEADER + NAVIGATION
========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient);
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  color: #6a5848;
  font-family: "Special Elite", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-link,
.dropdown-trigger {
  color: #6a5848;
  transition: color 0.25s ease;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  margin-block: -1rem;
  padding-block: 1rem;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: #6a5848;
  font-family: "Special Elite", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 100;
  width: 16rem;
  transform: translateX(-50%);
  padding-top: 0.85rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu::before {
  display: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;

  margin: 0;
  padding: 1rem;

  border-radius: 1.25rem;
  color: var(--ink);

  font-family: "Special Elite", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;

  transition: background 0.25s ease, transform 0.25s ease;
}

.dropdown-item:hover {
  background: var(--cream);
  transform: translateX(2px);
}

.dropdown-menu-inner {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.75rem;
  box-shadow: 0 24px 60px rgba(91, 52, 23, 0.12);
  backdrop-filter: blur(18px);
}

.dropdown-icon {
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;

  color: #cc7a2c;
  font-size: 1rem;
}

.lang-switcher {
  display: inline-flex;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.25rem;
}

.lang-btn {
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  font-size: 0.65rem;
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.header-cta {
  border-radius: 999px;
  background: var(--ink);
  padding: 0.85rem 1.25rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.header-cta:hover {
  transform: scale(1.03);
}

/* =========================================================
   05. HERO
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 1rem;
}

.hero-bg-one,
.hero-bg-two {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-one {
  left: -10rem;
  top: 7rem;
  width: 34rem;
  height: 34rem;
  background: rgba(251, 191, 36, 0.45);
}

.hero-bg-two {
  right: -12rem;
  top: 15rem;
  width: 38rem;
  height: 38rem;
  background: rgba(125, 211, 252, 0.38);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 43rem;
}

.hero-title {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  font-family: "Special Elite", monospace;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-arrow {
  margin-left: .65rem;
}

/* =========================================================
   06. HERO VISUALS
========================================================= */
.hero-visual {
  position: relative;
  min-height: 40rem;
}

.hero-photo-card {
  position: absolute;
  border-radius: 1.65rem;
  background: #fff;
  padding: .9rem;
  box-shadow: 0 28px 70px rgba(91, 52, 23, .12);
  transition: transform .35s ease, z-index .35s ease, box-shadow .35s ease;
}

.hero-photo-card:hover {
  z-index: 8;
  box-shadow: 0 36px 90px rgba(91, 52, 23, .18);
}

.hero-photo-left {
  left: 0;
  top: 7rem;
  z-index: 1;
  width: 55%;
  transform: rotate(-7deg);
}

.hero-photo-left:hover {
  transform: rotate(-2deg) translateY(-10px) scale(1.03);
}

.hero-photo-right {
  right: 2rem;
  top: 1rem;
  z-index: 2;
  width: 46%;
  transform: rotate(5deg);
}

.hero-photo-right:hover {
  transform: rotate(2deg) translateY(-10px) scale(1.03);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(23, 33, 31, 0.25);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(251, 191, 36, 0.42), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(125, 211, 252, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, 0)),
    #f7e7cf;
  color: #6a5848;
  text-align: center;
}

.hero-photo-left .photo-placeholder {
  min-height: 25rem;
}

.hero-photo-right .photo-placeholder {
  min-height: 28rem;
}

.photo-caption {
  margin: .85rem .5rem 0;
  color: #6a5848;
  font-family: "Special Elite", monospace;
  font-size: .9rem;
}

.planner-card {
  position: absolute;
  right: 3rem;
  bottom: 1.5rem;
  z-index: 5;
  width: 54%;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: #fffdf8;
  padding: 1.5rem;
  box-shadow: 0 28px 70px rgba(91, 52, 23, .14);
  transform: rotate(-2deg);
}

.planner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.planner-card-eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.planner-card-subtitle {
  margin: .35rem 0 0;
  color: #6a5848;
  font-size: .9rem;
}

.planner-card-icon {
  color: var(--orange);
  font-size: 1.25rem;
}

.planner-route-list {
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}

.planner-route-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: .75rem;
  border-radius: .9rem;
  background: var(--cream);
  padding: .65rem .85rem;
  font-size: .9rem;
}

.planner-route-row span:first-child {
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: .8rem;
}

.planner-route-row span:last-child {
  color: #6a5848;
}

/* =========================================================
   07. HERO FEATURE STRIP
========================================================= */
.hero-features {
  padding: 3rem 0;
}

.hero-features-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1rem;
}

.hero-features-inner span {
  font-family: "Special Elite", monospace;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8b4b22;
}

/* =========================================================
   07. GUIDES
========================================================= */
.guides-section {
  padding-top: 3rem;
}

.guides-layout {
  display: grid;
  gap: 3rem;
  align-items: end;
}

.guides-intro {
  display: grid;
  gap: 1.75rem;
}

.guides-intro .section-text {
  margin-top: 0;
}

.guides-intro .btn {
  width: fit-content;
  justify-self: start;
}

.guides-content-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.guides-image-card {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.9rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.guides-image-card .photo-placeholder {
  min-height: 26rem;
}

.guides-grid {
  display: grid;
  align-items: start;
  gap: 1.25rem;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.guide-number {
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.guide-card h3 {
  margin: 1.25rem 0 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.guide-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   08. PLANNING
========================================================= */
.planning-section {
  position: relative;
  overflow: hidden;
}

.planning-bg-one,
.planning-bg-two {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.planning-bg-one {
  left: -10rem;
  top: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(125, 211, 252, 0.35);
}

.planning-bg-two {
  right: -10rem;
  bottom: -8rem;
  width: 26rem;
  height: 26rem;
  background: rgba(251, 146, 60, 0.32);
}

.planning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.planning-copy {
  max-width: 42rem;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #44524d;
  font-size: 1rem;
}

.feature-list li::before {
  content: "âœ“";
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #bbf7d0;
  color: #047857;
  font-size: 0.9rem;
  font-weight: 700;
}

.planner-preview-card {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.planner-preview-inner {
  border-radius: 1.5rem;
  background: var(--paper);
  padding: 1.5rem;
}

.planner-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.planner-preview-eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.planner-preview-subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.planner-preview-icon {
  color: var(--orange);
  font-size: 1.25rem;
}

.planner-preview-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.planner-preview-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(91, 52, 23, 0.04);
}

.planner-preview-row>span {
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: 0.9rem;
}

.planner-preview-row strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.planner-preview-row p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   09. SHARED CARDS
========================================================= */
.product-card,
.contact-layout {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

/* =========================================================
   10. SHOP
========================================================= */
.shop-section {
  position: relative;
}

.shop-header {
  max-width: 48rem;
  margin-inline: auto;
}

.shop-group {
  margin-top: 5rem;
}

.shop-heading-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-heading-icon {
  color: var(--orange);
  font-size: 1.25rem;
}

.shop-heading {
  margin: 0;
  color: var(--brown);
  font-family: "Special Elite", monospace;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.2rem;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 28px 70px rgba(91, 52, 23, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(91, 52, 23, 0.12);
}

.product-card.is-featured {
  border-color: rgba(251, 146, 60, 0.55);
}

.product-image {
  position: relative;
  display: grid;
  min-height: 16rem;
  place-items: end center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.45), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(125, 211, 252, 0.45), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    #f7e7cf;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.015);
}

.product-image span {
  width: calc(100% - 3rem);
  margin-bottom: 1.5rem;
  border: 1px dashed rgba(23, 33, 31, 0.25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.8rem 1rem;
  color: #6a5848;
  text-align: center;
  backdrop-filter: blur(10px);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.product-category {
  margin: 0;
  color: var(--orange);
  font-family: "Special Elite", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.product-price {
  flex: 0 0 auto;
  margin: 0;
  border-radius: 999px;
  background: var(--cream);
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-description {
  min-height: 4.75rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 5.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.product-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-btn {
  display: flex;
  width: 100%;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: auto;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #0f1c1a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 20px 40px rgba(15, 28, 26, 0.14);
}

.product-btn:hover {
  transform: translateY(-2px);
  background: #22312e;
}

.product-btn-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.product-btn-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   09. FAQ
========================================================= */
.faq-layout {
  display: grid;
  gap: 3rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--paper);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  background: transparent;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-answer p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  max-height: 14rem;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* =========================================================
   10. CONTACT FORM
========================================================= */
.contact-layout {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
  padding: 1rem 1.25rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-submit {
  display: inline-flex;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  padding: 1rem 1.5rem;
  color: var(--ink);
  font-weight: 700;
}

.form-status {
  margin: 0;
  font-weight: 600;
}

.form-status.is-success {
  color: #047857;
}

.form-status.is-error {
  color: #dc2626;
}

/* =========================================================
   11. FOOTER
========================================================= */
.site-footer {
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.footer-copy {
  margin: 0;
}

.footer-credit {
  margin: 0.5rem 0 0;
  color: var(--brown);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-credit a {
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

/* =========================================================
   LEGAL + 404 PAGES
========================================================= */
.legal-main,
.not-found-main {
  padding-top: 8.5rem;
}

.legal-page,
.not-found-page {
  flex: 1;
  padding: 3rem 0 6rem;
}

.legal-wrap,
.not-found-inner {
  max-width: 54rem;
}

.legal-title,
.not-found-title {
  margin: 0;
  font-family: "Special Elite", monospace;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin: 2rem 0;
  color: var(--muted);
}

.legal-section {
  margin-top: 2rem;
}

.legal-section h2 {
  margin: 0;
  font-size: 1.5rem;
}

.legal-section p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.not-found-inner .btn {
  margin-top: 2rem;
}

@media (max-width: 767px) {

  .legal-main,
  .not-found-main {
    padding-top: 7rem;
  }

  .legal-title,
  .not-found-title {
    font-size: 3.2rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-bag {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.header-bag svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.burger-btn {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
}

.burger-btn span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  transition: .25s ease;
}

.burger-btn span+span {
  margin-top: .32rem;
}

.burger-btn.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger-btn.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 6rem 1rem auto;
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: grid;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 250, 243, .95);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu-inner a {
  border-radius: 1.25rem;
  padding: 1rem;
  font-family: "Special Elite", monospace;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-menu-inner a:hover {
  background: var(--cream);
}

/* =========================================================
   12. RESPONSIVE
========================================================= */
@media (max-width: 1080px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-bag,
  .burger-btn {
    display: grid;
  }

  .logo-text {
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .nav {
    padding: 0.75rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .logo-icon,
  .header-bag,
  .burger-btn {
    width: 2.35rem;
    height: 2.35rem;
  }

  .lang-btn {
    padding: 0.4rem 0.55rem;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .guides-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .guides-content-grid {
    grid-template-columns: 5fr 7fr;
  }

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

  .guide-card-offset {
    transform: translateY(1rem);
  }

  .planning-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

  .faq-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

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

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

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }

  .nav {
    width: min(100% - 1rem, var(--container));
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-title,
  .section-title {
    font-size: 3.2rem;
  }

  .hero-visual {
    min-height: 38rem;
  }

  .hero-photo-left {
    left: 0;
    top: 5rem;
    width: 64%;
  }

  .hero-photo-right {
    right: 0;
    top: 1rem;
    width: 58%;
  }

  .hero-photo-left .photo-placeholder,
  .hero-photo-right .photo-placeholder {
    min-height: 17rem;
  }

  .planner-card {
    right: 0;
    bottom: 0;
    width: 86%;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-features-inner {
    gap: 1.5rem;
  }

  .hero-features-inner span {
    text-align: center;
    font-size: .78rem;
    letter-spacing: .14em;
  }
}


/* =========================================================
   13. FINAL TABLET / MOBILE HEADER FIXES
   Keep this section at the very bottom of the file.
========================================================= */

/* Desktop defaults */
.logo-text {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.header-bag,
.burger-btn {
  display: none;
}

/* Center bag icon perfectly */
.header-bag {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-bag svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

/* Cleaner 3-line burger using your existing two spans + one pseudo-line */
.burger-btn {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.burger-btn::before,
.burger-btn span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.burger-btn::before {
  transform: translate(-50%, -0.45rem);
}

.burger-btn span:first-child {
  transform: translate(-50%, -50%);
}

.burger-btn span:last-child {
  transform: translate(-50%, 0.36rem);
}

.burger-btn span+span {
  margin-top: 0;
}

.burger-btn.is-open::before {
  opacity: 0;
}

.burger-btn.is-open span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger-btn.is-open span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Desktop / laptop */
@media (min-width: 1025px) {
  .desktop-nav {
    display: flex !important;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .header-bag,
  .burger-btn {
    display: none !important;
  }
}

/* Tablet and down: burger menu starts here */
@media (max-width: 1024px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .container {
    width: min(100% - 2.5rem, var(--container));
  }

  .nav {
    width: 100%;
    max-width: none;
    min-height: 5rem;
    padding: 0.75rem 1rem;
  }

  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .header-bag,
  .burger-btn {
    display: grid !important;
    width: 3rem;
    height: 3rem;
  }

  .logo-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
  }

  .logo-text {
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 12rem;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-title {
    max-width: 48rem;
    font-size: 4rem;
  }

  .hero-text {
    max-width: 44rem;
  }

  .hero-visual {
    min-height: 36rem;
    margin-top: 1rem;
  }

  .mobile-menu {
    inset: 7.25rem 1.25rem auto;
    z-index: 49;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-header {
    padding: 0.75rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .nav {
    min-height: 4.25rem;
    padding: 0.65rem;
  }

  .logo-icon,
  .header-bag,
  .burger-btn {
    width: 2.55rem;
    height: 2.55rem;
  }

  .logo-text {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .lang-switcher {
    padding: 0.2rem;
  }

  .lang-btn {
    padding: 0.38rem 0.5rem;
    font-size: 0.6rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .hero {
    padding-top: 9.5rem;
  }

  .hero-title,
  .section-title {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1.1rem;
    line-height: 1.75;
  }

  .mobile-menu {
    inset: 5.75rem 0.75rem auto;
  }
}

/* Very small phones */
@media (max-width: 430px) {
  .logo-text {
    max-width: 9.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lang-switcher {
    display: none;
  }

  .hero {
    padding-top: 8.75rem;
  }

  .hero-title,
  .section-title {
    font-size: 2.85rem;
  }
}