:root {
  /* Palette: light blush base, pink/mauve accents */
  /* Refined rose palette (cooler, more elegant) */
  --roseDeep: #6f3a43;
  --rose: #9b5a63;
  --roseDust: #c48a92;
  --roseLight: #edc7cd;
  --ivory: #fbf2f4;
  --ink: #241013;

  /* RGB helpers for consistent rgba usage */
  --roseDeep-rgb: 111, 58, 67;
  --rose-rgb: 155, 90, 99;
  --roseDust-rgb: 196, 138, 146;
  --roseLight-rgb: 237, 199, 205;
  --ivory-rgb: 251, 242, 244;

  /* Backgrounds: keep them pink (not white) */
  --bg: var(--ivory);
  --bg2: #f2d7db;
  --surface: rgba(var(--ivory-rgb), 0.9);
  --surface2: rgba(var(--roseLight-rgb), 0.44);
  --text: var(--ink);
  --muted: rgba(36, 16, 19, 0.74);
  --accent: var(--rose);
  --accent2: var(--roseLight);
  --border: rgba(var(--roseDeep-rgb), 0.18);
  --shadow: 0 18px 70px rgba(36, 16, 19, 0.14);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 18% 12%, rgba(var(--roseLight-rgb), 0.55), rgba(var(--ivory-rgb), 0)),
    radial-gradient(900px 520px at 86% 24%, rgba(var(--roseDust-rgb), 0.3), rgba(var(--ivory-rgb), 0)),
    linear-gradient(135deg, rgba(var(--roseLight-rgb), 0.18), rgba(var(--rose-rgb), 0.1)),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: rgba(var(--roseLight-rgb), 0.62);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
  border: 1px solid rgba(var(--rose-rgb), 0.35);
}
.skip:focus {
  left: 10px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 220ms ease,
    opacity 220ms ease;
  border-bottom: 1px solid transparent;
  background: rgba(var(--ivory-rgb), 0.78);
  backdrop-filter: blur(10px);
}
.header.is-elevated {
  background: rgba(var(--ivory-rgb), 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(124, 74, 74, 0.14);
  box-shadow: 0 12px 40px rgba(20, 6, 18, 0.12);
}
.header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.brand__logo {
  height: clamp(96px, 7.4vw, 140px);
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}
.brand__text {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.nav {
  display: none;
  gap: 18px;
  align-items: center;
}
.nav__link {
  text-decoration: none;
  font-size: 13px;
  color: rgba(43, 20, 20, 0.8);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav__link:hover {
  color: var(--ink);
  background: rgba(var(--roseLight-rgb), 0.28);
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.btn:hover {
  border-color: rgba(var(--rose-rgb), 0.55);
}
.btn--primary {
  border-color: rgba(var(--rose-rgb), 0.55);
  background:
    linear-gradient(180deg, rgba(var(--roseDust-rgb), 0.62), rgba(var(--roseLight-rgb), 0.9));
}
.btn--ghost {
  background: rgba(var(--ivory-rgb), 0.7);
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(124, 74, 74, 0.18);
  background: rgba(var(--ivory-rgb), 0.86);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.iconbtn span {
  display: block;
  height: 2px;
  background: rgba(43, 20, 20, 0.72);
  border-radius: 999px;
}

.mobile {
  border-top: 1px solid rgba(124, 74, 74, 0.14);
  background: rgba(var(--ivory-rgb), 0.96);
  backdrop-filter: blur(10px);
}
.mobile__inner {
  padding: 12px 18px 18px;
  display: grid;
  gap: 10px;
}
.mobile__link {
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(124, 74, 74, 0.14);
  background: rgba(var(--ivory-rgb), 0.88);
}
.mobile__link:hover {
  border-color: rgba(var(--rose-rgb), 0.5);
}
.mobile__cta {
  margin-top: 6px;
}

.btn--wa {
  gap: 10px;
  border-color: rgba(var(--rose-rgb), 0.42);
  background: linear-gradient(180deg, rgba(var(--rose-rgb), 0.18), rgba(var(--roseDust-rgb), 0.1));
  color: rgba(43, 20, 20, 0.92);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(var(--rose-rgb), 0.14) inset;
}
.btn--wa:hover {
  border-color: rgba(var(--rose-rgb), 0.65);
  background: linear-gradient(180deg, rgba(var(--rose-rgb), 0.24), rgba(var(--roseDust-rgb), 0.12));
}
.btn--wa svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.fab {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 120;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(var(--rose-rgb), 0.5);
  background: linear-gradient(180deg, rgba(var(--rose-rgb), 0.32), rgba(var(--roseDust-rgb), 0.16));
  color: rgba(43, 20, 20, 0.98);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(var(--ivory-rgb), 0.3) inset;
  backdrop-filter: blur(10px);
}
.fab:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--roseDeep-rgb), 0.55);
  background: linear-gradient(180deg, rgba(var(--roseDeep-rgb), 0.26), rgba(var(--rose-rgb), 0.16));
}
.fab:active {
  transform: translateY(0);
}
.fab svg {
  width: 22px;
  height: 22px;
}
.fab:focus-visible {
  outline: 3px solid rgba(var(--rose-rgb), 0.35);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    /* Keep the photo crisp: lighter overlays */
    linear-gradient(180deg, rgba(var(--ivory-rgb), 0.04), rgba(var(--ivory-rgb), 0.24)),
    linear-gradient(135deg, rgba(var(--roseLight-rgb), 0.06), rgba(var(--roseDust-rgb), 0.18)),
    url("./assets/IMG_8885.PNG");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative;
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.hero__side {
  display: grid;
  gap: 14px;
}
.hero__content {
  position: relative;
  max-width: 640px;
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: -16px -14px -18px -14px;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, rgba(var(--ivory-rgb), 0.74), rgba(var(--ivory-rgb), 0.4));
  border: 1px solid rgba(124, 74, 74, 0.12);
  box-shadow: 0 22px 70px rgba(43, 20, 20, 0.12);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.hero__logoWrap {
  position: relative;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 16px;
  border-radius: 26px;
  background:
    radial-gradient(120% 140% at 20% 10%, rgba(var(--roseLight-rgb), 0.26), transparent 58%),
    linear-gradient(180deg, rgba(var(--ivory-rgb), 0.66), rgba(var(--ivory-rgb), 0.34));
  border: 1px solid rgba(var(--roseDeep-rgb), 0.16);
  box-shadow:
    0 26px 70px rgba(43, 20, 20, 0.16),
    0 0 0 1px rgba(var(--ivory-rgb), 0.32) inset;
  backdrop-filter: blur(8px) saturate(1.15);
}
.hero__logoWrap::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--ivory-rgb), 0.22), rgba(var(--ivory-rgb), 0));
  pointer-events: none;
}
.hero__logo {
  height: clamp(150px, 14vw, 240px);
  width: auto;
  max-width: min(520px, 100%);
  display: block;
  margin: 0 auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 18px 38px rgba(43, 20, 20, 0.28))
    drop-shadow(0 1px 0 rgba(var(--ivory-rgb), 0.42));
  transform: translateX(-6px);
}
.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(43, 20, 20, 0.62);
}
.eyebrow--dark {
  color: rgba(43, 20, 20, 0.62);
}
.h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 22px rgba(var(--ivory-rgb), 0.45);
}
.h1__accent {
  color: var(--roseDeep);
}
.lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(43, 20, 20, 0.74);
  text-shadow: 0 10px 20px rgba(var(--ivory-rgb), 0.35);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.meta {
  border: 1px solid rgba(124, 74, 74, 0.16);
  border-radius: 16px;
  background: var(--surface);
  padding: 12px 12px;
}
.meta__k {
  font-size: 12px;
  color: rgba(43, 20, 20, 0.58);
  margin-bottom: 4px;
}
.meta__v {
  font-size: 13px;
  color: rgba(43, 20, 20, 0.86);
}

