*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1f1914;
  --ink-soft: #5a4f46;
  --bone: #f5eee3;
  --paper: #fbf7f0;
  --paper-2: #f1e8da;
  --blush: #c0796f;
  --blush-deep: #a45f56;
  --sage: #7c8a6f;
  --line: rgba(31, 25, 20, 0.12);
  --line-soft: rgba(31, 25, 20, 0.07);
  --white: #ffffff;
  --footer: #14100c;
  --focus: #a45f56;
  --space: clamp(1.25rem, 4vw, 2.75rem);
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--blush-deep);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 0.7rem 1rem;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--blush-deep);
}

.script {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-style: normal;
  color: var(--blush);
}

.display {
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.caps-head {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 400;
  line-height: 1.25;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding: 4.5rem var(--space);
}

@media (min-width: 880px) {
  .section {
    padding: 7.5rem var(--space);
  }
}

.head-block {
  max-width: 40rem;
}

.head-block.center {
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  margin: 0.9rem 0 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.head-block.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Marquee */
.marquee {
  background: #241e18;
  color: rgba(245, 238, 227, 0.82);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 0;
  font-weight: 300;
}

.marquee-track {
  display: inline-block;
  animation: scroll 42s linear infinite;
}

.marquee-track span {
  padding: 0 1.6rem;
}

.marquee-track .dot {
  color: var(--blush);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--space);
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-logo {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .lg-script {
  font-family: "Pinyon Script", cursive;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--blush);
}

.nav-logo .lg-sub {
  font-size: 0.625rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
  padding-left: 3px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-links {
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--blush);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 22px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: none;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bone);
}

.nav-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--space) 1.5rem;
  flex-direction: column;
  gap: 0.4rem;
}

.site-nav.is-open .nav-panel {
  display: flex;
}

.nav-panel .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-panel .nav-links a {
  display: block;
  padding: 0.7rem 0;
}

.nav-panel .nav-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.6rem;
  text-align: center;
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: contents;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .nav-panel .nav-links {
    flex-direction: row;
    gap: 1.8rem;
  }

  .nav-panel .nav-links a {
    padding: 0;
  }

  .nav-cta,
  .nav-panel .nav-cta {
    display: inline-block;
  }

  .nav-panel .nav-cta {
    margin-top: 0;
  }
}

/* Buttons */
.btn-fill,
.btn-ghost,
.btn-ink,
.form-submit {
  display: inline-block;
  padding: 15px 34px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}

.btn-fill,
.form-submit {
  background: var(--blush);
  color: var(--white);
  border: 1px solid var(--blush);
}

.btn-fill:hover,
.form-submit:hover {
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(243, 235, 221, 0.55);
}

.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(243, 235, 221, 0.1);
  color: var(--bone);
}

.btn-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ink:hover {
  background: var(--ink);
  color: var(--bone);
}

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

/* Home hero — full-bleed bridal floral photo */
.hero {
  position: relative;
  min-height: min(92vh, 58rem);
  display: flex;
  align-items: center;
  padding: 5.5rem var(--space) 6.5rem;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: min(78%, 56rem);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 12%, #000 28%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 12%, #000 28%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(31, 25, 20, 0.94) 0%,
      rgba(31, 25, 20, 0.82) 24%,
      rgba(31, 25, 20, 0.45) 52%,
      rgba(31, 25, 20, 0.22) 100%
    ),
    linear-gradient(
      to top,
      rgba(31, 25, 20, 0.55) 0%,
      rgba(31, 25, 20, 0.15) 38%,
      transparent 62%
    );
}

.hero::before,
.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.hero-credit {
  position: absolute;
  right: var(--space);
  bottom: 1.35rem;
  z-index: 2;
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 238, 227, 0.52);
}

.hero-eyebrow {
  color: var(--bone);
  letter-spacing: 0.28em;
  opacity: 0;
  animation: rise 0.9s ease 0.1s forwards;
}

.hero-brand {
  margin: 1.15rem 0 0;
  line-height: 0.9;
}

.hero-brand-script {
  display: block;
  font-size: clamp(3.6rem, 11vw, 8.4rem);
  line-height: 0.82;
  color: var(--blush);
  opacity: 0;
  animation: rise 1s ease 0.25s forwards;
}

