/* shotzy website – modern premium one-page */
:root {
  --cream: #fffbf1;
  --sage: #b2af9c;
  --forest: #465840;
  --olive: #819067;
  --ink: #000000;
  --paper: #f7f1e4;
  --wood: #c88745;
  --line: rgba(70, 88, 64, .18);
  --shadow: 0 28px 80px rgba(0,0,0,.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest);
  background:
    radial-gradient(circle at 20% 0%, rgba(178,175,156,.38), transparent 34rem),
    linear-gradient(180deg, var(--cream), var(--paper) 52%, var(--cream));
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(129,144,103,.22), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .7;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgba(70,88,64,.14);
  border-radius: 999px;
  background: rgba(255,251,241,.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 14px 44px rgba(70,88,64,.12);
  transition: .35s ease;
}

.site-header.is-scrolled {
  background: rgba(255,251,241,.92);
  top: 10px;
  box-shadow: 0 16px 54px rgba(70,88,64,.16);
}

.brand img {
  width: 168px;
  height: auto;
  display: block;
  filter: none;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  opacity: .88;
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--forest);
  transition: .25s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { bottom: 17px; }

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 190px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  line-height: .95;
  color: var(--forest);
}

h1 {
  font-size: clamp(54px, 8vw, 116px);
  letter-spacing: -.07em;
  max-width: 850px;
}

h2 {
  font-size: clamp(40px, 5.4vw, 78px);
  letter-spacing: -.055em;
}

h3 {
  font-size: 30px;
  letter-spacing: -.035em;
}

p {
  font-size: 17px;
  line-height: 1.75;
}

.lead {
  max-width: 660px;
  font-size: 20px;
  color: rgba(70,88,64,.82);
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 18px 38px rgba(70,88,64,.28);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--forest);
  background: rgba(255,251,241,.55);
}

.btn-card {
  background: rgba(70,88,64,.08);
  color: var(--forest);
  width: 100%;
}

.trust-row {
  margin-top: 42px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,251,241,.64);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  background: var(--sage);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 38%, rgba(70,88,64,.16));
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  background: rgba(255,251,241,.78);
  border: 1px solid rgba(255,251,241,.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
  border-radius: 20px;
  padding: 12px 16px;
  font-weight: 850;
  animation: floaty 4.5s ease-in-out infinite;
}

.floating-card img { width: 30px; }
.floating-card strong {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -.04em;
}
.floating-card span { font-size: 13px; }

.card-bottom { right: -16px; bottom: 54px; flex-direction: column; align-items: flex-start; gap: 0; }

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .55;
}
.orb-one {
  width: 520px;
  height: 520px;
  background: rgba(129,144,103,.35);
  top: 8%;
  left: -12%;
}
.orb-two {
  width: 420px;
  height: 420px;
  background: rgba(178,175,156,.4);
  right: -8%;
  bottom: 5%;
}

.split {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--olive);
  font-weight: 900;
}

.split p {
  max-width: 740px;
  color: rgba(70,88,64,.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.feature-card {
  background: rgba(255,251,241,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-height: 260px;
  transition: .35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(70,88,64,.14);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 42px;
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(129,144,103,.62);
}

.showcase {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.showcase::before {
  content: "shotzy";
  position: absolute;
  font-family: var(--font-display);
  font-size: 24vw;
  color: rgba(255,251,241,.035);
  left: -3vw;
  bottom: -8vw;
  letter-spacing: -.1em;
  pointer-events: none;
}

.showcase-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.showcase h2,
.showcase h3 {
  color: var(--cream);
}

.showcase p {
  color: rgba(255,251,241,.78);
}

.showcase-image {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,251,241,.10), rgba(255,251,241,.03));
  border: 1px solid rgba(255,251,241,.13);
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}

.showcase-image img {
  max-height: 720px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.28));
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,251,241,.88);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--cream);
  box-shadow: inset 0 0 0 6px var(--olive);
}

.section-head {
  text-align: center;
  max-width: 820px;
}

.section-head p:not(.eyebrow) {
  color: rgba(70,88,64,.76);
}

.pricing-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: rgba(255,251,241,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 80px rgba(70,88,64,.14);
}

.price-card.featured {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-20px);
  box-shadow: 0 28px 90px rgba(70,88,64,.24);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--cream);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255,251,241,.84);
}