.hero__card {
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 460px;
}
.hero__cardTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.badge {
  font-size: 12px;
  color: rgba(43, 20, 20, 0.82);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rose-rgb), 0.42);
  background: rgba(var(--roseLight-rgb), 0.46);
}
.dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(43, 20, 20, 0.28);
  margin-left: 6px;
}
.hero__cardBody {
  padding: 14px 14px 16px;
}
.quote {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.25;
}
.hero__cardRow {
  display: flex;
  gap: 10px;
  align-items: center;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.25));
}

.section {
  padding: 64px 0;
}
.section--light {
  /* Repurposed: no "white part" — use a rosy gradient section */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(var(--roseLight-rgb), 0.2), rgba(var(--ivory-rgb), 0.92));
  background-size: auto, auto;
  background-position: center, center;
  color: var(--text);
}
.section--dark {
  background: var(--bg);
  color: var(--text);
}
.section--tint {
  background:
    linear-gradient(180deg, rgba(var(--ivory-rgb), 0.96), rgba(var(--roseLight-rgb), 0.74)),
    linear-gradient(135deg, rgba(var(--roseDust-rgb), 0.16), rgba(var(--rose-rgb), 0.06));
  background-size: auto, auto;
  background-position: center, center;
}

.sectionhead {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.sectionhead__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sectionhead--key .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rose-rgb), 0.26);
  background: rgba(var(--roseLight-rgb), 0.55);
  color: rgba(var(--roseDeep-rgb), 0.92);
  font-weight: 600;
  letter-spacing: 0.16em;
  box-shadow: 0 14px 44px rgba(36, 16, 19, 0.1);
}

