:root {
  --ink: #241713;
  --coffee: #4a2c22;
  --bronze: #9b6744;
  --gold: #c89b5b;
  --champagne: #e7c996;
  --cream: #f7f0e6;
  --paper: #fffaf4;
  --rose: #d8afa3;
  --white: #fff;
  --serif: "Italiana", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 110px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 30px;
  padding: 10px 4.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  transition: 0.4s ease;
}

.site-header.scrolled {
  height: 76px;
  padding-block: 8px;
  border-color: rgba(36, 23, 19, 0.08);
  background: rgba(255, 250, 244, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(42, 24, 18, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  width: 86px;
  height: 90px;
  display: grid;
  place-items: center;
  overflow: visible;
  transition:
    width 0.35s,
    height 0.35s;
}

.brand img {
  position: absolute;
  transition:
    opacity 0.35s,
    transform 0.35s,
    filter 0.4s;
}

.brand-logo {
  width: auto;
  height: 86px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-favicon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.78) rotate(-8deg);
}

.site-header.scrolled .brand-logo {
  opacity: 0;
  transform: scale(0.78);
}

.site-header.scrolled .brand {
  width: 58px;
  height: 58px;
}

.site-header.scrolled .brand-favicon {
  opacity: 1;
  transform: scale(1) rotate(0);
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  justify-self: center;
  align-self: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.35s;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-instagram {
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 146px;
  min-height: 45px;
  padding: 10px 20px;
  border: 1px solid rgba(36, 23, 19, 0.08);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(35, 20, 16, 0.13);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-instagram svg,
.instagram-copy > svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: white;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(31, 17, 14, 0.87) 0%,
      rgba(31, 17, 14, 0.35) 55%,
      rgba(31, 17, 14, 0.12)
    ),
    linear-gradient(0deg, rgba(31, 17, 14, 0.42), transparent 50%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(231, 201, 150, 0.38);
  border-radius: 49% 51% 60% 40% / 48% 45% 55% 52%;
  pointer-events: none;
}

.shape-one {
  width: 52vw;
  aspect-ratio: 1;
  right: -16vw;
  bottom: -34vw;
  animation: orbit 18s linear infinite;
}

.shape-two {
  width: 24vw;
  aspect-ratio: 1;
  top: 16%;
  left: -11vw;
  animation: orbit 14s linear infinite reverse;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.hero-copy {
  width: min(690px, 88vw);
  margin-left: clamp(24px, 10vw, 170px);
  padding: 150px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
.display-copy {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

h1 {
  max-width: 760px;
  margin-top: 30px;
  font-size: clamp(72px, 9.3vw, 150px);
}

h1 em,
h2 em,
.display-copy em {
  color: var(--champagne);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: 0.35s;
}

.button:hover {
  gap: 31px;
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(45, 24, 17, 0.22);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.hero-note {
  position: absolute;
  right: 5vw;
  bottom: 6vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.hero-note span {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vertical-word {
  position: absolute;
  top: 50%;
  right: 1.2vw;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.6em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 60px 9vw;
  padding: clamp(110px, 14vw, 210px) 7vw;
  overflow: hidden;
}

.intro-orbit {
  position: absolute;
  z-index: -1;
  width: 54vw;
  aspect-ratio: 1;
  top: 3%;
  left: -27vw;
  border: 1px solid rgba(155, 103, 68, 0.2);
  border-radius: 49% 51% 44% 56% / 57% 41% 59% 43%;
}

.intro-label {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-top: 16px;
}

.intro-label span {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 42px;
}

.intro-label p {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.7;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(430px, 1.25fr) minmax(260px, 0.65fr);
  gap: 7vw;
}

.display-copy {
  font-size: clamp(54px, 6.2vw, 104px);
}

.intro-body {
  padding-top: 18px;
}

.intro-body p {
  margin: 0 0 24px;
  color: #68544c;
  font-size: 18px;
}

.intro-photo {
  grid-column: 1 / -1;
  width: 72vw;
  margin: 60px 0 0 auto;
}

.intro-photo img {
  width: 100%;
  height: min(65vw, 760px);
  object-fit: cover;
  border-radius: 180px 10px 180px 10px;
}

.intro-photo figcaption {
  margin-top: 14px;
  color: #8b756c;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.keyword-marquee {
  display: flex;
  overflow: hidden;
  padding: 21px 0;
  border-block: 1px solid rgba(74, 44, 34, 0.16);
  background: var(--cream);
  color: var(--bronze);
}

.keyword-marquee div {
  min-width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.keyword-marquee span {
  padding: 0 30px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 34px);
}

.keyword-marquee i {
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.services {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
  gap: 8vw;
  padding: clamp(110px, 13vw, 190px) 7vw;
  background: #2e1c17;
  color: var(--cream);
}

.services-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}

h2 {
  margin-top: 30px;
  font-size: clamp(60px, 7vw, 112px);
}

.services-heading > p {
  max-width: 430px;
  margin-top: 36px;
  color: rgba(247, 240, 230, 0.64);
  font-size: 18px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.service-number {
  color: var(--gold);
  font-size: 13px;
}

.service-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.service-arrow {
  position: relative;
  width: 28px;
  height: 28px;
}

.service-arrow::before,
.service-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s;
}

.service-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-arrow::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.55s ease,
    opacity 0.35s ease,
    padding 0.45s ease;
}

.service-item.is-open .service-panel {
  max-height: 460px;
  padding-bottom: 32px;
  opacity: 1;
}

.service-panel p {
  max-width: 620px;
  margin: 0 0 18px 70px;
  color: rgba(247, 240, 230, 0.67);
  font-size: 17px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 70px;
}

.service-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(231, 201, 150, 0.3);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bridal {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
  background: var(--rose);
}

.bridal-sticky {
  align-self: start;
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 110px 7vw;
}

.bridal-sticky h2 {
  font-size: clamp(58px, 6vw, 92px);
}

.bridal-sticky p {
  max-width: 510px;
  margin: 30px 0 22px;
}

.bridal-sticky ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.bridal-sticky li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  font-size: 16px;
}

.bridal-sticky h2 em {
  color: #572d25;
}

.bridal-sticky li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--coffee);
}

.bridal-gallery figure {
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

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

.products {
  min-height: 85vh;
  display: grid;
  grid-template-columns: minmax(440px, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 6vw;
  padding: 110px 6vw;
}

.products-image {
  position: relative;
  width: 108%;
  min-height: 680px;
  /**aspect-ratio: 1.48;**/
  overflow: hidden;
  border-radius: 46% 54% 41% 59% / 34% 42% 58% 66%;
  box-shadow: 0 35px 70px rgba(73, 43, 31, 0.18);
}

.products-image::before {
  display: none;
}

.products-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: 57% center;
  transition: transform 0.7s ease;
}

.products-image:hover img {
  transform: scale(1.035);
}

.products-copy h2 {
  font-size: clamp(54px, 6vw, 94px);
}

.products-copy > p {
  max-width: 530px;
  margin: 35px 0;
  color: #6f594f;
  font-size: 18px;
}

.brand-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(74, 44, 34, 0.14);
}

.brand-line img {
  width: auto;
  max-width: 125px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-line .brand-keune {
  width: 145px;
  max-width: 145px;
  height: 71px;
  object-fit: cover;
}

.team {
  padding: clamp(100px, 12vw, 180px) 0;
  overflow: hidden;
  background: var(--cream);
}

.team-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 8vw;
  padding: 0 7vw 70px;
}

.team-heading h2 {
  font-size: clamp(60px, 7vw, 110px);
}

.team-heading > p {
  max-width: 460px;
  color: #6f594f;
  font-size: 18px;
}

.team-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 7vw 20px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 7vw;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.team-track::-webkit-scrollbar {
  display: none;
}

.team-track article {
  min-width: clamp(230px, 24vw, 360px);
  scroll-snap-align: start;
}

.team-track img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  border-radius: 120px 120px 8px 8px;
  filter: saturate(0.75);
  transition: 0.5s;
}

.team-track article:hover img {
  border-radius: 8px 120px 8px 120px;
  filter: saturate(1);
}

.team-track article span {
  display: block;
  margin-top: 17px;
  color: var(--bronze);
  font-size: 12px;
}

.team-track h3 {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.team-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: -42px 0 28px;
  padding: 0 7vw;
}

.drag-hint {
  margin-right: 10px;
  color: #8f7c72;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.team-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 44, 34, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s;
}

.team-arrow svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.team-arrow:hover:not(:disabled),
.team-arrow:focus-visible {
  background: var(--coffee);
  color: var(--cream);
  transform: translateY(-2px);
}

.team-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.team-arrow:active:not(:disabled) {
  transform: scale(0.94);
}

.instagram-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 8vw;
  padding: 100px 8vw;
  overflow: hidden;
  background: var(--champagne);
}

.instagram-orbit {
  position: absolute;
  width: 58vw;
  aspect-ratio: 1;
  right: -31vw;
  border: 1px solid rgba(74, 44, 34, 0.26);
  border-radius: 50%;
}

.instagram-copy {
  z-index: 2;
}

.instagram-copy > svg {
  width: 44px;
  margin-bottom: 45px;
}

.instagram-copy h2 {
  font-size: clamp(60px, 7vw, 104px);
}

.instagram-copy > p {
  max-width: 460px;
  margin: 30px 0;
}

.instagram-collage {
  position: relative;
  z-index: 2;
  width: min(640px, 46vw);
  min-height: 680px;
  justify-self: center;
}

.reel-preview {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 6px solid var(--champagne);
  background: #2c1913;
  box-shadow: 0 28px 58px rgba(71, 39, 26, 0.25);
  transition: transform 0.45s, z-index 0s;
}

.reel-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(32, 17, 13, 0.72));
  pointer-events: none;
}

