:root {
  --color-primary: #e9b8c3;
  --color-secondary: #fff1ec;
  --color-accent: #c8899d;
  --color-background: #fffaf7;
  --color-surface: #ffffff;
  --color-surface-strong: #f9ede7;
  --color-text: #3b2e30;
  --color-muted: #786569;
  --color-muted-soft: #a28b90;
  --color-border: rgba(128, 92, 99, 0.14);
  --color-chocolate: #7b5447;
  --color-gold: #c8a66f;
  --color-shadow: rgba(79, 49, 57, 0.14);
  --gradient-soft: linear-gradient(135deg, rgba(255, 242, 236, 0.98), rgba(255, 250, 247, 0.88));
  --gradient-hero: linear-gradient(120deg, rgba(25, 16, 19, 0.72), rgba(25, 16, 19, 0.18) 45%, rgba(25, 16, 19, 0.62));
  --radius-pill: 999px;
  --radius-card: 28px;
  --radius-frame: 34px;
  --shadow-soft: 0 28px 70px rgba(89, 59, 66, 0.12);
  --shadow-card: 0 16px 38px rgba(82, 47, 56, 0.1);
  --section-padding: clamp(4.5rem, 8vw, 7rem);
  --header-height: 92px;
  --container-max: 1220px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(233, 184, 195, 0.2), transparent 34%),
    radial-gradient(circle at bottom right, rgba(200, 166, 111, 0.14), transparent 28%),
    var(--color-background);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.16;
  z-index: -2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--color-text);
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

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

.container {
  width: min(100% - 2rem, var(--container-max));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: var(--color-text);
  color: #fff;
  z-index: 2000;
  transition: top 0.2s ease;
}

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

.section-shell {
  padding: var(--section-padding) 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.05rem;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  color: var(--color-chocolate);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 24px rgba(70, 38, 47, 0.08);
  backdrop-filter: blur(14px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1055;
  background: rgba(255, 250, 247, 0.84);
  box-shadow: 0 10px 34px rgba(65, 34, 43, 0.06);
  backdrop-filter: blur(18px);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 250, 247, 0.96);
  border-color: var(--color-border);
  box-shadow: 0 8px 30px rgba(65, 34, 43, 0.08);
  backdrop-filter: blur(20px);
}

.site-header:not(.scrolled) .brand-kicker,
.site-header:not(.scrolled) .brand-city,
.site-header:not(.scrolled) .nav-link {
  color: var(--color-text);
}

.site-header:not(.scrolled) .brand-name {
  color: var(--color-text);
  text-shadow: none;
}

.navbar {
  min-height: var(--header-height);
  padding: 0.65rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.22rem;
  border: 1px solid rgba(233, 184, 195, 0.24);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(16, 10, 13, 0.96), rgba(35, 22, 27, 0.94));
  box-shadow: 0 14px 32px rgba(55, 29, 37, 0.16);
  overflow: hidden;
}

.site-logo img {
  display: block;
  width: clamp(146px, 12vw, 174px);
  height: clamp(58px, 4.8vw, 66px);
  object-fit: cover;
  object-position: center;
  border-radius: 1.15rem;
}

.site-logo--panel img {
  width: min(190px, 100%);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.95;
}

.brand-city {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
}

.brand-city::before,
.brand-city::after {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}

.nav-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding-inline: 0.8rem !important;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-accent);
}

.navbar-toggler-icon {
  background-image:
    linear-gradient(var(--color-text), var(--color-text)),
    linear-gradient(var(--color-text), var(--color-text)),
    linear-gradient(var(--color-text), var(--color-text));
  background-position: center 32%, center, center 68%;
  background-repeat: no-repeat;
  background-size: 22px 2px;
}

.site-header:not(.scrolled) .navbar-toggler-icon {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
}

.offcanvas {
  background: rgba(255, 250, 247, 0.98);
  color: var(--color-text);
}

.offcanvas-header {
  padding: 1.5rem 1.5rem 0.8rem;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 2rem;
}

.mobile-nav {
  display: grid;
  gap: 0.4rem;
}