.hero-brand-spec {
  display: block;
  font-size: clamp(1.15rem, 3vw, 2.4rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 0.4em;
  padding-left: 0.12em;
  opacity: 0;
  animation: rise 1s ease 0.4s forwards;
}

.hero-rentpill {
  display: none;
}

.hero-rentpill b {
  color: #e4b2ab;
  font-weight: 500;
}

.hero-tag {
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.45;
  font-weight: 300;
  color: rgba(245, 238, 227, 0.94);
  max-width: 34rem;
  margin-top: 1.85rem;
  opacity: 0;
  animation: rise 1s ease 0.55s forwards;
}

.hero-tag strong {
  color: #e4b2ab;
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 238, 227, 0.78);
  margin: 1.15rem 0 2.6rem;
  opacity: 0;
  animation: rise 1s ease 0.68s forwards;
}

.hero .hero-actions {
  opacity: 0;
  animation: rise 1s ease 0.8s forwards;
  gap: 1.1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 235, 221, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll .bar {
  width: 1px;
  height: 38px;
  background: rgba(243, 235, 221, 0.55);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page hero */
.page-hero {
  position: relative;
  text-align: center;
  color: var(--bone);
  padding: 5rem var(--space) 4.5rem;
  background: var(--ink);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../svg/arch.svg") no-repeat center 18% / min(720px, 80%);
  opacity: 0.12;
  pointer-events: none;
}

.page-hero .eyebrow {
  color: #e4b2ab;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  margin: 1rem 0 0.2rem;
  color: var(--bone);
  position: relative;
}

.page-hero h1 .script {
  font-size: 1.15em;
  display: inline-block;
}

.page-hero .lead {
  font-size: 1.05rem;
  color: rgba(243, 235, 221, 0.9);
  max-width: 36rem;
  margin: 1.5rem auto 0;
  position: relative;
}

/* Collections — typography tiles, not a fake portfolio */
.bg-paper { background: var(--paper); }
.bg-bone { background: var(--bone); }
.bg-ink { background: var(--ink); color: var(--bone); }
.bg-ink .section-sub,
.bg-ink .eyebrow { color: #e4b2ab; }
.bg-ink .section-title { color: var(--bone); }

.quad {
  display: grid;
  gap: 1.1rem;
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .quad {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
  }
}

.quad-tile {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--bone);
  background: #241e19;
  border: 1px solid rgba(243, 235, 221, 0.08);
  padding: 2rem;
}

.quad-tile.tall {
  min-height: 22rem;
}

@media (min-width: 800px) {
  .quad-tile.tall {
    grid-row: span 2;
    min-height: auto;
  }
}

.quad-tile .motif {
  position: absolute;
  right: -6%;
  top: 8%;
  width: 55%;
  height: 90%;
  opacity: 0.28;
  color: var(--blush);
  pointer-events: none;
}

.quad-tile .motif-sage { color: var(--sage); opacity: 0.3; }

.quad-cap {
  position: relative;
  z-index: 2;
  max-width: 22rem;
}

.quad-cap .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #e4b2ab;
}

.quad-cap h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0.3rem 0 0.5rem;
  font-family: "Fraunces", serif;
}

.quad-cap p {
  font-size: 0.92rem;
  color: rgba(243, 235, 221, 0.86);
}

.quad-cap .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}

.quad-tile:hover .go .arr {
  transform: translateX(6px);
}

.go .arr {
  transition: transform 0.3s;
}

/* Difference */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.motif-panel {
  position: relative;
  min-height: 22rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  padding: 2rem;
}

.motif-panel svg {
  width: min(70%, 280px);
  height: auto;
}

.motif-panel .tagframe {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--paper);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  max-width: 16rem;
}

.motif-panel .tagframe .big {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--blush);
  line-height: 1.15;
}

.motif-panel .tagframe .small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 4px;
}

.diff-list {
  list-style: none;
  margin-top: 2rem;
}

.diff-list li {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.diff-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.diff-list .mk {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--blush);
  line-height: 1;
  min-width: 2rem;
}

.diff-list h3 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.diff-list p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Process steps */
.steps {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .steps.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 1.8rem 1.5rem;
}