.reel-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-preview-main {
  z-index: 2;
  width: 48%;
  aspect-ratio: 9 / 14;
  top: 8%;
  left: 25%;
  border-radius: 180px 180px 16px 16px;
}

.reel-preview-top {
  z-index: 1;
  width: 34%;
  aspect-ratio: 4 / 5;
  top: 0;
  right: 0;
  border-radius: 12px 92px 12px 92px;
  transform: rotate(5deg);
}

.reel-preview-side {
  z-index: 3;
  width: 31%;
  aspect-ratio: 4 / 5;
  top: 32%;
  left: 0;
  border-radius: 88px 12px 88px 12px;
  transform: rotate(-6deg);
}

.reel-preview-bottom {
  z-index: 4;
  width: 38%;
  aspect-ratio: 4 / 5;
  right: 2%;
  bottom: 58px;
  border-radius: 12px 12px 100px 12px;
  transform: rotate(4deg);
}

.reel-preview:hover,
.reel-preview:focus-visible {
  z-index: 8;
  transform: rotate(0) scale(1.045);
}

.reel-play {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.reel-caption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 24px;
  left: 20px;
  color: white;
  font-family: var(--serif);
  font-size: 24px;
  text-align: center;
}

.preview-label {
  position: absolute;
  z-index: 6;
  right: auto;
  bottom: 0;
  left: 50%;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--coffee);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: clamp(120px, 14vw, 210px) 8vw;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.contact-copy h2 {
  font-size: clamp(66px, 8vw, 120px);
}

