/* Wild Play Photography — Shared Styles */

:root {
  --forest: #1C3937;
  --forest-light: #3A4A44;
  --cream: #F2EBDC;
  --sage-bg: #E4ECE7;
  --warm-white: #FFFFFF;
  --text: #484137;
  --text-light: #686A58;
  --sage: #839C94;
  --sage-muted: #A3BBA8;
  --copper: #9D7058;
  --copper-hover: #8A6049;
  --tan: #DCBA86;
  --golden: #C99A4A;
  --golden-bg: #DCBA86;
  --wheat: #F2E5BC;
  --border: #DDD5C6;
  --photo-bg: #DDD5C6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 20px; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ---- HAND-DRAWN DOODLE ELEMENTS ---- */

.squiggle-underline {
  position: relative;
  display: inline-block;
}

.squiggle-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -5%;
  width: 110%;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' fill='none'%3E%3Cpath d='M2 8 C20 2, 40 12, 60 6 S100 0, 120 6 S160 12, 180 4 S195 8, 198 6' stroke='%23E2BF83' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 12px;
}

.squiggle-underline-copper::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' fill='none'%3E%3Cpath d='M2 8 C20 2, 40 12, 60 6 S100 0, 120 6 S160 12, 180 4 S195 8, 198 6' stroke='%239D7058' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 12px;
}

.squiggle-strike {
  position: relative;
  display: inline-block;
}

.squiggle-strike::after {
  content: '';
  position: absolute;
  top: 62%;
  left: -6%;
  width: 112%;
  height: 14px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' fill='none'%3E%3Cpath d='M2 9 C20 3, 40 13, 60 7 S100 1, 120 7 S160 13, 180 5 S195 9, 198 7' stroke='%23F2EBDC' stroke-width='3' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 14px;
  pointer-events: none;
}

.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.doodle-star {
  width: 28px;
  height: 28px;
}

.doodle-star-sm {
  width: 18px;
  height: 18px;
}

.doodle-heart {
  width: 24px;
  height: 24px;
}

.doodle-swirl {
  width: 40px;
  height: 40px;
}

.doodle-arrow {
  width: 60px;
  height: 30px;
}