.sectionhead--key .h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.sectionhead--key .h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(220px, 62%);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--roseDust-rgb), 0.55), rgba(var(--roseLight-rgb), 0.05));
  filter: blur(0.1px);
}
.counter {
  font-size: 12px;
  color: rgba(43, 20, 20, 0.62);
  padding: 8px 10px;
  border: 1px solid rgba(124, 74, 74, 0.16);
  border-radius: 14px;
  background: var(--surface);
}

.h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h2--dark {
  color: var(--text);
}
.h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.body {
  margin: 12px 0 0;
  line-height: 1.65;
  color: var(--muted);
}
.body--dark {
  color: var(--muted);
}

.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.muted--dark {
  color: var(--muted);
}
.smalltitle {
  font-size: 13px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social__link {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: rgba(var(--ivory-rgb), 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  color: rgba(43, 20, 20, 0.7);
}
.social__link:hover {
  border-color: rgba(var(--rose-rgb), 0.55);
}
.social__link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.collage {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
}
.collage__img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.collage__img--a {
  inset: 0 38% 30% 0;
  background-image: url("./assets/IMG_8879.PNG");
}
.collage__img--b {
  inset: 22% 0 8% 42%;
  background-image: url("./assets/IMG_8880.PNG");
}
.collage__img--c {
  inset: 62% 52% -8% 10%;
  background-image: url("./assets/IMG_8884.PNG");
}

.slider {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--roseDeep-rgb), 0.16);
  background: var(--surface);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider {
  scrollbar-width: none;
}
.slider.is-dragging {
  cursor: grabbing;
}

.sliderWrap {
  position: relative;
}

.sliderArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(var(--roseDeep-rgb), 0.22);
  background: rgba(var(--ivory-rgb), 0.82);
  color: rgba(var(--roseDeep-rgb), 0.9);
  box-shadow: 0 18px 55px rgba(36, 16, 19, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  z-index: 5;
  opacity: 0.96;
}
.sliderArrow:hover {
  border-color: rgba(var(--rose-rgb), 0.55);
}
.sliderArrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.sliderArrow--prev {
  left: 10px;
}
.sliderArrow--next {
  right: 10px;
}
.sliderArrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
.slider__track {
  display: flex;
  width: 100%;
}
.slider__track > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.card {
  position: relative;
  min-height: 360px;
}
.card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Stronger rose overlay for text readability on photos */
  background: linear-gradient(180deg, rgba(var(--roseDeep-rgb), 0.12), rgba(var(--roseDeep-rgb), 0.78));
}
.card__content {
  position: relative;
  padding: 18px;
  display: grid;
  align-content: end;
  height: 100%;
  color: rgba(var(--ivory-rgb), 0.96);
}
.card__content .eyebrow {
  color: rgba(var(--ivory-rgb), 0.74);
}
.card__content .muted {
  color: rgba(var(--ivory-rgb), 0.82);
}

.card__bg--sculpt {
  background-image: url("./assets/IMG_8879.PNG");
}
.card__bg--enhance {
  background-image: url("./assets/IMG_8885.PNG");
}
.card__bg--color {
  background-image: url("./assets/IMG_8884.PNG");
}
.card__bg--elevate {
  background-image: url("./assets/IMG_8882.PNG");
}

