:root {
  --black: #0b0b09;
  --ink: #1f1812;
  --muted: #756b60;
  --line: #e6d7bf;
  --paper: #fffaf1;
  --white: #ffffff;
  --red: #9b111e;
  --red-dark: #65090f;
  --green: #128c2f;
  --gold: #c9973f;
  --gold-soft: #f3dfad;
  --shadow: 0 22px 70px rgba(31, 24, 18, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 80px);
  background: rgba(6, 5, 4, 0.86);
  color: var(--white);
  border-bottom: 1px solid rgba(243, 223, 173, 0.2);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  text-decoration: none;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0.92;
  font-size: 24px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(180deg, #1eb348, var(--green));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(18, 140, 47, 0.25);
}

.button-primary svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 151, 63, 0.45);
  color: currentColor;
}

.button-dark {
  background: var(--black);
  color: var(--gold-soft);
}

.section {
  padding-inline: clamp(18px, 5vw, 80px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 130px);
  overflow: hidden;
  padding-block: clamp(58px, 7vw, 96px);
  background: #050403;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 90px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.9));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 33%, rgba(0, 0, 0, 0.24) 66%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42));
}

.hero-backdrop img {
  position: absolute;
  object-fit: cover;
}

.backdrop-main {
  inset: 0 0 0 30%;
  width: 70%;
  height: 100%;
  filter: saturate(1.12) contrast(1.08);
}

.backdrop-side {
  z-index: 1;
  width: 24vw;
  min-width: 260px;
  max-width: 410px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(243, 223, 173, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
  opacity: 0.9;
}

.side-one {
  right: 9vw;
  bottom: 7vw;
}

.side-two {
  right: 5vw;
  top: 11vw;
}

.script-name,
.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
}

.hero .script-name {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(54px, 8vw, 118px);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.24;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.56);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.occasion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.96)),
    var(--white);
  border-block: 1px solid var(--line);
}

.occasion-strip article {
  min-height: 186px;
  padding: 30px 28px;
  text-align: center;
}

.occasion-strip article + article {
  border-left: 1px solid var(--line);
}

.occasion-strip svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occasion-strip h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.occasion-strip p {
  margin: 0 auto;
  max-width: 240px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  padding-block: clamp(58px, 8vw, 112px);
  background: var(--paper);
}

.split-section h2,
.gallery-heading h2,
.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
}

.service-copy {
  color: #43382e;
  font-size: 19px;
  line-height: 1.65;
}

.service-copy ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 28px;
}

.service-copy li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.gallery-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 50% 0, rgba(201, 151, 63, 0.18), transparent 26rem),
    #120f0d;
  color: var(--white);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gallery-heading .section-label {
  color: var(--gold-soft);
}

.gallery-heading a {
  color: var(--gold-soft);
  font-weight: 850;
  text-decoration-color: rgba(243, 223, 173, 0.35);
  text-underline-offset: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  isolation: isolate;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.item-wide {
  grid-column: span 2;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, auto);
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(101, 9, 15, 0.96), rgba(155, 17, 30, 0.94)),
    var(--red);
  color: var(--white);
}

.contact-band .section-label {
  color: var(--gold-soft);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions .button-secondary {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 80px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
}

.footer-brand {
  font-size: 22px;
}

.mobile-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(18, 140, 47, 0.35);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-whatsapp svg path:last-child {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: 74px 58px;
  }

  .backdrop-main {
    inset: 0;
    width: 100%;
    opacity: 0.88;
  }

  .side-one,
  .side-two {
    display: none;
  }

  .occasion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .occasion-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-backdrop::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
  }

  .occasion-strip {
    grid-template-columns: 1fr;
  }

  .occasion-strip article,
  .occasion-strip article + article,
  .occasion-strip article:nth-child(3),
  .occasion-strip article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading a {
    display: inline-block;
    margin-top: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .item-wide {
    grid-column: span 1;
  }

  .contact-actions .button {
    width: 100%;
  }

  .mobile-whatsapp {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
