/* ============================================================
   FINE LINE & CO. — Luxury Event Studio
   Palette: blush · sage · cream · champagne gold
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --cream-deep: #F2EBDF;
  --blush: #EFD4D2;
  --blush-soft: #F8E5E1;
  --blush-deep: #D9A8A2;
  --sage: #A8B89C;
  --sage-soft: #C8D2BC;
  --sage-deep: #788C72;
  --gold: #C9A876;
  --gold-deep: #A88859;
  --ink: #2A2522;
  --ink-soft: #5E544D;
  --line: rgba(42, 37, 34, 0.12);
  --shadow-soft: 0 30px 60px -20px rgba(120, 95, 80, 0.18);
  --shadow-card: 0 25px 50px -15px rgba(120, 95, 80, 0.22);
  --radius: 22px;
  --radius-lg: 32px;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */
.h-display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.h-display { font-size: clamp(2.2rem, 5vw, 4.2rem); }
.h-mid { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400; }
em { font-style: italic; color: var(--gold-deep); font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.lede { color: var(--ink-soft); max-width: 620px; margin-top: 1rem; font-size: 1.05rem; }

.link-underline {
  display: inline-block;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease);
}
.link-underline:hover { color: var(--gold-deep); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--blush);
  color: var(--ink);
  box-shadow: 0 12px 28px -10px rgba(217, 168, 162, 0.55);
}
.btn--gold:hover {
  transform: translateY(-2px);
  background: var(--blush-deep);
  color: var(--cream);
  box-shadow: 0 18px 36px -10px rgba(217, 168, 162, 0.7);
}
.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--small { padding: 11px 22px; font-size: 0.8rem; }
.btn--full { width: 100%; padding: 18px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(250, 246, 240, 0);
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.nav.scrolled .nav__logo { font-size: 1.7rem; }
.logo-amp { color: var(--gold-deep); font-style: italic; font-family: var(--serif); }
.logo-mark { font-weight: 500; }
.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  position: relative;
  font-weight: 400;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; }
.nav__mobile { display: none; }

/* ============ HERO — full-bleed cinematic ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('images/booth-guests.jpg');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.08);
  animation: kenBurns 22s ease-in-out infinite alternate;
  z-index: -2;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,15,12,0.72) 0%, rgba(20,15,12,0.45) 30%, rgba(20,15,12,0.2) 55%, rgba(20,15,12,0.1) 100%),
    linear-gradient(180deg, rgba(20,15,12,0.5) 0%, rgba(20,15,12,0.15) 25%, rgba(20,15,12,0.15) 60%, rgba(20,15,12,0.75) 100%),
    radial-gradient(ellipse at 20% 70%, rgba(20,15,12,0.55), transparent 60%);
  z-index: -1;
}

@keyframes kenBurns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1%, -2%); }
}

/* Corner meta */
.hero__meta {
  position: absolute;
  top: 5.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.85);
  z-index: 3;
}
.hero__meta--tl { left: 2.5rem; }
.hero__meta--tr { right: 2.5rem; }
.meta-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: rgba(250, 246, 240, 0.5);
}

/* Main content — bottom-left anchored */
.hero__content {
  position: absolute;
  left: 2.5rem;
  bottom: 9rem;
  max-width: 760px;
  z-index: 3;
  animation: heroRise 1.2s var(--ease) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--cream);
  max-width: 640px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}
.hero__sub {
  margin-top: 1.4rem;
  max-width: 460px;
  color: rgba(250, 246, 240, 0.85);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1px solid rgba(250, 246, 240, 0.35);
  backdrop-filter: blur(12px);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Footer line of hero */
.hero__footline {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.18);
  color: rgba(250, 246, 240, 0.85);
  z-index: 3;
  flex-wrap: wrap;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.hero__rating small { font-size: 0.78rem; letter-spacing: 0.08em; }
.hero__rating strong { color: var(--cream); font-weight: 500; }
.hero__press {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
}
.hero__press small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__press span {
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
}
.hero__scroll-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scrollSlide 2.4s ease-in-out infinite;
}
@keyframes scrollSlide {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Nav over dark hero */
.nav:not(.scrolled) .nav__logo,
.nav:not(.scrolled) .nav__links a {
  color: var(--cream);
}
.nav:not(.scrolled) .logo-amp { color: var(--gold); }
.nav:not(.scrolled) .nav__links a::after { background: var(--gold); }

/* Float animations kept for other sections */
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(10px) rotate(-1deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink) 50%, transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__scroll small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}
.marquee__track span { color: var(--cream); }
.marquee__track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ INTRO ============ */
.intro {
  padding: 8rem 2.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6rem;
  align-items: center;
}