.badge {
  position: absolute;
  right: 28px;
  top: 28px;
  background: var(--cream);
  color: var(--forest);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-top p {
  min-height: 72px;
  color: rgba(70,88,64,.72);
}

.price {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: 78px;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -.075em;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
  font-size: 14px;
}

.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--olive);
}

.price-card .btn {
  margin-top: auto;
}

.price-note {
  margin-top: 22px;
  color: rgba(70,88,64,.68);
  font-size: 14px;
  text-align: center;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(178,175,156,.12), rgba(178,175,156,.3));
}

.process {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-line {
  position: absolute;
  top: 54px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}

.step {
  position: relative;
  background: rgba(255,251,241,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 42px;
}

.step p {
  font-size: 15px;
  color: rgba(70,88,64,.74);
}

.events {
  padding: 34px 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.event-marquee {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  justify-content: center;
}

.event-marquee span {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 92px);
  letter-spacing: -.07em;
  color: var(--cream);
  opacity: .96;
}

.faq-grid {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 14px;
}

details {
  background: rgba(255,251,241,.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(70,88,64,.74);
}

.contact-section {
  padding-top: 60px;
}

.contact-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(70,88,64,.94), rgba(70,88,64,.82)),
    url("assets/fotobox-room.png") center/cover;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card p,
.contact-card .eyebrow {
  color: var(--cream);
}

.contact-card p {
  color: rgba(255,251,241,.82);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255,251,241,.94);
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--forest);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(70,88,64,.16);
  background: #fff;
  color: var(--forest);
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

textarea { resize: vertical; }

input:focus, textarea:focus, select:focus {
  border-color: rgba(70,88,64,.55);
  box-shadow: 0 0 0 5px rgba(129,144,103,.18);
}

.privacy-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(70,88,64,.64) !important;
}

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,251,241,.72);
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
}

/* animations */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 940px) {
  .site-header {
    border-radius: 26px;
    width: calc(100% - 24px);
  }

  .nav-toggle { display: block; z-index: 2; background: var(--forest); }
  .nav-toggle span { background: var(--cream); }

  .main-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: var(--forest);
    flex-direction: column;
    justify-content: center;
    font-size: 30px;
    font-family: var(--font-display);
    transform: translateY(-110%);
    transition: transform .35s ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    top: 22px;
    transform: rotate(45deg);
  }
  body.nav-open .nav-toggle span:last-child {
    bottom: 22px;
    transform: rotate(-45deg);
  }

  .hero-grid,
  .split,
  .showcase-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .process-line { display: none; }

  .showcase-grid {
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .hero { padding-top: 150px; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; text-align: center; }
  .floating-card { display: none; }
  .contact-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .price { font-size: 64px; }
  .event-marquee {
    justify-content: flex-start;
    animation: marquee 18s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-52%); }
  }
}

