/* ============================================
   DUTCHIE — Bar & Restaurant, Santa Ponsa
   Holiday scrapbook + greasy spoon
   Handwritten elements, polaroids, marker scrawls
   ============================================ */

:root {
  --orange: #E8620A;
  --orange-dark: #C44E00;
  --orange-light: #FF8B3D;
  --mustard: #E5A100;
  --red: #C43131;
  --cream: #FDF6EC;
  --cream-warm: #F5EBD8;
  --paper: #F9F0E1;
  --paper-dark: #EDE0CA;
  --brown: #5C3D1E;
  --brown-light: #8B6D4B;
  --ink: #2B1D0E;
  --ink-2: #5C4A35;
  --ink-3: #8B7A67;
  --ink-4: #B5A899;
  --white: #FFFFFF;
  --marker: #E8620A;

  --container: 1200px;
  --section-pad: 100px;
  --r: 8px;
  --r-lg: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Work Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
h1, h2, h3 {
  font-family: 'Dela Gothic One', cursive;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

/* ===== HANDWRITTEN ELEMENTS ===== */
.handwritten {
  font-family: 'Caveat', cursive !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hand-drawn wobbly underline via SVG background */
.hand-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.hand-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4%;
  width: 108%;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2 9 C20 3, 40 11, 60 6 S100 12, 120 5 S160 11, 180 6 S195 9, 198 7' stroke='%23E8620A' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
}

/* Thicker underline on large headings — more gap */
.section-title .hand-underline {
  padding-bottom: 14px;
}
.section-title .hand-underline::after {
  height: 18px;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16'%3E%3Cpath d='M2 10 C20 3, 40 13, 60 6 S100 13, 120 5 S160 12, 180 6 S195 10, 198 7' stroke='%23E8620A' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* Section tags — handwritten style */
.section-tag {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-tag.handwritten {
  text-transform: none;
  letter-spacing: 0;
  background: none;
  padding: 0;
  border-radius: 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 500px;
  margin-bottom: 40px;
}

/* ===== SCROLL ANIMATIONS ===== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ===== TAPE EFFECT ===== */
.tape {
  position: absolute;
  width: 80px;
  height: 28px;
  background: rgba(232, 200, 120, 0.45);
  z-index: 2;
  border-radius: 2px;
}
.tape-tl { top: -10px; left: 20px; transform: rotate(-12deg); }
.tape-br { bottom: -10px; right: 20px; transform: rotate(8deg); }
.tape-center { top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 60px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0 24px;
}
.nav.scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(43, 29, 14, 0.08);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo-d {
  font-family: 'Dela Gothic One', cursive; font-size: 1.6rem;
  color: var(--white); transition: color 0.3s;
}
.nav.scrolled .logo-d { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8);
  padding: 8px 16px; border-radius: 30px; transition: all 0.25s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-link { color: var(--ink-2); }
.nav.scrolled .nav-link:hover { color: var(--ink); background: rgba(43,29,14,0.06); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; font-weight: 700; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.burger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s; }
.nav.scrolled .burger span { background: var(--ink); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; padding: 100px 24px 80px;
}

/* Parallax background image */
.hero-bg {
  position: absolute; inset: -20% 0; /* extra height for parallax travel */
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  will-change: transform;
}

/* Dark overlay with warm orange tint for brand consistency */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 29, 14, 0.5) 0%,
    rgba(140, 60, 10, 0.35) 50%,
    rgba(43, 29, 14, 0.6) 100%
  );
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-block; font-family: 'Caveat', cursive;
  font-size: 1.2rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  border: 2px solid var(--orange);
  padding: 8px 24px; border-radius: 40px; margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: var(--white); margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.12);
}
.hero-line-1, .hero-line-2, .hero-line-3 { display: block; }
.hero-line-2 {
  color: var(--cream); -webkit-text-stroke: 2px var(--white);
  text-shadow: none; paint-order: stroke fill;
}
/* Underline on hero is orange — pops against the dark overlay */
.hero-line-2 .hand-underline {
  padding-bottom: 12px;
}
.hero-line-2 .hand-underline::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18'%3E%3Cpath d='M2 11 C20 3, 40 15, 60 7 S100 15, 120 6 S160 14, 180 7 S195 11, 198 8' stroke='%23E8620A' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
  bottom: 0; height: 22px;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto 36px; font-weight: 400; line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-torn {
  position: absolute; bottom: -1px; left: -5%; width: 110%; height: 50px;
  background: var(--cream); z-index: 3;
  clip-path: polygon(
    0% 50%, 2% 30%, 5% 55%, 8% 25%, 11% 50%, 14% 35%, 17% 55%, 20% 30%,
    23% 48%, 26% 25%, 29% 52%, 32% 32%, 35% 55%, 38% 28%, 41% 50%, 44% 35%,
    47% 55%, 50% 25%, 53% 48%, 56% 30%, 59% 52%, 62% 35%, 65% 55%, 68% 28%,
    71% 50%, 74% 32%, 77% 55%, 80% 30%, 83% 52%, 86% 25%, 89% 48%, 92% 35%,
    95% 55%, 98% 30%, 100% 50%, 100% 100%, 0% 100%
  );
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 60px; font-weight: 700;
  font-size: 0.92rem; transition: all 0.25s; border: none;
}
.btn-primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 4px 16px rgba(43,29,14,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(43,29,14,0.3); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.about .btn-secondary, .contact .btn-secondary {
  background: transparent; color: var(--ink-2); border: 2px solid var(--ink-4);
}
.about .btn-secondary:hover, .contact .btn-secondary:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

/* ===== SIGNATURES — corkboard with pinned polaroids ===== */
.signatures {
  background: var(--cream);
  overflow: visible;
  position: relative;
  z-index: 1;
}
.sig-header { padding: 80px 0 0; }

/* Filter tabs */
.cork-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cork-filter {
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.cork-filter:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.cork-filter.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Corkboard — full bleed */
.corkboard {
  background: url("images/cork-background-tile.webp") repeat center;
  background-size: 300px;
  padding: 48px 40px 56px;
  margin-top: 32px;
  border-top: 6px solid #8B6D3A;
  border-bottom: 6px solid #8B6D3A;
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.15),
    inset 0 -4px 12px rgba(0,0,0,0.1);
}

/* Grid — 5 across, spacious, natural feel */
.cork-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 28px;
  padding: 20px 0;
}