.contact-copy > p {
  max-width: 500px;
  margin: 35px 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-details > div {
  padding: 25px 18px 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details > div:nth-child(even) {
  padding-left: 24px;
}

.contact-details span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-details a {
  font-size: 16px;
}

.contact-details .address {
  grid-column: 1 / -1;
}

.contact-watermark {
  position: absolute;
  right: -2vw;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 22vw;
  line-height: 1;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 15px 40px;
  padding: 70px 8vw 30px;
  background: #170e0c;
  color: white;
}

.footer-brand {
  width: 64px;
  height: 74px;
  overflow: hidden;
}

.footer-brand img {
  width: 67px;
  filter: brightness(0) invert(1);
}

footer > p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 26px;
}

.footer-links {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 35px rgba(41, 23, 17, 0.25);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.whatsapp-float:hover {
  background: #20bd5a;
  box-shadow: 0 18px 42px rgba(24, 143, 72, 0.32);
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float svg {
  width: 29px;
  fill: currentColor;
}

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

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

@media (max-width: 980px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .brand {
    width: 60px;
    height: 68px;
  }

  .brand-logo {
    width: auto;
    height: 66px;
  }

  .brand-favicon {
    width: 46px;
    height: 46px;
  }

  .site-header.scrolled .brand {
    width: 50px;
    height: 50px;
  }

  .desktop-nav,
  .header-instagram {
    display: none;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: 0.3s;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: var(--ink);
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    font-family: var(--serif);
    font-size: 40px;
  }

  .site-header:has(.mobile-menu.open) {
    color: white;
  }

  .site-header:has(.mobile-menu.open) .brand img {
    filter: brightness(0) invert(1);
  }

  .hero-copy {
    margin-left: 7vw;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    width: 86vw;
    margin-top: 25px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services-heading {
    position: static;
  }

  .bridal {
    grid-template-columns: 1fr;
  }

  .bridal-sticky {
    position: static;
    min-height: auto;
  }

  .bridal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bridal-gallery figure {
    height: 70vw;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .products-image {
    width: 100%;
    max-width: 620px;
    min-height: 560px;
    margin: auto;
  }

  .products-image img {
    height: 560px;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 18px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(31, 17, 14, 0.92), rgba(31, 17, 14, 0.12) 82%),
      linear-gradient(90deg, rgba(31, 17, 14, 0.45), transparent);
  }

  .hero-copy {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    flex: 0 0 100vw;
    align-self: end;
    margin: 0;
    padding: 115px 20px 128px;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(56px, 16.5vw, 70px);
    letter-spacing: -0.055em;
  }

  .hero-copy > p {
    max-width: calc(100vw - 40px);
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .hero-note,
  .vertical-word {
    display: none;
  }

  .eyebrow {
    font-size: 11px;
  }

  .intro {
    gap: 45px;
    padding: 90px 20px;
  }

  .intro-label {
    gap: 15px;
  }

  .display-copy {
    font-size: 52px;
  }

  .intro-body p {
    font-size: 18px;
  }

  .intro-photo {
    width: 100%;
    margin: 12px 0 0;
  }

  .intro-photo img {
    height: 118vw;
    border-radius: 90px 6px 90px 6px;
  }

  .services {
    gap: 58px;
    padding: 90px 20px;
  }

  h2 {
    font-size: 57px;
  }

  .service-item button {
    grid-template-columns: 30px 1fr 24px;
    gap: 8px;
    padding: 24px 0;
  }

  .service-name {
    font-size: 31px;
  }

  .service-panel p,
  .service-tags {
    margin-left: 38px;
  }

  .service-panel p {
    font-size: 16px;
  }

  .bridal-sticky {
    min-height: 90vh;
    padding: 90px 20px;
  }

  .bridal-sticky h2 {
    font-size: 56px;
  }

  .bridal-gallery {
    grid-template-columns: 1fr;
  }

  .bridal-gallery figure {
    height: 118vw;
  }

  .products {
    gap: 45px;
    padding: 80px 20px 100px;
  }

  .products-copy h2 {
    font-size: 54px;
  }

  .brand-line {
    align-items: center;
    flex-direction: row;
    gap: 14px 20px;
  }

  .brand-line img {
    max-width: 96px;
    height: 40px;
  }

  .brand-line .brand-keune {
    width: 116px;
    max-width: 116px;
    height: 57px;
  }

  .team {
    padding: 90px 0;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px 50px;
  }

  .team-heading h2 {
    font-size: 58px;
  }

  .team-track {
    gap: 14px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .team-track article {
    min-width: 75vw;
  }

  .team-navigation {
    justify-content: center;
    margin: 0 0 24px;
    padding: 0 20px;
  }

  .team-navigation .drag-hint {
    display: none;
  }

  .team-arrow {
    width: 48px;
    height: 48px;
  }

  .instagram-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 90px 20px;
  }

  .instagram-copy > svg {
    margin-bottom: 30px;
  }

  .instagram-copy h2 {
    font-size: 58px;
  }

  .instagram-collage {
    width: min(100%, 520px);
    min-height: 600px;
  }

  .reel-preview-main {
    width: 52%;
    left: 24%;
  }

  .reel-preview-top {
    width: 36%;
  }

  .reel-preview-side {
    width: 34%;
  }

  .reel-preview-bottom {
    width: 40%;
    bottom: 62px;
  }

  .preview-label {
    max-width: calc(100vw - 40px);
    padding: 8px 12px;
    font-size: 11px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 100px 20px;
  }

  .contact-copy h2 {
    font-size: 65px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div,
  .contact-details > div:nth-child(even) {
    padding: 20px 0;
  }

  .contact-details .address {
    grid-column: auto;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 60px 20px 28px;
  }

  footer > p {
    grid-column: auto;
  }

  .footer-links {
    grid-row: auto;
    grid-column: auto;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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