/* ---- Mobile optimization patch v4 ---- */
@media (max-width: 940px) {
  .site-header {
    top: 12px;
    padding: 8px 10px 8px 14px;
    border-radius: 22px;
    width: calc(100% - 24px);
    background: rgba(255,251,241,.92);
  }

  .brand {
    position: relative;
    z-index: 80;
  }

  .brand img {
    width: 142px;
    max-height: 48px;
    object-fit: contain;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    z-index: 90;
    background: var(--forest);
    flex: 0 0 auto;
  }

  .nav-toggle span {
    background: var(--cream);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 118px 28px 42px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    color: var(--cream);
    background:
      radial-gradient(circle at 20% 8%, rgba(255,251,241,.14), transparent 18rem),
      linear-gradient(180deg, rgba(70,88,64,.98), rgba(0,0,0,.96));
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .36s cubic-bezier(.2,.8,.2,1), opacity .24s ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255,251,241,.16);
    color: var(--cream);
    opacity: 1;
    font-family: var(--font-display);
    font-size: clamp(31px, 9vw, 56px);
    line-height: 1;
    letter-spacing: -.055em;
  }

  .main-nav a::after {
    content: "↗";
    font-family: var(--font-body);
    font-size: 18px;
    opacity: .55;
  }

  .main-nav .nav-cta {
    margin-top: 26px;
    min-height: 58px;
    justify-content: center;
    border: 1px solid rgba(255,251,241,.22);
    border-radius: 999px;
    background: var(--cream);
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 0;
  }

  .main-nav .nav-cta::after {
    content: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 76px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  h1 {
    max-width: 12ch;
  }

  .lead {
    margin-top: 22px;
    max-width: 100%;
  }

  .image-frame {
    border-radius: 26px;
    transform: rotate(0deg);
  }

  .hero-photo {
    aspect-ratio: 4 / 4.7;
  }

  .card-bottom {
    display: flex;
    right: 10px;
    bottom: 12px;
    padding: 10px 13px;
  }

  .card-bottom strong {
    font-size: 28px;
  }

  .feature-card,
  .price-card,
  .step,
  .contact-form,
  details {
    border-radius: 22px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .price-card {
    min-height: auto;
    padding: 26px;
  }

  .price-top p {
    min-height: auto;
  }

  .showcase-image {
    padding: 14px;
  }

  .showcase-image img {
    max-height: 520px;
  }

  .event-marquee {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
    letter-spacing: -.075em;
  }

  h2 {
    font-size: clamp(36px, 12vw, 56px);
  }

  h3 {
    font-size: 27px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.65;
  }

  p {
    font-size: 16px;
    line-height: 1.68;
  }

  .brand img {
    width: 128px;
    max-height: 42px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span:first-child { top: 15px; }
  .nav-toggle span:last-child { bottom: 15px; }

  body.nav-open .nav-toggle span:first-child {
    top: 20px;
  }

  body.nav-open .nav-toggle span:last-child {
    bottom: 20px;
  }

  .main-nav {
    padding: 106px 24px 34px;
  }

  .main-nav a {
    min-height: 60px;
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .trust-row {
    margin-top: 28px;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .floating-card:not(.card-bottom) {
    display: none;
  }

  .card-bottom {
    position: static;
    width: fit-content;
    margin: -64px 14px 0 auto;
    transform: none;
  }

  .split,
  .showcase-grid,
  .faq-grid,
  .contact-card {
    gap: 28px;
  }

  .feature-grid,
  .pricing-grid,
  .process {
    margin-top: 34px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-number {
    margin-bottom: 30px;
  }

  .showcase::before {
    font-size: 40vw;
    bottom: -12vw;
  }

  .price {
    font-size: 58px;
    margin: 12px 0 22px;
  }

  .process {
    gap: 14px;
  }

  .step span {
    margin-bottom: 28px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-form {
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Hero facts refinement v5 ---- */
.trust-row {
  display: none !important;
}

.hero-facts {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  border-top: 1px solid rgba(70,88,64,.18);
  border-bottom: 1px solid rgba(70,88,64,.18);
}

.hero-facts div {
  padding: 18px 22px 18px 0;
  border-right: 1px solid rgba(70,88,64,.18);
}

.hero-facts div + div {
  padding-left: 22px;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--forest);
}

.hero-facts span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  color: rgba(70,88,64,.66);
}

@media (max-width: 760px) {
  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(70,88,64,.16);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .hero-facts strong {
    font-size: 20px;
  }
}

/* ---- Package 2 button fix v6 ---- */
.price-card.featured .btn-card {
  background: rgba(255,251,241,.92);
  color: var(--forest);
  border-color: rgba(255,251,241,.92);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.price-card.featured .btn-card:hover {
  background: var(--cream);
  color: var(--forest);
}

/* ---- Package guest ranges v7 ---- */
.guest-range {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(70,88,64,.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.price-card.featured .guest-range {
  background: rgba(255,251,241,.13);
  color: var(--cream);
  border: 1px solid rgba(255,251,241,.18);
}

@media (max-width: 640px) {
  .guest-range {
    margin-top: 8px;
  }
}

/* ---- Templates gallery v13 ---- */
.templates-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(129,144,103,.10), transparent 18rem),
    linear-gradient(180deg, rgba(255,251,241,.62), rgba(178,175,156,.12));
}

.templates-wrap {
  margin-top: 42px;
}

.template-toolbar {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(70,88,64,.12);
  background: rgba(255,251,241,.78);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(70,88,64,.08);
}

.template-toggle {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.template-toggle.is-active {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(70,88,64,.18);
}

.templates-slider {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px 0;
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.templates-slider::before,
.templates-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.templates-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,251,241,.96), transparent);
}

.templates-slider::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(255,251,241,.96), transparent);
}

.templates-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: template-marquee 42s linear infinite;
  will-change: transform;
}

.templates-slider:hover .templates-track {
  animation-play-state: paused;
}

@keyframes template-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}

.template-card {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,251,241,.86);
  border: 1px solid rgba(70,88,64,.12);
  box-shadow: 0 22px 48px rgba(70,88,64,.10);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.template-card.is-5x15 {
  width: 176px;
}

.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(70,88,64,.14);
}

.template-card figure {
  margin: 0;
}

.template-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #f3f3f3;
}