/* Polaroid-style photo frame */
.polaroid {
  background: white;
  padding: 12px 12px 40px;
  box-shadow: 0 4px 15px rgba(100, 70, 30, 0.15);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.polaroid:nth-child(even) {
  transform: rotate(1.5deg);
}

.polaroid:nth-child(3n) {
  transform: rotate(-0.5deg);
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.polaroid img {
  width: 100%;
  height: auto;
  display: block;
}

.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* Tape strip effect for polaroids */
.tape {
  position: absolute;
  width: 60px;
  height: 22px;
  background: rgba(226, 191, 131, 0.5);
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 2;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: transparent;
  transition: all 0.4s ease;
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(28, 57, 55, 0.45) 0%, rgba(28, 57, 55, 0.15) 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

nav.scrolled::before,
nav.nav-solid::before {
  opacity: 0;
}

nav.scrolled {
  background: rgba(28, 57, 55, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
nav.scrolled .nav-links a,
nav.scrolled .nav-cta {
  text-shadow: none;
}

nav.nav-solid {
  background: rgba(28, 57, 55, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
nav.nav-solid .nav-links a,
nav.nav-solid .nav-cta {
  text-shadow: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(250, 246, 240, 0.9);
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45), 0 0 2px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease, text-shadow 0.4s ease;
  padding-bottom: 6px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M2 5 C25 1, 50 8, 75 4 S125 0, 150 5 S185 7, 198 3' stroke='%23E2BF83' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 8px;
  transition: background-size 0.4s ease;
  pointer-events: none;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:not(.nav-cta):hover::after {
  background-size: 100% 8px;
}

.nav-links .active:not(.nav-cta)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M2 5 C25 1, 50 8, 75 4 S125 0, 150 5 S185 7, 198 3' stroke='%239D7058' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 8px;
}

.nav-links .active {
  color: var(--cream);
}

.nav-cta {
  background: var(--copper) !important;
  color: var(--warm-white) !important;
  padding: 0.5rem 1.4rem;
  font-family: 'Caveat', cursive !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--copper-hover) !important;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-copper {
  background: var(--copper);
  color: var(--warm-white);
}

.btn-copper:hover {
  background: var(--copper-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(157, 112, 88, 0.3);
}

/* Form sending state — triggered by js/forms.js */
.form-submit-btn.is-sending,
.btn-copper.is-sending {
  cursor: default;
  opacity: 0.7;
  transform: none !important;
  box-shadow: none !important;
  background: var(--copper);
  transition: opacity 0.3s ease, background 0.3s ease;
}

.form-submit-btn.is-sending::after,
.btn-copper.is-sending::after {
  content: '' !important;
  display: none !important;
}

.form-sending-message {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--forest);
  text-align: center;
  margin: 0.9rem 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  min-height: 1.6em;
}

.form-sending-message.is-visible {
  opacity: 1;
}

.form-error-message {
  color: #B54A3A;
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.field-error {
  color: #B54A3A;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  margin: 0.5rem 0 0;
}

.has-error {
  border-color: #B54A3A !important;
  box-shadow: 0 0 0 3px rgba(181, 74, 58, 0.12);
}

.has-error:focus {
  outline-color: #B54A3A;
}

.btn-outline {
  background: transparent;
  color: var(--copper);
  border: 1.5px solid var(--copper);
}

.btn-outline:hover {
  background: var(--copper);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(157, 112, 88, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 240, 0.35);
}

.btn-outline-light:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ---- SCRIPT ACCENT ---- */
.script-accent {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--sage-muted);
  opacity: 0.3;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

/* ---- SECTION DIVIDERS ---- */
.section-angle {
  height: 80px;
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-bottom: -2px;
  margin-top: -2px;
}

.section-angle::before {
  content: '';
  position: absolute;
  inset: -1px;
}

/*
  Default angle clip-paths (single diagonal). The wave variant lives below
  as an opt-in modifier — add `.angle-wave` to any .section-angle to swap
  the diagonal for a hand-drawn multi-crest wave. Use sparingly.
*/

.angle-cream-to-white { background: var(--warm-white); }
.angle-cream-to-white::before {
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-white-to-cream { background: var(--cream); }
.angle-white-to-cream::before {
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-white-to-forest { background: var(--forest); }
.angle-white-to-forest::before {
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-forest-to-cream { background: var(--cream); }
.angle-forest-to-cream::before {
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-cream-to-forest { background: var(--forest); }
.angle-cream-to-forest::before {
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-forest-to-white { background: var(--warm-white); }
.angle-forest-to-white::before {
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-white-to-golden { background: var(--golden-bg); }
.angle-white-to-golden::before {
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-golden-to-cream { background: var(--cream); }
.angle-golden-to-cream::before {
  background: var(--golden-bg);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-golden-to-forest { background: var(--warm-white); }
.angle-golden-to-forest::before {
  background: var(--golden-bg);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-golden-to-white { background: var(--warm-white); }
.angle-golden-to-white::before {
  background: var(--golden-bg);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-cream-to-golden { background: var(--golden-bg); }
.angle-cream-to-golden::before {
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-sage-to-white { background: var(--warm-white); }
.angle-sage-to-white::before {
  background: var(--sage-bg);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-white-to-sage { background: var(--sage-bg); }
.angle-white-to-sage::before {
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-sage-to-forest { background: var(--forest); }
.angle-sage-to-forest::before {
  background: var(--sage-bg);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-forest-to-sage { background: var(--sage-bg); }
.angle-forest-to-sage::before {
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

.angle-sage-to-golden { background: var(--golden-bg); }
.angle-sage-to-golden::before {
  background: var(--sage-bg);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 35% 100%, 0 60%);
}

.angle-forest-to-golden { background: var(--golden-bg); }
.angle-forest-to-golden::before {
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 65% 100%, 0 25%);
}

/*
  Wave modifier — add `.angle-wave` alongside any angle class to override
  the diagonal with a hand-drawn multi-crest wave. Adds a bit of height
  so the crests have room to breathe. Use sparingly for accent transitions.
*/
.section-angle.angle-wave {
  height: 100px;
}

.section-angle.angle-wave::before {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 38%,
    90% 78%,
    78% 32%,
    64% 76%,
    50% 30%,
    36% 78%,
    22% 34%,
    10% 72%,
    0 42%
  );
}

/* Wave-up variant: mirrors the wave so the source color is the lower half */
.section-angle.angle-wave-up::before {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 62%,
    90% 22%,
    78% 68%,
    64% 24%,
    50% 70%,
    36% 22%,
    22% 66%,
    10% 28%,
    0 58%
  );
}

.section-angle.angle-wave-up { height: 100px; }

/* ---- SECTIONS ---- */
section {
  padding: 7rem 3rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 720px;
}

h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
}

h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.5px currentColor;
}

h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
}

.section-tag {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: 0.02em;
}

/* ---- PHOTO PLACEHOLDERS ---- */
.photo-placeholder {
  background: var(--photo-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 157, 126, 0.08) 0%, transparent 50%);
}

.photo-placeholder .label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(28, 57, 55, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ---- FOOTER ---- */
footer {
  background: var(--forest);
  padding: 3.5rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-area img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-text .footer-brand {
  font-family: 'Marcellus', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.4);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 240, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.3);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(250, 246, 240, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--cream);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(250, 246, 240, 0.3);
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ---- THANK YOU PAGES ---- */
.ty-hero {
  background: var(--forest);
  padding: 10rem 3rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(226, 191, 131, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(163, 187, 168, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.ty-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ty-hero .section-tag {
  color: var(--golden-bg);
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}

.ty-hero h1 {
  margin-bottom: 2rem;
}

.ty-hero p {
  color: rgba(250, 246, 240, 0.8);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* Heart animation */
.ty-heart {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.ty-heart-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--golden-bg);
  opacity: 0;
  animation: heartCircle 0.5s ease 0.3s forwards;
}

.ty-heart-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  opacity: 0;
  animation: heartIcon 0.4s ease 0.7s forwards;
}

.ty-heart-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes heartCircle {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heartIcon {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  60% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Next steps */
.next-steps {
  background: var(--warm-white);
  padding: 7rem 3rem;
}

.next-steps-inner {
  max-width: 680px;
  margin: 0 auto;
}

.next-steps-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.75rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.next-step:first-child {
  border-top: 1px solid var(--border);
}

.next-step-num {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--golden-bg);
  opacity: 0.7;
  line-height: 1;
  text-align: center;
  padding-top: 0.1rem;
}

.next-step-content strong {
  font-family: 'Marcellus', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}

.next-step-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* Stay connected */
.stay-connected {
  background: var(--sage-bg);
  padding: 6rem 3rem;
}

.stay-connected-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.stay-connected-inner h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.stay-connected-inner p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

/* Explore more */
.explore-more {
  background: var(--warm-white);
  padding: 4.5rem 3rem;
}

.explore-more-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.explore-more-inner p {
  font-family: 'Marcellus', serif;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.explore-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.explore-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: var(--copper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.explore-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.explore-link:hover {
  color: var(--copper-hover);
}

.explore-link:hover::after {
  transform: translateX(4px);
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ---- HAMBURGER MENU ---- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 57, 55, 0.97);
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--copper);
}

.mobile-menu .btn-copper {
  margin-top: 1rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  section {
    padding: 5rem 1.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand-area {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .ty-hero {
    padding: 8rem 1.5rem 4.5rem;
  }

  .ty-hero h1 {
    font-size: 2.4rem;
  }

  .explore-more {
    padding: 3.5rem 1.5rem;
  }

  .explore-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Center primary CTAs on mobile across all pages.
     Targets fade-in wrappers around .btn (hero/closing/section CTAs)
     plus the testimonials CTA. Works for both block and flex parents. */
  div.fade-in:has(> .btn),
  .testimonials-cta {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.85rem;
  }

  .ty-hero h1 {
    font-size: 2rem;
  }

  .ty-heart {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
  }

  .ty-heart-circle {
    width: 64px;
    height: 64px;
  }

  .ty-heart-icon {
    width: 26px;
    height: 26px;
  }

  .next-step {
    grid-template-columns: 44px 1fr;
    gap: 1.25rem;
  }

  .next-step-num {
    font-size: 2.2rem;
  }
}

/* ---- GALLERY NAV LABELS (shared) ---- */
.gallery-nav-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.gallery-nav-subtext {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  white-space: nowrap;
}

.gallery-nav-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ---- LIGHTBOX (shared) ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 57, 55, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.3);
  background: rgba(28, 57, 55, 0.6);
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  border-color: rgba(250, 246, 240, 0.6);
  background: rgba(28, 57, 55, 0.8);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.3);
  background: rgba(28, 57, 55, 0.6);
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 1001;
}

.lightbox-arrow:hover {
  border-color: rgba(250, 246, 240, 0.6);
  background: rgba(28, 57, 55, 0.8);
}

.lightbox-arrow--prev { left: 1.5rem; }
.lightbox-arrow--next { right: 1.5rem; }


/* ==========================================================================
   PLAYFUL TOUCHES — subtle off-kilter rotations + hand-drawn margin notes
   ========================================================================== */

/*
  Card rotations: every icon-card section gets a faintly "tossed onto a table"
  feel. Amplitudes are small (~0.5deg) so the design still reads as intentional
  rather than broken. Hovering on a card squares it up gently.
*/

.location-card,
.thing-card,
.what-item,
.perfect-item {
  transition: transform 0.45s ease;
}

.location-card:nth-child(1),
.thing-card:nth-child(1),
.what-item:nth-child(1),
.perfect-item:nth-child(1) {
  transform: rotate(-0.55deg);
}

.location-card:nth-child(2),
.thing-card:nth-child(2),
.what-item:nth-child(2),
.perfect-item:nth-child(2) {
  transform: rotate(0.45deg);
}

.location-card:nth-child(3),
.thing-card:nth-child(3),
.what-item:nth-child(3),
.perfect-item:nth-child(3) {
  transform: rotate(-0.65deg);
}

.location-card:nth-child(4),
.thing-card:nth-child(4),
.what-item:nth-child(4),
.perfect-item:nth-child(4) {
  transform: rotate(0.55deg);
}

.perfect-item:nth-child(5) { transform: rotate(-0.4deg); }
.perfect-item:nth-child(6) { transform: rotate(0.6deg); }

.location-card:hover,
.thing-card:hover,
.what-item:hover,
.perfect-item:hover {
  transform: rotate(0deg);
}