/* LEFT — image composition */
.intro__media {
  position: relative;
  height: 640px;
}
.intro__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.intro__img--main {
  top: 0; left: 0;
  width: 78%;
  height: 100%;
  background-image: url('images/floral-arch.jpg');
  background-position: center;
  border-radius: 22px 22px 22px 220px;
}
.intro__img--accent {
  bottom: 6%;
  right: 0;
  width: 44%;
  height: 50%;
  background-image: url('images/photo-strip.jpg');
  background-position: center;
  border-radius: 22px;
  border: 6px solid var(--cream);
}
.intro__sticker {
  position: absolute;
  top: 4%;
  right: 2%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  box-shadow: 0 20px 40px -15px rgba(42, 37, 34, 0.4);
  animation: rotateSlow 30s linear infinite;
  z-index: 2;
}
.intro__sticker strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.intro__sticker small {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.75);
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

/* RIGHT — copy */
.intro__copy h2 {
  margin: 0.5rem 0 1.5rem;
  max-width: 14ch;
}
.intro__lede {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  max-width: 500px;
}
.intro__copy > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}
.intro__signature {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 2rem 0 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 380px;
}
.sig-script {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.intro__signature small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* STATS — full-width band */
.intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 1.5rem;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--line);
}
.stat strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat strong span {
  font-size: 0.55em;
  color: var(--gold-deep);
  font-style: italic;
}
.stat small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .h-display { margin-top: 0.5rem; }

/* ============ SERVICES ============ */
.services {
  padding: 3rem 2.5rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(120, 95, 80, 0.12);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--blush-soft), var(--cream));
  display: flex;
  flex-direction: column;
}
.service-card--feature .service-card__img {
  flex: 1;
  min-height: 380px;
}
.service-card--feature .service-card__body {
  flex: 0 0 auto;
}
.service-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__body { padding: 1.8rem 1.8rem 2rem; flex: 1; }
.service-card--feature .service-card__body { padding: 2.5rem; }
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.service-card--feature h3 { font-size: 2.2rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }
.service-card .link-underline { margin-top: 1.2rem; }
.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--blush);
  color: var(--ink);
  border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.tag--gold { background: var(--blush-soft); color: var(--ink); }