.step .n {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--blush);
  font-size: 1.4rem;
}

.step h3 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 1.4rem;
  margin: 0.4rem 0 0.5rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Story */
.story-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.story-inner .mono {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  margin: 1.5rem 0;
}

.story-inner .mono em {
  font-style: italic;
  color: var(--blush);
}

.story-sign {
  font-family: "Pinyon Script", cursive;
  font-size: 2.3rem;
  color: var(--blush);
  margin-top: 1.6rem;
}

.story-role {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 3rem auto 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.05rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-sign {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--blush);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-sign {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0 0 1.4rem;
  max-width: 42rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-side .ci {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(243, 235, 221, 0.16);
}

.contact-side .ci:first-of-type {
  margin-top: 2rem;
}

.contact-side .k {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e4b2ab;
}

.contact-side a,
.contact-side span {
  color: var(--bone);
  text-decoration: none;
  font-size: 0.98rem;
}

.contact-side a:hover {
  color: #e4b2ab;
}

form .row {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  form .row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 235, 221, 0.72);
}

.form-light label {
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 0;
  font-size: 0.98rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid rgba(243, 235, 221, 0.28);
  background: transparent;
  color: var(--bone);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
}

.form-light input,
.form-light select,
.form-light textarea {
  color: var(--ink);
  border-bottom-color: var(--line);
}

input::placeholder,
textarea::placeholder {
  color: rgba(243, 235, 221, 0.4);
}

.form-light input::placeholder,
.form-light textarea::placeholder {
  color: rgba(27, 22, 18, 0.35);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blush);
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 6rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(243, 235, 221, 0.65);
  margin-top: 1rem;
}

.form-light .form-note {
  color: var(--ink-soft);
}

/* Packages */
.pkg-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pkg-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(27, 22, 18, 0.1);
}