/* Polaroid card on corkboard */
.sig-card.polaroid {
  background: var(--white);
  padding: 10px 10px 6px;
  border-radius: 2px;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
  cursor: default;
  transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px));
  transition: transform 0.3s, box-shadow 0.3s;
}
/* Hover lifts the WHOLE card — big scale + deep shadow */
.sig-card.polaroid:hover {
  transform: rotate(0deg) translate(var(--x, 0px), calc(var(--y, 0px) - 16px)) scale(1.25);
  box-shadow: 8px 16px 40px rgba(0,0,0,0.4), 3px 6px 12px rgba(0,0,0,0.2);
  z-index: 5;
}

/* Filter hide/show */
.sig-card.polaroid.cork-hidden {
  opacity: 0;
  transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px)) scale(0.8);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* Push pin */
.pin {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #E85050, #C43131 60%, #8B1A1A);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.3);
  z-index: 4;
}
.pin::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* Pop-in animation */
.pin-pop {
  opacity: 0;
  transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px)) scale(0.3);
  transition: none;
}
.pin-pop.popped {
  opacity: 1;
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--pop-delay, 0s);
}
@keyframes popIn {
  0% { opacity: 0; transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px)) scale(0.3); }
  60% { opacity: 1; transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px)) scale(1.06); }
  100% { opacity: 1; transform: rotate(var(--rot, 0deg)) translate(var(--x, 0px), var(--y, 0px)) scale(1); }
}

.sig-img-wrap {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 1px;
  background: var(--cream-warm);
}
.sig-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Caption — fits within polaroid naturally */
.sig-caption {
  padding: 8px 2px 2px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.sig-name {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink);
  min-width: 0;
}
.sig-price {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  margin-left: 4px;
}

/* Marker scrawl annotations — white with dark shadow for contrast */
.sig-scrawl {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 1rem; font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.6), -1px -1px 0 rgba(0,0,0,0.3), 0 0 6px rgba(0,0,0,0.4);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}
.marker-circle {
  top: 14px; right: 10px;
  transform: rotate(12deg);
  padding: 2px 8px;
  border: 2.5px solid #fff;
  border-radius: 50% 45% 55% 40%;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}
.marker-arrow {
  top: 14px; right: 10px;
  transform: rotate(-6deg);
}
.marker-arrow::before { content: '← '; }
.marker-underline {
  top: 18px; left: 14px;
  transform: rotate(-3deg);
}