.card__bg--event-wedding {
  background-image: url("./assets/IMG_8883.PNG");
}
.card__bg--event-baptism {
  background-image: url("./assets/IMG_8882.PNG");
}
.card__bg--event-anniversary {
  background-image: url("./assets/IMG_8880.PNG");
}
.card__bg--event-party {
  background-image: url("./assets/IMG_8884.PNG");
}

.cta {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: var(--surface);
  padding: 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.panel {
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 74, 0.16);
  background:
    linear-gradient(180deg, rgba(var(--ivory-rgb), 0.92), rgba(var(--roseLight-rgb), 0.72)),
    linear-gradient(135deg, rgba(var(--roseDust-rgb), 0.16), rgba(var(--rose-rgb), 0.06));
  background-size: auto, auto;
  background-position: center, center;
  padding: 16px;
}
.panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
.panel__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 8px;
}
.panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip {
  font-size: 12px;
  color: rgba(43, 20, 20, 0.74);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: rgba(var(--ivory-rgb), 0.76);
}
.panel__card {
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: rgba(var(--ivory-rgb), 0.84);
  padding: 14px;
}
.panel__cardK {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 20, 20, 0.55);
  margin-bottom: 6px;
}
.panel__cardK--sp {
  margin-top: 12px;
}
.panel__cardV {
  font-size: 13px;
  color: rgba(43, 20, 20, 0.82);
}
.panel__cta {
  margin-top: 14px;
  width: fit-content;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 74, 0.16);
  overflow: hidden;
  text-decoration: none;
  min-height: 240px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
.tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 240ms ease;
}
.tile__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 74, 74, 0.02), rgba(124, 74, 74, 0.52));
}
.tile:hover .tile__img {
  transform: scale(1.06);
}
.tile__overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
}
.tile__k {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}
.tile__t {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 6px;
}
.tile__p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.tile__img--1 {
  background-image: url("./assets/IMG_8879.PNG");
}
.tile__img--2 {
  background-image: url("./assets/IMG_8880.PNG");
}
.tile__img--3 {
  background-image: url("./assets/IMG_8881.PNG");
}
.tile__img--4 {
  background-image: url("./assets/IMG_8882.PNG");
}
.tile__img--5 {
  background-image: url("./assets/IMG_8885.PNG");
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.miniCard {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--roseDeep-rgb), 0.16);
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(36, 16, 19, 0.12);
  aspect-ratio: 1 / 1;
  min-height: 150px;
}
.miniCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--roseDeep-rgb), 0.02), rgba(var(--roseDeep-rgb), 0.62));
}
.miniCard__overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}
.miniCard__t {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.15;
  color: rgba(var(--ivory-rgb), 0.96);
  text-shadow: 0 10px 24px rgba(36, 16, 19, 0.28);
}
.miniCard--a {
  background-image: url("./assets/IMG_8880.PNG");
}
.miniCard--b {
  background-image: url("./assets/IMG_8882.PNG");
}
.miniCard--c {
  background-image: url("./assets/IMG_8881.PNG");
}
.miniCard--d {
  background-image: url("./assets/IMG_8877.PNG");
}