.template-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  color: var(--forest);
}

.template-meta strong {
  font-size: 15px;
}

.template-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(129,144,103,.12);
  color: var(--olive);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.templates-note {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(70,88,64,.70);
}

@media (max-width: 940px) {
  .template-card { width: 214px; }
  .template-card.is-5x15 { width: 154px; }
}

@media (max-width: 640px) {
  .template-toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .template-toggle {
    flex: 1;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .templates-slider {
    margin-top: 22px;
    border-radius: 22px;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }

  .templates-track {
    gap: 16px;
    animation-duration: 34s;
  }

  .template-card {
    width: 190px;
    border-radius: 18px;
  }

  .template-card.is-5x15 {
    width: 134px;
  }

  .template-meta {
    padding: 12px 13px;
  }

  .templates-note {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ---- Templates infinite loop refinement v14 ---- */
.templates-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  will-change: transform;
  animation: template-marquee var(--template-duration, 42s) linear infinite;
}

@keyframes template-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--template-loop-distance, 1000px))); }
}

@media (max-width: 640px) {
  .templates-track {
    gap: 16px;
  }
}

/* ---- Template lightbox v15 ---- */
.template-card {
  cursor: zoom-in;
}

.template-lightbox[hidden] {
  display: none !important;
}

.template-lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
}

.template-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.template-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  max-height: 90vh;
  display: grid;
  place-items: center;
}

.template-lightbox-content {
  width: 100%;
  max-height: 90vh;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,251,241,.98);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.template-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.template-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .template-lightbox {
    padding: 14px;
  }

  .template-lightbox-dialog {
    width: 100%;
    max-height: 92vh;
  }

  .template-lightbox-content {
    padding: 12px;
    border-radius: 20px;
  }

  .template-lightbox-close {
    top: -10px;
    right: -4px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* ---- Templates customization info v16 ---- */
.templates-info {
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(70,88,64,.14);
  background:
    radial-gradient(circle at 92% 10%, rgba(129,144,103,.14), transparent 12rem),
    rgba(255,251,241,.78);
  box-shadow: 0 18px 46px rgba(70,88,64,.08);
}

.templates-info h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.templates-info p {
  margin: 0;
  max-width: 850px;
  color: rgba(70,88,64,.74);
}

@media (max-width: 640px) {
  .templates-info {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
  }
}

/* ---- Template controls and lightbox fix v18 ---- */
.templates-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.template-skip-controls {
  display: flex;
  gap: 10px;
}

.template-skip {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(70,88,64,.14);
  border-radius: 999px;
  background: rgba(255,251,241,.86);
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(70,88,64,.08);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.template-skip:hover {
  transform: translateY(-2px);
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(70,88,64,.16);
}

.template-card {
  cursor: zoom-in;
}

.template-card img {
  pointer-events: none;
}

.template-lightbox[hidden] {
  display: none !important;
}

.template-lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
}

.template-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.template-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  max-height: 90vh;
  display: grid;
  place-items: center;
}

.template-lightbox-content {
  width: 100%;
  max-height: 90vh;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,251,241,.98);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.template-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.template-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .templates-controls {
    align-items: stretch;
  }

  .template-toolbar {
    width: 100%;
  }

  .template-skip-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .template-skip {
    width: 46px;
    height: 46px;
  }

  .template-lightbox {
    padding: 14px;
  }

  .template-lightbox-dialog {
    width: 100%;
    max-height: 92vh;
  }

  .template-lightbox-content {
    padding: 12px;
    border-radius: 20px;
  }

  .template-lightbox-close {
    top: -10px;
    right: -4px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}