/* Responsive corkboard */
@media (max-width: 960px) {
  .cork-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
}
@media (max-width: 640px) {
  .cork-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .corkboard { padding: 32px 16px 40px; }
  .sig-scrawl { display: none; }
  .sig-header { padding: 56px 0 0; }
  .cork-filters { gap: 6px; }
  .cork-filter { padding: 6px 14px; font-size: 1rem; }
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
  padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
  position: relative; z-index: 1;
}
.about::after {
  content: ''; position: absolute; bottom: -1px; left: -5%;
  width: 110%; height: 40px; background: var(--cream-warm); z-index: 2;
  clip-path: polygon(
    0% 45%, 3% 60%, 7% 38%, 10% 62%, 14% 35%, 17% 55%, 21% 40%, 24% 60%,
    27% 32%, 31% 55%, 34% 40%, 37% 62%, 41% 30%, 44% 52%, 47% 38%, 51% 58%,
    54% 35%, 57% 55%, 61% 38%, 64% 60%, 67% 35%, 71% 55%, 74% 42%, 77% 60%,
    81% 32%, 84% 55%, 87% 38%, 91% 58%, 94% 32%, 97% 52%, 100% 40%,
    100% 100%, 0% 100%
  );
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-p { font-size: 1rem; color: var(--ink-3); line-height: 1.75; margin-bottom: 20px; }
.about-perks { display: flex; gap: 28px; margin-top: 32px; }
.perk { display: flex; flex-direction: column; gap: 2px; }
.perk-icon { font-size: 1.6rem; margin-bottom: 4px; }
.perk strong { font-size: 0.85rem; color: var(--ink); }
.perk span { font-size: 0.75rem; color: var(--ink-3); }

.about-img { position: relative; }
.about-img-inner {
  border-radius: 4px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--white); padding: 12px;
  box-shadow: 4px 4px 0 var(--paper-dark); transform: rotate(2deg);
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream-warm); border-radius: 2px; gap: 12px;
}
.about-img-placeholder span { font-size: 3rem; }
.about-img-placeholder p { font-size: 0.82rem; color: var(--ink-4); }

.photo-caption {
  position: absolute; bottom: -28px; left: 20px;
  font-size: 1.1rem; color: var(--ink-3);
  transform: rotate(-3deg);
}

/* ===== REVIEWS — polaroid/postcard style ===== */
.reviews {
  background: var(--cream-warm);
  padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
  position: relative; z-index: 1;
}
.reviews::after {
  content: ''; position: absolute; bottom: -1px; left: -5%;
  width: 110%; height: 40px; background: var(--cream); z-index: 2;
  clip-path: polygon(
    0% 50%, 3% 35%, 6% 55%, 9% 30%, 12% 60%, 16% 38%, 19% 55%, 22% 32%,
    26% 58%, 29% 40%, 32% 60%, 36% 35%, 39% 52%, 42% 30%, 46% 55%, 49% 38%,
    52% 60%, 56% 32%, 59% 55%, 62% 38%, 66% 58%, 69% 30%, 72% 55%, 76% 40%,
    79% 60%, 82% 35%, 86% 52%, 89% 30%, 92% 55%, 96% 38%, 100% 50%,
    100% 100%, 0% 100%
  );
}

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 40px;
}

.polaroid-review {
  background: var(--white);
  padding: 16px 16px 20px;
  border-radius: 4px;
  box-shadow: 2px 3px 12px rgba(43,29,14,0.07), 0 1px 3px rgba(43,29,14,0.05);
  position: relative;
  transition: transform 0.3s;
}
.polaroid-review:nth-child(1) { transform: rotate(-2deg); }
.polaroid-review:nth-child(2) { transform: rotate(1.5deg); }
.polaroid-review:nth-child(3) { transform: rotate(-1deg); }
.polaroid-review:hover { transform: rotate(0deg) translateY(-4px) !important; z-index: 3; }

.review-inner { padding: 8px 4px 0; }