.mobile-nav__link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__meta {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.mobile-menu__meta i {
  color: var(--color-accent);
}

.btn {
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.45rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-cta {
  color: #fff;
  background:
    linear-gradient(135deg, #d58fa6, #c57f93 62%, #b86e83);
  border: none;
  box-shadow: 0 16px 28px rgba(197, 127, 147, 0.28);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  color: #fff;
  box-shadow: 0 22px 34px rgba(197, 127, 147, 0.34);
}

.btn-cta--sm {
  padding: 0.82rem 1.25rem;
}

.btn-outline-soft {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-outline-soft:hover,
.btn-outline-soft:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline-soft--dark {
  border-color: var(--color-border);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline-soft--dark:hover,
.btn-outline-soft--dark:focus-visible {
  color: var(--color-text);
  border-color: rgba(128, 92, 99, 0.26);
  background: var(--color-surface);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  background: #170f12;
  overflow: hidden;
}

.hero-stage,
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  min-height: 100svh;
}

.hero-swiper {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: end;
  padding: clamp(7rem, 12vw, 10rem) 0 7rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 240, 232, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(17, 10, 13, 0.84) 0%, rgba(17, 10, 13, 0.68) 34%, rgba(17, 10, 13, 0.28) 64%, rgba(17, 10, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.34));
  z-index: -1;
}

.hero-slide--crown {
  background-image: url("../assets/images/hero/hero-crown-box.webp");
}

.hero-slide--jungle {
  background-image: url("../assets/images/hero/hero-jungle-cake.webp");
}

.hero-slide--butterfly {
  background-image: url("../assets/images/hero/hero-butterfly-cake.webp");
}

.hero-slide--floral {
  background-image: url("../assets/images/hero/hero-floral-cake.webp");
}

.hero-content {
  max-width: min(640px, 100%);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(17, 11, 13, 0.42), rgba(17, 11, 13, 0.14));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
}

.hero-content.reveal {
  opacity: 0;
  transform: translateY(26px);
}

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

.hero-content h1,
.hero-content h2,
.hero-content p {
  color: #fff;
}

.hero-content p {
  max-width: 560px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-swiper__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, 1220px);
  transform: translateX(-50%);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  position: static;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  margin: 0;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-swiper .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex: 1;
}

.hero-swiper .swiper-pagination-bullet {
  width: 0.85rem;
  height: 0.85rem;
  background: rgba(255, 255, 255, 0.38);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  font-size: 1rem;
}

.quick-signals {
  position: relative;
  margin-top: -2.2rem;
  z-index: 10;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(128, 92, 99, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 250, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.signal-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.signal-bar i {
  color: var(--color-accent);
}

.intro-grid,
.instagram-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.intro-grid {
  align-items: center;
}

.instagram-grid {
  align-items: start;
}

.intro-visual {
  position: relative;
  min-width: 0;
  padding-right: clamp(0rem, 2vw, 1rem);
}

.feature-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-frame);
  box-shadow: var(--shadow-soft);
}

.feature-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(28, 17, 20, 0.22));
  pointer-events: none;
}

.feature-frame--soft {
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.feature-frame img,
.corporate-card__visual img,
.contact-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-copy {
  min-width: 0;
  padding-left: clamp(0rem, 3vw, 1rem);
}

.intro-copy .lead {
  font-size: 1.2rem;
  color: var(--color-text);
}

.mini-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.mini-points article {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
}

.mini-points h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.mini-points p:last-child {
  margin-bottom: 0;
}

.signature-row {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.signature-line {
  width: 3.2rem;
  height: 1px;
  background: var(--color-gold);
}

.signature-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-text);
}

.creations-section .row {
  align-items: stretch;
}

.creations-section .row > [class*="col-"] {
  display: flex;
}

.creation-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(128, 92, 99, 0.1);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.creation-card:hover,
.creation-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(77, 44, 54, 0.15);
}

.creation-card img {
  width: 100%;
  height: clamp(250px, 28vw, 340px);
  object-fit: cover;
  object-position: center 30%;
}

.creation-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  min-width: 0;
}

.creation-card__body h3 {
  min-height: 2.25em;
}

.creation-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-secondary);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creation-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--color-text);
  font-weight: 700;
}

.creation-card__body a i {
  color: var(--color-accent);
}

.editorial-banner {
  position: relative;
  padding: clamp(5rem, 10vw, 7rem) 0;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(24, 14, 18, 0.38), rgba(24, 14, 18, 0.56)),
    url("../assets/images/gallery/gallery-04-crown-detail.webp") center 40% / cover no-repeat;
}

.editorial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(233, 184, 195, 0.25), transparent 26%);
}

.editorial-banner__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.editorial-banner h2,
.editorial-banner .section-label {
  color: #fff;
}

.editorial-banner .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.filter-chip {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #cd8ba1, #b9748a);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.gallery-item[hidden] {
  display: none !important;
}

.gallery-card {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  border: none;
  border-radius: 1.9rem;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 16, 19, 0.7));
}

.gallery-card__meta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.steps-grid {
  position: relative;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2.05rem;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(200, 166, 111, 0.2), rgba(200, 166, 111, 0.75), rgba(200, 166, 111, 0.2));
}

.step-card {
  position: relative;
  padding: 1.7rem 1.4rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(213, 143, 166, 0.2), rgba(200, 166, 111, 0.24));
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.corporate-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.corporate-card__visual {
  min-height: 100%;
}

.corporate-card__visual img {
  min-height: 100%;
}

.corporate-card__copy {
  padding: clamp(2rem, 4vw, 3rem);
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--color-text);
  font-weight: 600;
}

.feature-list i {
  color: var(--color-accent);
}

.instagram-copy {
  min-width: 0;
  padding-right: clamp(0rem, 4vw, 2rem);
}