@media (min-width: 820px) {
  .miniGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .miniCard {
    min-height: 170px;
  }
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.person {
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: var(--surface);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
  box-shadow: 0 18px 60px rgba(43, 20, 20, 0.14);
}
.person__img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.person__img--a {
  background-image:
    linear-gradient(135deg, rgba(var(--roseLight-rgb), 0.26), rgba(var(--roseDeep-rgb), 0.42));
}
.person__img--b {
  background-image:
    linear-gradient(135deg, rgba(var(--ivory-rgb), 0.24), rgba(var(--rose-rgb), 0.32));
}
.person__body {
  padding: 14px 14px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.productCard {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr;
}
.productCard__img {
  min-height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.productCard__img--a {
  background-image: url("./assets/IMG_8880.PNG");
}
.productCard__img--b {
  background-image: url("./assets/IMG_8882.PNG");
}
.productCard__img--c {
  background-image: url("./assets/IMG_8881.PNG");
}
.productCard__img--d {
  background-image: url("./assets/IMG_8877.PNG");
}
.productCard__body {
  padding: 14px;
  display: grid;
  gap: 10px;
}
.productCard__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-size: 12px;
  color: rgba(43, 20, 20, 0.72);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 74, 74, 0.16);
  background: rgba(var(--ivory-rgb), 0.76);
  white-space: nowrap;
}
.productCard__btn {
  width: fit-content;
}

.slider--quotes {
  border-color: rgba(124, 74, 74, 0.16);
}
.quoteCard {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 360px;
}
.quoteCard__img {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quoteCard__img--1 {
  background-image: url("./assets/IMG_8878.PNG");
}
.quoteCard__img--2 {
  background-image: url("./assets/IMG_8885.PNG");
}
.quoteCard__img--3 {
  background-image: url("./assets/IMG_8877.PNG");
}
.quoteCard__body {
  padding: 16px;
  display: grid;
  align-content: end;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.quoteCard__q {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.22;
}
.quoteCard__by {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.footer {
  background: var(--bg);
  border-top: 1px solid rgba(42, 10, 34, 0.1);
  padding: 56px 0 22px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.footer__desc {
  color: rgba(43, 20, 20, 0.72);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 520px;
}
.footer__btn {
  width: fit-content;
}
.footer__col {
  border: 1px solid rgba(124, 74, 74, 0.16);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
}
.footer__k {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(43, 20, 20, 0.55);
  margin-bottom: 8px;
}
.footer__k--sp {
  margin-top: 12px;
}
.footer__v {
  color: rgba(43, 20, 20, 0.82);
  line-height: 1.55;
}
.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(42, 10, 34, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile polish */
@media (max-width: 819px) {
  /* More breathing room for hero text on mobile */
  .hero .container {
    padding-left: calc(22px + env(safe-area-inset-left));
    padding-right: calc(22px + env(safe-area-inset-right));
  }

  .header__inner {
    padding: 10px 0;
    gap: 10px;
  }

  .brand__logo {
    height: 88px;
  }

  /* Give the burger more room on small screens */
  .header__actions .btn:not(.btn--wa) {
    display: none;
  }
  .header__actions .btn--wa {
    padding: 10px 10px;
    min-width: 42px;
    justify-content: center;
  }
  .header__actions .btn--wa .btn__label {
    display: none;
  }

  /* Make the mobile menu an overlay (not pushing content down) */
  .mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    max-height: calc(100vh - 72px);
    overflow: auto;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  }
  .mobile__inner {
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    gap: 12px;
  }
  .mobile__link {
    padding: 14px 14px;
    font-size: 14px;
  }
  .mobile__cta {
    width: 100%;
    justify-content: center;
  }

  /* Hero layout */
  .hero {
    min-height: 100svh;
    align-items: start;
  }
  .hero__inner {
    padding: 34px 0 24px;
    gap: 14px;
  }
  .h1 {
    font-size: clamp(30px, 8.8vw, 44px);
  }
  .lead {
    font-size: 14px;
  }
  .hero__logoWrap {
    justify-self: center;
  }
  .hero__side {
    justify-items: center;
  }
  .hero__logo {
    height: clamp(120px, 34vw, 180px);
    max-width: 80vw;
  }
  .hero__cta {
    gap: 10px;
  }
  .hero__cta .btn {
    flex: 1 1 calc(50% - 10px);
  }
  .hero__cta .btn--primary {
    flex-basis: 100%;
  }
  .hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__meta > .meta:last-child {
    grid-column: 1 / -1;
  }
  .meta {
    padding: 10px 10px;
  }
  .meta__v {
    font-size: 12.5px;
  }
  .hero__card {
    max-width: 100%;
    justify-self: center;
  }
}

@media (min-width: 820px) {
  .nav {
    display: flex;
  }
  .iconbtn {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 22px;
    padding: 72px 0 58px;
  }
  .hero__content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }
  .hero__side {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-items: end;
    gap: 16px;
  }
  .hero__logoWrap {
    justify-self: end;
  }
  .hero__logo {
    height: clamp(220px, 16vw, 300px);
  }
  .hero__meta {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
  }
  .panel__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile--wide {
    grid-column: 1 / -1;
    min-height: 320px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .productCard {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .productCard__img {
    min-height: 100%;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .slider__track {
    grid-auto-columns: 100%;
  }
  .quoteCard {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 320px;
  }
  .quoteCard__img {
    min-height: 320px;
  }
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .slider__track {
    transition: none !important;
  }
  .tile__img {
    transition: none !important;
  }
}

