/* Events & Decor — design system */
:root {
  --bg: #faf7f4;
  --bg-elevated: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #9f1239;
  --accent-hover: #be123c;
  --accent-soft: rgba(159, 18, 57, 0.08);
  --gold: #b45309;
  --gold-soft: rgba(180, 83, 9, 0.12);
  --border: rgba(28, 25, 23, 0.08);
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 24px 48px rgba(28, 25, 23, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* Typography */
h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.lead {
  font-size: 1.125rem;
  max-width: 36ch;
}

/* Layout */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tight {
  padding-top: clamp(2rem, 5vw, 3rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: stretch;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav__toggle-bar::before {
  top: -7px;
}

.nav__toggle-bar::after {
  top: 7px;
}

.nav.is-open .nav__toggle-bar {
  background: transparent;
}

.nav.is-open .nav__toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    border-bottom: 1px solid var(--border);
  }

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

  .nav__links a {
    display: block;
    padding: 1rem 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(159, 18, 57, 0.25);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

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

.btn--ghost:hover {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}

/* Hero — split editorial layout (home) */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--split {
  min-height: auto;
  padding: clamp(3.25rem, 9vw, 5.5rem) 0;
  background: linear-gradient(
    165deg,
    #faf7f4 0%,
    #f3ebe4 38%,
    #faf7f4 72%,
    #f8f2ec 100%
  );
}

.hero--split::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(
    circle,
    rgba(159, 18, 57, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero--split__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

@media (max-width: 900px) {
  .hero--split__grid {
    grid-template-columns: 1fr;
  }
}

.hero--split__copy {
  max-width: 34rem;
}

.hero--split .hero__badge {
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero--split h1 {
  color: var(--text);
  text-shadow: none;
}

.hero--split .lead {
  color: var(--text-muted);
  max-width: none;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero--split .btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(159, 18, 57, 0.28);
}

.hero--split .btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.hero--split .btn--ghost {
  border-color: rgba(28, 25, 23, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.hero--split .btn--ghost:hover {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
}

.hero__highlights li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.85rem;
  margin-left: 0.85rem;
  border-left: 1px solid rgba(28, 25, 23, 0.12);
}

.hero__highlights li:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}

.hero--split__visual {
  position: relative;
}

.hero__frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(78vh, 560px);
  margin-left: auto;
  box-shadow:
    0 8px 40px rgba(28, 25, 23, 0.1),
    0 0 0 1px rgba(28, 25, 23, 0.06);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  left: 0;
  bottom: 8%;
  max-width: 240px;
  padding: 1.1rem 1.35rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero__frame {
    max-height: none;
    aspect-ratio: 16 / 11;
    margin-left: 0;
  }

  .hero__float-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

.hero__float-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero__float-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero__float-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Inner page hero with photo */
.page-hero--cover {
  position: relative;
  isolation: isolate;
  min-height: min(42vh, 380px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero--cover .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--cover .page-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-hero--cover .page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(28, 25, 23, 0.82) 0%,
    rgba(28, 25, 23, 0.45) 50%,
    rgba(159, 18, 57, 0.35) 100%
  );
}

.page-hero--cover .container {
  position: relative;
  z-index: 2;
}

.page-hero--cover .section__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--cover h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.page-hero--cover .lead {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 42ch;
}

.page-hero--cover .lead a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--cover .lead a:hover {
  color: #fff;
}

/* Page split: image + content */
.page-with-aside {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
}

@media (max-width: 960px) {
  .page-with-aside {
    grid-template-columns: 1fr;
  }
}

.page-with-aside > .form-card--full {
  grid-column: 1 / -1;
}

.page-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.page-aside__figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}

.page-aside__figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 960px) {
  .page-aside {
    position: static;
  }

  .page-aside__figure {
    aspect-ratio: 16 / 10;
  }
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-hero-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-hero-note a {
  font-weight: 600;
}

/* About & gallery helpers */
.about-lead {
  font-size: 1.125rem;
  max-width: 52ch;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e7e5e4;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.team-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-card__body p {
  margin: 0;
  font-size: 0.9rem;
}

.gallery-page {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .gallery-page {
    grid-template-columns: 1fr;
  }
}

.gallery-page__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.gallery-page__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

@media (max-width: 768px) {
  .gallery-page__item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

.gallery-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-page__item:hover img {
  transform: scale(1.05);
}

.gallery-page__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.75));
}

/* Services grid */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Split section */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.split__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin: 0 auto;
  max-width: var(--max);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--accent);
}

.cta-band .btn--primary:hover {
  background: var(--bg);
}

/* Footer */
.site-footer {
  background: #1c1917;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand .logo {
  color: #fff;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__legal {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__legal a:hover {
  color: #fff;
}

.footer__sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom {
  padding-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
}

/* Page header (inner pages) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-soft) 0%, transparent 100%);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  margin: 0 auto;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

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

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

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}

.contact-layout .form-card {
  max-width: none;
  margin-inline: 0;
}

.contact-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.map-placeholder--after-form {
  margin-top: 0;
}

.contact-visual {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #e7e5e4;
  aspect-ratio: 16 / 10;
  max-height: min(42vw, 340px);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.info-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
}

.info-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-card a,
.info-card span {
  color: var(--text);
  font-weight: 500;
}

.map-placeholder {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  height: 200px;
  background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px dashed var(--border);
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0));
  background: #1c1917;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
}

@media (min-width: 769px) {
  .cookie-banner {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(400px, calc(100vw - 2.5rem));
    max-width: 400px;
    padding: 1.25rem 1.35rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(0, 0, 0, 0.2);
  }
}

.cookie-banner__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #d4a574;
  margin-top: 0.1rem;
}

.cookie-banner__icon-svg {
  display: block;
}

.cookie-banner__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-banner__actions {
    justify-content: stretch;
  }
}

.cookie-banner .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.cookie-banner .btn--primary:hover {
  background: var(--bg);
  color: var(--accent-hover);
}

.cookie-banner .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cookie-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner__body {
    gap: 0.85rem;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    min-width: 0;
  }
}

body.has-cookie-banner {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Cookie banner entrance (injected by JS) */
.cookie-banner.cookie-banner--entrance {
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(0, calc(100% + 12px), 0);
}

.cookie-banner.cookie-banner--entrance.is-revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (min-width: 769px) {
  .cookie-banner.cookie-banner--entrance {
    transform: translate3d(calc(100% + 28px), 0, 0);
  }

  .cookie-banner.cookie-banner--entrance.is-revealed {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner.cookie-banner--entrance {
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
    will-change: auto;
  }
}

/* Scroll-triggered entrance animations */
.reveal-scroll {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-scroll.reveal-scroll--top {
  transform: translate3d(0, -20px, 0);
}

.reveal-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal code {
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: var(--accent-soft);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

.legal .legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-hero .legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* Toast / success */
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Stats strip */
.stats-strip {
  background: linear-gradient(120deg, #1c1917 0%, #292524 55%, #1c1917 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-strip__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat__plus,
.stat__suffix {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--gold);
  vertical-align: super;
  margin-left: 0.05em;
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Alternating section surface */
.section--surface {
  background: linear-gradient(180deg, #f3eee8 0%, var(--bg) 100%);
}

.section--faq {
  background: var(--bg);
}

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

/* Process timeline */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

@media (min-width: 769px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.process__step {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .process__step {
    padding-left: 4.5rem;
    margin-bottom: 1rem;
  }

  .process__step:last-child {
    margin-bottom: 0;
  }
}

.process__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.85;
  display: block;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .process__num {
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    margin-bottom: 0;
  }
}

.process__body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.process__body p {
  margin: 0;
  font-size: 0.95rem;
}

/* Gallery mosaic */
.gallery-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
}

@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
}

.gallery-mosaic__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #e7e5e4;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-mosaic__item:hover img {
  transform: scale(1.04);
}

.gallery-mosaic__item--large {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-mosaic__item--large {
    grid-row: auto;
  }

  .gallery-mosaic__item--large img {
    aspect-ratio: 16 / 10;
  }
}

.gallery-mosaic__item--large img {
  aspect-ratio: 3 / 4;
  min-height: 280px;
}

@media (max-width: 768px) {
  .gallery-mosaic__item--large img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

.gallery-mosaic__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.75));
}

/* Testimonials */
.testimonials .quote-card {
  margin: 0;
}

.quote-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-card p {
  flex: 1;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.quote-card footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.quote-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.quote-card__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 150;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 769px) {
  .whatsapp-float {
    right: 1.35rem;
    bottom: 1.35rem;
  }

  body.has-cookie-banner .whatsapp-float {
    bottom: 6.5rem;
  }
}

/* Instagram teaser grid */
.instagram-teaser {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
  .instagram-teaser {
    grid-template-columns: 1fr;
  }
}

.instagram-teaser__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.instagram-teaser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-embed {
  border: 0;
  width: 100%;
  height: min(320px, 50vw);
  border-radius: var(--radius-sm);
  display: block;
}

/* Service / package detail pages */
.prose-block {
  max-width: 720px;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.price-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.price-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

.service-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section h2 {
  margin-bottom: 0.5rem;
}

.video-wrap {
  margin: 1.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1c1917;
  box-shadow: var(--shadow-lg);
}

.video-wrap video,
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.shop-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shop-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.shop-card__body h3 {
  margin: 0 0 0.35rem;
}

.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.audience-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 52ch;
  margin: -1.5rem auto 0;
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card h3 {
  margin: 0 0 0.5rem;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0 1rem;
}

.package-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  flex: 1;
}

.package-card .btn {
  align-self: flex-start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  font-weight: 600;
  font-size: 0.95rem;
}