.review-stars {
  font-size: 1.1rem; color: var(--mustard);
  margin-bottom: 14px; letter-spacing: 2px;
}
.review-inner p {
  font-size: 0.95rem; color: var(--ink-2); line-height: 1.65;
  font-style: italic; margin-bottom: 20px;
}
.review-footer {
  display: flex; flex-direction: column; gap: 4px;
}
.review-from {
  font-size: 1.05rem; color: var(--ink);
}
.review-source {
  font-size: 0.7rem; color: var(--ink-4);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Scrawl annotation on review */
.review-scrawl {
  position: absolute; bottom: -26px; right: 16px;
  font-size: 1.05rem; color: var(--orange);
  transform: rotate(4deg);
}

/* ===== CONTACT — Postcard Style ===== */
.contact {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.postcard {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 6px;
  overflow: visible;
  box-shadow: 3px 4px 16px rgba(43,29,14,0.08), 0 1px 4px rgba(43,29,14,0.05);
  border: 1px solid var(--paper-dark);
  min-height: 480px;
  margin-top: 40px;
}

/* Left — map as postcard "front" */
.postcard-front {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--paper-dark);
}
.postcard-front iframe {
  width: 100%; height: 100%; min-height: 480px;
}

/* Right — handwritten details as postcard "back" */
.postcard-back {
  position: relative;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background:
    repeating-linear-gradient(
      transparent,
      transparent 31px,
      rgba(181, 168, 153, 0.15) 31px,
      rgba(181, 168, 153, 0.15) 32px
    );
  background-position: 0 12px;
}

/* Centre divider line (like a real postcard) */
.postcard-divider {
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  border-left: 1px dashed var(--ink-4);
}

/* Stamp — image */
.postcard-stamp {
  position: absolute;
  top: 20px; right: 24px;
  width: 80px;
  transform: rotate(3deg);
  filter: drop-shadow(1px 2px 3px rgba(43,29,14,0.15));
}
.postcard-stamp img {
  width: 100%; height: auto;
  border-radius: 2px;
}

/* Postmark — image */
.postcard-postmark {
  position: absolute;
  top: 16px; right: 90px;
  width: 110px;
  opacity: 0.35;
  transform: rotate(-8deg);
  pointer-events: none;
}
.postcard-postmark img {
  width: 100%; height: auto;
}

/* Handwritten message */
.postcard-message {
  margin-top: 8px;
  max-width: 280px;
}
.postcard-message p {
  font-size: 1.2rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.postcard-sign {
  margin-top: 8px;
  color: var(--orange) !important;
  font-weight: 700;
}

/* Address block */
.postcard-address {
  margin-top: auto;
  padding-top: 16px;
}
.postcard-to {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-4);
  display: block;
  margin-bottom: 4px;
}
.postcard-addr-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.postcard-addr-lines span {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
}

/* Contact details */
.postcard-details {
  display: flex;
  gap: 32px;
}
.postcard-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-4);
}
.pd-value {
  font-size: 1.15rem;
  color: var(--ink);
}
.pd-value a, a.pd-value {
  color: var(--orange);
  text-decoration: none;
}
.pd-value a:hover, a.pd-value:hover {
  color: var(--orange-dark);
}

/* CTA buttons */
.postcard-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}
.btn-outline {
  background: transparent;
  color: var(--ink-2);
  border: 2px solid var(--ink-4);
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* "Wish you were here" scrawl */
.postcard-scrawl {
  position: absolute;
  bottom: -28px; right: 40px;
  font-size: 1.3rem;
  color: var(--orange);
  transform: rotate(3deg);
  z-index: 2;
}

/* Responsive */
@media (max-width: 960px) {
  .postcard {
    grid-template-columns: 1fr;
  }
  .postcard-front {
    border-right: none;
    border-bottom: 1px solid var(--paper-dark);
  }
  .postcard-front iframe {
    min-height: 300px;
  }
  .postcard-divider { display: none; }
}

@media (max-width: 640px) {
  .postcard-back {
    padding: 28px 20px;
  }
  .postcard-details {
    flex-direction: column;
    gap: 16px;
  }
  .postcard-actions {
    flex-direction: column;
  }
  .postcard-actions .btn,
  .postcard-actions .btn-outline {
    width: 100%;
  }
  .postcard-stamp {
    width: 64px;
    top: 16px; right: 16px;
  }
  .postcard-postmark { display: none; }
  .postcard-scrawl {
    bottom: -24px; right: 20px;
    font-size: 1.1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Dela Gothic One', cursive; font-size: 1.8rem;
  color: var(--white); display: block; margin-bottom: 8px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange-light); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; }
.footer-contact a { color: var(--orange-light); font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem;
}
.credit-link { color: rgba(255,255,255,0.2); transition: color 0.2s; }
.credit-link:hover { color: rgba(255,255,255,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 360px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; gap: 56px; }
  .polaroid-review:nth-child(1),
  .polaroid-review:nth-child(2),
  .polaroid-review:nth-child(3) { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(43,29,14,0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links.open .nav-link { color: rgba(255,255,255,0.8); font-size: 1.2rem; }
  .nav-links.open .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .burger { display: flex; }
  .burger.active span { background: var(--white) !important; }

  .hero { padding: 120px 24px 80px; }
  .hero-line-2 { -webkit-text-stroke: 1px var(--white); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }

  .about-perks { flex-direction: column; gap: 20px; }
  .about-perks .perk { flex-direction: row; align-items: center; gap: 12px; }
  .perk-icon { margin-bottom: 0; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .sig-scrawl { display: none; }
}