/* Service images */
.service-img--booth { background-image: url('images/booth-guests.jpg'); background-position: center 25%; }
.service-img--360 { background-image: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=900&q=80'); }
.service-img--digital { background-image: url('images/photo-strip.jpg'); }
.service-img--backdrop { background-image: url('images/disco-butterfly.jpg'); }
.service-img--tables { background-image: url('images/gold-chairs.jpg'); }
.service-img--rentals { background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=900&q=80'); }
.service-img--styling { background-image: url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?w=900&q=80'); }

/* ============ PHOTO BOOTH PACKAGES (primary) ============ */
.packages {
  padding: 6rem 2.5rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.pkg-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(120, 95, 80, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(217, 168, 162, 0.25);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(120, 95, 80, 0.3);
}
.pkg-card--featured {
  border: 2px solid var(--blush-deep);
  transform: translateY(-12px);
}
.pkg-card--featured:hover { transform: translateY(-18px); }
.pkg-card--premium {
  border: 2px solid var(--gold);
}
.pkg-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--blush-deep);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 6px 16px -6px rgba(217, 168, 162, 0.7);
}
.pkg-flag--dark {
  background: var(--gold-deep);
  color: var(--cream);
}
.pkg-card__img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.pkg-img--social { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1200&q=85'); }
.pkg-img--signature { background-image: url('images/booth-guests.jpg'); background-position: center 25%; }
.pkg-img--small360 { background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?w=1200&q=85'); }
.pkg-img--large360 { background-image: url('images/disco-butterfly.jpg'); }
.pkg-card__body {
  padding: 1.6rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  text-align: center;
}
.pkg-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.7rem;
}
.pkg-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
}
.pkg-card__top .tag {
  margin-bottom: 0;
  font-size: 0.58rem;
  padding: 4px 10px;
  letter-spacing: 0.18em;
}
.pkg-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pkg-card__intro {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto 1.4rem;
  max-width: 200px;
  min-height: 40px;
}
.pkg-card__price {
  padding: 1.3rem 0 1.4rem;
  margin: 0 0 1.3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pkg-card__price strong {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
}
.pkg-card__price strong::before {
  content: '';
  display: none;
}
.pkg-card--featured .pkg-card__price strong { color: var(--ink); }
.pkg-card--premium .pkg-card__price strong { color: var(--gold-deep); font-style: italic; font-size: 2.6rem; }
.price-meta {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.price-meta em {
  display: block;
  margin-top: 4px;
  font-style: italic;
  color: var(--gold-deep);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  font-weight: 400;
}
.pkg-card__list {
  list-style: none;
  padding: 0 0 1.4rem;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pkg-card__list li {
  padding: 6px 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
}
.pkg-card__list li::before {
  content: '✦';
  display: inline-block;
  margin-right: 10px;
  font-size: 0.7rem;
  color: var(--gold);
  transform: translateY(-1px);
}
.pkg-card .btn--full {
  padding: 13px 16px;
  font-size: 0.8rem;
  margin-top: auto;
}

/* ============ PHOTO BOOTH FEATURE ============ */
.booth {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--blush-soft) 50%, var(--cream) 100%);
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.booth::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.15), transparent 70%);
  pointer-events: none;
}
.booth__top { text-align: center; max-width: 760px; margin: 0 auto 4rem; position: relative; }
.booth__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1400px;
  margin: 0 auto 6rem;
  position: relative;
}
.booth-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-soft);
}
.booth-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.booth-card__img {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.booth-img--luxury { background-image: url('images/booth-guests.jpg'); background-position: center 25%; }
.booth-img--360feat { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1200&q=85'); }
.booth-img--classic { background-image: url('images/photo-strip.jpg'); }
.booth-card__body { padding: 2rem; }
.booth-card h3 { font-size: 1.7rem; margin: 0.5rem 0 0.8rem; }
.booth-card p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 0.95rem; }
.booth-card__list { list-style: none; padding: 0; border-top: 1px solid var(--line); padding-top: 1rem; }
.booth-card__list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.booth-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 9px;
}