.pkg-card.featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  background: var(--blush);
  color: var(--white);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.pkg-name {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.pkg-tagline {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.pkg-card.featured .pkg-tagline {
  color: rgba(243, 235, 221, 0.72);
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0.25rem;
}

.pkg-price .from {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.pkg-card.featured .pkg-price .from {
  color: #e4b2ab;
}

.pkg-price .amt {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 1;
}

.pkg-price-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

.pkg-card.featured .pkg-price-note {
  color: rgba(243, 235, 221, 0.7);
}

.pkg-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pkg-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 11px 0 11px 26px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.5;
}

.pkg-card.featured .pkg-list li {
  color: rgba(243, 235, 221, 0.84);
  border-color: rgba(243, 235, 221, 0.14);
}

.pkg-list li:last-child {
  border-bottom: none;
}

.pkg-list li::before {
  content: "✦";
  color: var(--blush);
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 0.7rem;
}

.pkg-foot-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 2.5rem;
}

.gst-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.addon-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 720px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .addon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.addon-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.addon-card h3 {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.addon-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.addon-price {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  color: var(--blush-deep);
  white-space: nowrap;
}

/* Booking */
.book {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 960px) {
  .book {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.book-choices,
.book-summary {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 1.8rem 1.5rem;
}

.book-summary {
  position: sticky;
  top: 6rem;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}

.choice:last-of-type {
  border-bottom: 0;
}

.choice input {
  width: auto;
  padding: 0;
  border: 0;
  margin-top: 0.35rem;
  accent-color: var(--blush-deep);
}

.choice h3 {
  font-size: 1rem;
  font-weight: 400;
}

.choice p {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.choice .amt {
  font-family: "Fraunces", serif;
  color: var(--blush-deep);
}

.qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.qty input[type="number"] {
  width: 3.4rem;
  border: 1px solid var(--line);
  padding: 0.35rem 0.4rem;
  color: var(--ink);
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 0.6rem;
  padding-top: 1rem;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.summary-row.deposit {
  color: var(--blush-deep);
  font-size: 1.05rem;
}

.book-alert {
  display: none;
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--blush);
  background: rgba(192, 121, 111, 0.1);
  color: var(--ink);
  font-size: 0.9rem;
}

.book-alert.is-on {
  display: block;
}

.book-alert a {
  color: var(--blush-deep);
}

/* CTA strip */
.cta-strip {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}

.cta-strip .eyebrow {
  color: #e4b2ab;
}

.cta-strip h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 1rem 0;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(243, 235, 221, 0.86);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

/* Prose / legal */
.prose {
  max-width: 42rem;
  margin: 0 auto;
}

.prose h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 1.7rem;
  margin: 2.4rem 0 0.8rem;
}

.prose h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 1.6rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--blush-deep);
}

.updated {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* Simple pages */
.simple {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 5rem var(--space);
}

.simple h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin: 0.8rem 0 1rem;
}

.simple p {
  max-width: 32rem;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(243, 235, 221, 0.55);
  padding: 4rem var(--space) 2.2rem;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.foot-brand .lg-script {
  font-family: "Pinyon Script", cursive;
  font-size: 2.3rem;
  color: var(--blush);
  display: block;
  line-height: 1;
}

.foot-brand p {
  font-size: 0.85rem;
  max-width: 18rem;
  margin-top: 1rem;
}

.foot-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.foot-col h2 {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
  font-weight: 400;
}

.foot-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(243, 235, 221, 0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s;
}

.foot-col a:hover {
  color: var(--blush);
}

.foot-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(243, 235, 221, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-eyebrow,
  .hero-brand-script,
  .hero-brand-spec,
  .hero-rentpill,
  .hero-tag,
  .hero-lead,
  .hero .hero-actions {
    opacity: 1;
    animation: none;
  }
}

/* Set cards */
.set-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .set-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.set-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.set-card.featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.set-card.featured .pkg-tagline,
.set-card.featured .tier-row p {
  color: rgba(243, 235, 221, 0.72);
}

.set-card.featured .tier-row {
  border-color: rgba(243, 235, 221, 0.14);
}

.set-card.featured .tier-price {
  color: #e4b2ab;
}

.set-card.featured .btn-ink {
  border-color: rgba(243, 235, 221, 0.45);
  color: var(--bone);
}

.set-card.featured .btn-ink:hover {
  background: var(--bone);
  color: var(--ink);
}

.tier-list {
  margin-top: 0.5rem;
  flex-grow: 1;
}

.tier-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.tier-row:last-child {
  border-bottom: 0;
}

.tier-row h4 {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tier-row p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.tier-price {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 1.55rem;
  color: var(--blush-deep);
  grid-row: 1 / span 2;
  align-self: center;
}

.tier-cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  padding: 0.55rem 1.1rem;
}

@media (min-width: 560px) {
  .tier-row {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .tier-price {
    grid-row: auto;
  }

  .tier-cta {
    grid-column: auto;
    margin-top: 0;
    justify-self: end;
  }
}

.set-media {
  position: relative;
  margin: -2rem -1.6rem 1.35rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(27, 22, 18, 0.04);
}

.set-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.set-credit {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  margin: 0;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(27, 22, 18, 0.55);
  backdrop-filter: blur(4px);
}

.set-card.featured .set-media {
  background: rgba(243, 235, 221, 0.06);
}

/* Homepage set photo strip */
.set-strip {
  background: var(--bone);
  padding: 0;
  border-bottom: 1px solid var(--line-soft);
}

.set-strip-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.4rem 0.4rem 0;
}

.set-strip-track figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.set-strip-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.set-strip-credit {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(90, 79, 70, 0.75);
  padding: 0.9rem 1rem 1.15rem;
  margin: 0;
}


@media (max-width: 720px) {
  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding: 5rem var(--space) 5.5rem;
  }

  .hero-photo {
    width: min(95%, 42rem);
    object-position: center 18%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 12%, #000 28%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 12%, #000 28%);
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(31, 25, 20, 0.9) 0%,
        rgba(31, 25, 20, 0.68) 40%,
        rgba(31, 25, 20, 0.4) 68%,
        rgba(31, 25, 20, 0.28) 100%
      ),
      linear-gradient(
        to right,
        rgba(31, 25, 20, 0.72) 0%,
        rgba(31, 25, 20, 0.35) 42%,
        rgba(31, 25, 20, 0.18) 100%
      );
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-credit {
    left: var(--space);
    right: auto;
    bottom: 0.85rem;
    font-size: 0.55rem;
  }
}

@media (max-width: 640px) {
  .set-strip-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.25rem 0.25rem 0;
  }
}