.instagram-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.instagram-notes span {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.instagram-showcase {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.instagram-showcase a {
  overflow: hidden;
  display: block;
  min-width: 0;
  aspect-ratio: 0.78;
  border-radius: 1.6rem;
  box-shadow: var(--shadow-card);
}

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

.creation-card img[src*="gallery-12-floral-birthday"] {
  object-position: center 18%;
}

.creation-card img[src*="product-corporate-grad"] {
  object-position: center 22%;
}

.creation-card img[src*="product-tasting-box"] {
  object-position: center 8%;
}

.instagram-showcase a:hover img,
.instagram-showcase a:focus-visible img {
  transform: scale(1.05);
}

.moments-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.moment-card {
  padding: 1.7rem;
  border-radius: 1.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 240, 0.92));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.moment-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(213, 143, 166, 0.16);
  color: var(--color-accent);
  font-size: 1.2rem;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.faq-accordion .accordion-button {
  padding: 1.3rem 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-text);
  background: rgba(255, 241, 236, 0.66);
}

.faq-accordion .accordion-button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(200, 136, 157, 0.34);
}

.faq-accordion .accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--color-muted);
}

.contact-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.08fr 0.92fr;
  border-radius: 2.1rem;
  background:
    radial-gradient(circle at top left, rgba(233, 184, 195, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(200, 166, 111, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(128, 92, 99, 0.12);
  box-shadow: var(--shadow-soft);
}

.contact-card__content {
  padding: clamp(2.2rem, 4vw, 3.3rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-block: 1.8rem 1.2rem;
}

.contact-pending-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 242, 236, 0.84);
  color: var(--color-chocolate);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-pending-note[hidden] {
  display: none !important;
}

.contact-info {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-info span,
.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text);
  font-weight: 600;
}

.contact-info i {
  color: var(--color-accent);
}

.contact-info [hidden] {
  display: none !important;
}

.site-footer {
  padding: 2.4rem 0 2rem;
  background: #24191c;
  color: rgba(255, 255, 255, 0.76);
}

.footer-top {
  display: grid;
  gap: 1.4rem;
  align-items: start;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav,
.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-nav a,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.4rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.5rem));
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #27d367, #18b559);
  color: #fff;
  box-shadow: 0 18px 32px rgba(23, 148, 75, 0.34);
  animation: float-in 0.8s ease both;
}

.floating-whatsapp i {
  font-size: 1.6rem;
}

.gallery-modal .modal-content {
  color: #fff;
  border: none;
  border-radius: 2rem;
  background: rgba(13, 10, 12, 0.92);
  backdrop-filter: blur(18px);
}

.gallery-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gallery-modal__body {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  padding: 3rem 1.5rem 1.5rem;
}

.gallery-modal__figure {
  margin: 0;
}

.gallery-modal__figure img {
  width: 100%;
  max-height: min(72vh, 860px);
  margin: 0 auto;
  border-radius: 1.6rem;
  object-fit: contain;
}

.gallery-modal__figure figcaption {
  padding-top: 1rem;
}

.gallery-modal__figure h3 {
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.gallery-modal__figure p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-modal__nav {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-toast {
  min-width: min(28rem, calc(100vw - 2rem));
  color: #fff;
  background: rgba(45, 28, 35, 0.94);
  box-shadow: var(--shadow-soft);
}

.toast-actions {
  display: flex;
  align-items: center;
}

.contact-toast .btn-outline-light {
  border-radius: var(--radius-pill);
}

@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

:focus-visible {
  outline: 3px solid rgba(200, 136, 157, 0.36);
  outline-offset: 3px;
}

@media (max-width: 1199.98px) {
  .gallery-grid {
    column-count: 2;
  }

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

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 84px;
  }

  .intro-grid,
  .instagram-grid,
  .corporate-card,
  .contact-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .instagram-copy {
    padding-inline: 0;
  }

  .site-logo img {
    width: clamp(120px, 32vw, 154px);
    height: clamp(48px, 14vw, 58px);
  }

  .signal-bar {
    justify-content: start;
  }
}

@media (max-width: 767.98px) {
  .section-shell {
    padding: 4.25rem 0;
  }

  .hero-slide {
    align-items: end;
    padding: 8rem 0 8.5rem;
  }

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

  .hero-content {
    background: linear-gradient(135deg, rgba(17, 11, 13, 0.58), rgba(17, 11, 13, 0.18));
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-swiper__controls {
    bottom: 3.85rem;
    gap: 0.75rem;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero-scroll-cue {
    bottom: 0.85rem;
    font-size: 0.72rem;
  }

  .gallery-grid,
  .instagram-showcase,
  .moments-grid,
  .steps-grid,
  .gallery-modal__body {
    grid-template-columns: 1fr;
    column-count: 1;
  }

  .creation-card img {
    height: 260px;
  }

  .gallery-modal__body {
    padding-top: 4rem;
  }

  .gallery-modal__nav {
    order: 2;
  }

  .gallery-modal__figure {
    order: 1;
  }

  .gallery-modal__nav--next {
    justify-self: end;
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-cta--sm {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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