/* Features */
.features {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1rem;
  position: relative;
}
.features h3 { text-align: center; margin-bottom: 3rem; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature {
  padding: 2rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s var(--ease);
}
.feature:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.feature h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.feature p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* ============ EVENT RENTALS (secondary) ============ */
.rentals {
  padding: 7rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.rentals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.rental-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(120, 95, 80, 0.28);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(217, 168, 162, 0.25);
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  min-height: 360px;
}
.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px -24px rgba(120, 95, 80, 0.35);
}
.rental-card__img {
  background-size: cover;
  background-position: center;
  min-height: 360px;
  position: relative;
}
.rental-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 70%, rgba(217, 168, 162, 0.12));
}
.rental-img--tables { background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1200&q=85'); }
.rental-img--chairs { background-image: url('images/gold-chairs.jpg'); }
.rental-img--barrels { background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1200&q=85'); }
.rental-img--vintage { background-image: url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?w=1200&q=85'); }
.rental-card__body {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rental-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  display: block;
}
.rental-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.8rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.rental-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.8rem;
  max-width: 340px;
}
.rental-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.rental-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rental-card__price strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.rental-card:last-child .rental-card__price strong {
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold-deep);
}
.rental-card__price small {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.rental-card .btn {
  padding: 12px 22px;
  font-size: 0.8rem;
}
.rentals__note {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--blush-soft);
  border-radius: 18px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
}
.rentals__note strong { color: var(--gold-deep); }

/* ============ EVENT TYPES ============ */
.events {
  padding: 4rem 2.5rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: all 0.6s var(--ease);
}
.event-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
  z-index: 0;
}
.event-tile:hover::after { transform: scale(1.08); }
.event-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 37, 34, 0.7) 0%, rgba(42, 37, 34, 0.15) 50%, transparent 100%);
  z-index: 1;
}
.event-tile__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  transition: transform 0.5s var(--ease);
}
.event-tile:hover .event-tile__body { transform: translateY(-6px); }
.event-tile__body h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.event-tile__body p {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 6rem 2.5rem 8rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1500px;
  margin: 0 auto;
}
.masonry__col { display: flex; flex-direction: column; gap: 1.2rem; }
.masonry__item {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  transition: all 0.6s var(--ease);
  cursor: zoom-in;
  filter: saturate(0.95);
}
.masonry__item--tall { aspect-ratio: 3 / 5; }
.masonry__item:hover { transform: scale(1.02); filter: saturate(1.1); box-shadow: var(--shadow-card); }
.masonry__col:nth-child(even) { margin-top: 3rem; }

/* ============ ABOUT ============ */
.about {
  padding: 8rem 2.5rem;
  background: linear-gradient(135deg, var(--blush-soft) 0%, var(--cream) 60%);
}
.about__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img {
  height: 600px;
  background-image: url('images/floral-arch.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 220px 22px 22px 22px;
  box-shadow: var(--shadow-card);
}
.about__copy h2 { max-width: 14ch; margin: 1rem 0 1.5rem; }
.about__copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about__copy .btn { margin-top: 1rem; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 8rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.testimonial {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.testimonial--accent {
  background: linear-gradient(135deg, var(--sage-soft), var(--cream));
  transform: translateY(-20px);
}
.testimonial--accent:hover { transform: translateY(-26px); }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 1.2rem 0 1.5rem;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testimonial figcaption strong { font-weight: 500; font-size: 0.95rem; }
.testimonial figcaption span { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq {
  padding: 8rem 2.5rem;
  background: var(--cream-deep);
}
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq__list { margin-top: 3rem; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px -10px rgba(120, 95, 80, 0.15);
  transition: all 0.3s var(--ease);
}
.faq-item summary {
  list-style: none;
  padding: 1.6rem 2rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}
.faq-body {
  padding: 0 2rem 1.8rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 90%;
  animation: faqFade 0.4s var(--ease);
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CONTACT ============ */
.contact {
  padding: 7rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.14), transparent 65%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(216, 168, 162, 0.08), transparent 65%);
  pointer-events: none;
}
.contact__wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact__wrap .eyebrow { color: var(--gold); }
.contact__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--cream);
  margin: 0.6rem 0 1rem;
}
.contact__title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}
.contact__sub {
  color: rgba(250, 246, 240, 0.7);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

/* The phone number as hero element */
.contact__phone {
  margin: 3.5rem auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.contact__phone small {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact__phone-number {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.3s var(--ease);
  display: inline-block;
  position: relative;
}
.contact__phone-number:hover { color: var(--gold); }
.contact__phone-number::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.5;
}

.contact__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn--xl {
  padding: 18px 38px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  min-width: 160px;
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 240, 0.35);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Bottom contact strip */
.contact__strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.15);
  max-width: 740px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact__strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  flex: 1;
  min-width: 140px;
}
.contact__strip-item small {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact__strip-item span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
}
.contact__strip-divider {
  width: 1px;
  background: rgba(250, 246, 240, 0.12);
  align-self: stretch;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  font-family: var(--sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.15);
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; }
.chip span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}
.chip:hover span { border-color: var(--gold); }
.chip input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.form-note { display: block; text-align: center; color: var(--ink-soft); font-size: 0.78rem; margin-top: 0.5rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2.5rem 2rem;
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}
.footer__brand .logo-mark { color: var(--cream); font-size: 1.6rem; }
.footer__brand .logo-amp { color: var(--gold); font-size: 1.6rem; }
.footer__brand p { margin-top: 1.2rem; color: rgba(250, 246, 240, 0.65); max-width: 360px; line-height: 1.7; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.footer__cols h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  padding: 4px 0;
  color: rgba(250, 246, 240, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer__cols a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.5);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav__inner { padding: 0 1.5rem; }
  .hero__content { left: 1.5rem; right: 1.5rem; bottom: 11rem; }
  .hero__footline { left: 1.5rem; right: 1.5rem; gap: 1rem; }
  .hero__meta--tl { left: 1.5rem; }
  .hero__meta--tr { right: 1.5rem; }
  .hero__press { display: none; }
  .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro__media { height: 480px; }
  .intro__sticker { width: 100px; height: 100px; }
  .intro__sticker strong { font-size: 1.1rem; }
  .intro__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat:nth-child(3)::before { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--feature { grid-column: span 2; grid-row: auto; }
  .service-card--feature .service-card__img { height: 280px; }
  .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card--featured { transform: none; }
  .pkg-card--featured:hover { transform: translateY(-6px); }
  .rentals__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .booth__row { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry__col:nth-child(3), .masonry__col:nth-child(4) { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img { height: 400px; border-radius: 22px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial--accent { transform: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  .nav__links, .nav__inner > .btn { display: none; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
  }
  .nav__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
  }
  .nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__mobile.open { display: flex; }
  .nav__mobile a {
    padding: 8px 0;
    font-family: var(--serif);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__mobile .btn { margin-top: 1rem; align-self: flex-start; }

  .hero { min-height: 640px; }
  .hero__content { bottom: 8rem; }
  .hero__meta--tr { display: none; }
  .hero__meta--tl small { font-size: 0.66rem; }
  .hero__sub { font-size: 1rem; }
  .hero__footline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    bottom: 1.5rem;
  }
  .hero__scroll-inline { display: none; }

  .intro, .services, .events, .booth, .gallery, .about, .testimonials, .faq, .contact { padding-left: 1.5rem; padding-right: 1.5rem; }
  .intro, .booth, .gallery, .about, .testimonials, .faq, .contact { padding-top: 5rem; padding-bottom: 5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--feature { grid-column: auto; }
  .packages__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pkg-card__img { height: 220px; }
  .rentals__grid { grid-template-columns: 1fr; }
  .rental-card { grid-template-columns: 1fr; min-height: auto; }
  .rental-card__img { min-height: 240px; }
  .rental-card__body { padding: 1.8rem; }
  .contact__strip { gap: 1.2rem; padding-top: 2rem; }
  .contact__strip-divider { display: none; }
  .contact__strip-item { min-width: 0; flex: 1 1 100%; padding: 0.6rem 0; border-top: 1px solid rgba(250, 246, 240, 0.08); }
  .contact__strip-item:first-child { border-top: none; }
  .contact__ctas .btn { flex: 1; }
  .contact__meta--row { grid-template-columns: 1fr; }
  .contact__cta-row .btn { width: 100%; }
  .features__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr; }
  .masonry__col:nth-child(2) { display: none; margin-top: 0; }
  .contact__form { padding: 1.8rem; }
  .field-row { grid-template-columns: 1fr; }
  .intro__media { height: 380px; }
  .intro__img--main { border-radius: 22px 22px 22px 100px; }
  .intro__sticker { width: 80px; height: 80px; right: 4%; top: 6%; }
  .intro__sticker strong { font-size: 0.95rem; }
  .intro__sticker small { font-size: 0.5rem; }
  .intro__lede { font-size: 1.15rem; }
  .intro__stats { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .stat { padding: 0 1rem; }
  .stat strong { font-size: 2rem; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact__meta li { grid-template-columns: 1fr; gap: 4px; }
  .marquee__track { font-size: 1.2rem; }
}
