:root {
  --ink: #2b1715;
  --ink-soft: #563a36;
  --cream: #f5efe6;
  --paper: #fbf8f3;
  --rose: #bd776b;
  --rose-dark: #8e4d46;
  --peach: #e9b9a8;
  --line: rgba(43, 23, 21, 0.16);
  --white: #fffdf9;
  --display: 'Italiana', Georgia, serif;
  --body: 'DM Sans', Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --black: #000000;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
section[id],
main[id] {
  scroll-margin-top: 120px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  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;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 1px solid rgba(189, 119, 107, 0.28);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(43, 23, 21, 0.08);
}
.brand-logo-footer {
  width: 112px;
  height: 112px;
  border-color: rgba(245, 239, 230, 0.24);
  box-shadow: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 41px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 20px var(--display);
}
.brand-name {
  font: 20px var(--display);
  letter-spacing: 0.01em;
}
.brand-name i {
  color: var(--rose);
  font-style: italic;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav > a:not(.nav-cta) {
  position: relative;
}
.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 12px 19px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 159px 0 0;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 60px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 95px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font: 400 clamp(54px, 6.2vw, 89px)/0.96 var(--display);
  letter-spacing: -0.04em;
}
h1 em,
.occasion-title em {
  color: var(--rose);
  font-weight: inherit;
}
.hero-lead {
  max-width: 535px;
  color: var(--ink-soft);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: white;
  background: var(--ink);
}
.button-primary:hover {
  background: var(--rose-dark);
}
.text-link {
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translateX(4px);
}

.text-link-insta {
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.text-link-insta span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s;
}
.text-link-insta:hover span {
  transform: translateX(4px);
}

.order-arrow-insta {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: currentColor;
  transition: transform 0.25s ease;
}
.order-arrow-insta img {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  position: relative;
  top: 6.1px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 25px;
  margin: 55px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}
.hero-notes li + li::before {
  content: '·';
  margin-right: 22px;
  color: var(--rose);
}
.hero-art {
  position: relative;
  align-self: end;
  min-height: 645px;
}
.arch-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 560px);
  height: 635px;
  overflow: hidden;
  border-radius: 280px 280px 0 0;
}
.hero-photo,
.product-image,
.story-photo,
.gallery-photo {
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-photo {
  width: 100%;
  height: 100%;
  transform: scale(1.025);
}
.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 53%, rgba(34, 15, 12, 0.55));
}
.photo-caption {
  position: absolute;
  right: 38px;
  bottom: 25px;
  left: 38px;
  display: flex;
  justify-content: space-between;
  color: white;
  font: 14px var(--display);
  letter-spacing: 0.04em;
}
.photo-caption span {
  font: 11px var(--body);
  letter-spacing: 0.15em;
}
.seal {
  position: absolute;
  z-index: 3;
  top: 75px;
  left: -40px;
  display: grid;
  place-items: center;
  width: 128px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--peach);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.seal span {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: spin 24s linear infinite;
}
.seal span::before {
  content: attr(data-text);
}
.seal b {
  font-size: 17px;
}
.seal span {
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  line-height: 1.7;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}
.hero-glow-one {
  width: 360px;
  height: 360px;
  top: 120px;
  left: -220px;
  border: 1px solid var(--peach);
}
.hero-glow-two {
  width: 260px;
  height: 260px;
  right: 44%;
  bottom: -120px;
  background: rgba(233, 185, 168, 0.25);
}
.marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.marquee div {
  display: flex;
  gap: 35px;
  align-items: center;
  width: max-content;
  padding: 15px 0;
  font: 17px var(--display);
  animation: marquee 28s linear infinite;
}
.marquee i {
  color: var(--peach);
  font-style: normal;
  font-size: 10px;
}

.section-pad {
  padding: 125px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2,
.story-copy h2,
.occasion-title h2,
.process-copy h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 700px;
  margin: 0;
  font: 400 clamp(42px, 5vw, 68px)/1.02 var(--display);
  letter-spacing: -0.03em;
}
.section-head > p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--cream);
}
.product-image {
  height: 360px;
  filter: saturate(0.75);
  transition:
    filter 0.4s,
    transform 0.5s;
}
.product-card-large {
  grid-column: span 2;
}
.product-card-large .product-image {
  height: 420px;
}
.product-card:hover .product-image {
  filter: saturate(1);
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(43, 23, 21, 0.08);
  border-top: 0;
}
.product-info > div {
  display: flex;
  gap: 14px;
}
.product-number {
  padding-top: 6px;
  color: var(--rose-dark);
  font-size: 10px;
}
.product-info h3 {
  margin-bottom: 15px;
  font: 400 27px/1.08 var(--display);
}
.product-info p {
  color: var(--ink-soft);
  font-size: 13px;
}
.product-info a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.order-arrow-invert {
  filter: invert(1);
}

.order-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: currentColor;
  transition: transform 0.25s ease;
}
.order-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
.product-info a:hover .order-arrow {
  transform: translate(2px, -2px);
}

.story {
  padding: 130px 0;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10vw;
}
.story-visual {
  position: relative;
  min-height: 650px;
}
.story-photo {
  position: absolute;
  inset: 0 60px 0 0;
  width: calc(100% - 60px);
  height: 100%;
}
.story-stat {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 235px;
  padding: 27px;
  color: var(--ink);
  background: var(--peach);
}
.story-stat strong {
  display: block;
  font: 26px var(--display);
}
.story-stat span {
  font-size: 11px;
}
.story-copy {
  max-width: 590px;
}
.story-copy .eyebrow {
  color: var(--peach);
}
.story-intro {
  max-width: 540px;
  margin: 27px 0 48px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 16px;
}
.values {
  border-top: 1px solid rgba(245, 239, 230, 0.18);
}
.values > div {
  display: grid;
  grid-template-columns: 42px 1fr 1.2fr;
  gap: 20px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
}
.values span {
  color: var(--peach);
  font-size: 10px;
}
.values h3 {
  font: 20px var(--display);
}
.values p {
  margin: 0;
  color: rgba(245, 239, 230, 0.62);
  font-size: 12px;
}

.occasions {
  position: relative;
  z-index: 1;
  background: var(--cream);
}
.occasion-title {
  text-align: center;
}
.occasion-title .eyebrow {
  justify-content: center;
}
.occasion-title h2 {
  margin-inline: auto;
}
.occasion-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.occasion {
  min-height: 250px;
  padding: 30px;
}
.occasion + .occasion {
  border-left: 1px solid var(--line);
}
.occasion > span {
  color: var(--rose-dark);
  font-size: 10px;
}
.occasion h3 {
  margin: 53px 0 12px;
  font: 27px var(--display);
}
.occasion p {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.occasion-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  height: 400px;
  margin-top: 18px;
}
.occasion-gallery > .gallery-photo {
  width: 100%;
  height: 100%;
}
.gallery-dessert {
  object-position: 50% 58%;
}
.gallery-two {
  object-position: 50% 34%;
}
.occasion-gallery blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 40px;
  color: var(--cream);
  background: var(--rose-dark);
}
.occasion-gallery blockquote span {
  color: var(--peach);
  font: 65px/1 var(--display);
}
.occasion-gallery blockquote p {
  margin: 5px 0 0;
  font: 28px/1.15 var(--display);
}

.process {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  padding: 115px 0;
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.process-copy {
  position: relative;
  align-self: start;
}
.process-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.process-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process-steps li > span {
  color: var(--rose-dark);
  font-size: 10px;
}
.process-steps h3 {
  margin-bottom: 7px;
  font: 25px var(--display);
}
.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}
.faq-heading > p:last-child {
  max-width: 360px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 14px;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font: 20px var(--display);
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  font: 300 25px var(--body);
  transition: transform 0.25s;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  max-width: 620px;
  padding: 0 30px 24px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact {
  padding: 0 0 70px;
  background: var(--paper);
}
.contact-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  min-height: 430px;
  overflow: hidden;
  padding: 70px;
  color: var(--cream);
  background: var(--rose-dark);
}
.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.contact-copy .eyebrow {
  color: var(--peach);
}
.contact-copy p:last-child {
  margin: 24px 0 0;
  color: rgba(245, 239, 230, 0.75);
}
.contact-copy .service-area {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(245, 239, 230, 0.68);
  font-size: 13px;
}
.button-light {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--cream);
}
.button-light:hover {
  color: white;
  background: var(--ink);
}
.contact-script {
  position: absolute;
  right: -15px;
  bottom: -65px;
  color: rgba(245, 239, 230, 0.07);
  font: 120px var(--display);
  font-style: italic;
  white-space: nowrap;
  transform: rotate(-7deg);
}
.site-footer {
  color: var(--cream);
  background: var(--ink);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}
.brand-footer .brand-mark {
  border-color: rgba(245, 239, 230, 0.5);
}
.footer-top > p {
  max-width: 330px;
  margin: 0;
  color: rgba(245, 239, 230, 0.6);
  font-size: 13px;
}
.footer-top nav a {
  border-bottom: 1px solid rgba(245, 239, 230, 0.4);
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
  color: rgba(245, 239, 230, 0.48);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  padding: 8px 18px 8px 8px;
  color: white;
  background: #1f8f55;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(28, 79, 52, 0.28);
  font-size: 12px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  background: #167b48;
  box-shadow: 0 17px 40px rgba(28, 79, 52, 0.34);
  transform: translateY(-3px);
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
}
.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease var(--delay, 0ms),
    transform 0.8s ease var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 760px);
  }
  .menu-button {
    position: relative;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 11px;
    color: var(--ink);
  }
  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: 0.3s;
  }
  .menu-button[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button[aria-expanded='true'] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding: max(96px, env(safe-area-inset-top)) 24px
      max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--cream);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    font: 32px var(--display);
    transform: translateX(100%);
    transition:
      transform 0.4s ease,
      opacity 0.25s ease,
      visibility 0s linear 0.4s;
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .nav-cta {
    margin-top: 20px;
    font: 14px var(--body);
  }
  .hero {
    padding-top: 139px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding-bottom: 65px;
  }
  .hero-art {
    min-height: 600px;
  }
  .arch-frame {
    left: 50%;
    transform: translateX(-50%);
  }
  .seal {
    left: 4%;
  }
  .section-head,
  .story-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    gap: 22px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card-large {
    grid-column: 1 / -1;
  }
  .story-grid {
    gap: 80px;
  }
  .story-copy {
    max-width: none;
  }
  .occasion-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .occasion-gallery blockquote {
    display: none;
  }
  .process-grid,
  .faq-grid {
    gap: 55px;
  }
  .contact-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 98px;
  }
  section[id],
  main[id] {
    scroll-margin-top: 98px;
  }
  :root {
    --container: calc(100% - 28px);
  }
  .nav-wrap {
    height: 82px;
  }
  .brand-name {
    font-size: 17px;
  }
  .brand-mark {
    width: 36px;
    font-size: 17px;
  }
  .brand-logo {
    width: 60px;
    height: 60px;
  }
  .brand-logo-footer {
    width: 96px;
    height: 96px;
  }
  .hero {
    min-height: auto;
    padding-top: 118px;
  }
  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-notes {
    display: grid;
    gap: 8px;
    margin-top: 40px;
  }
  .hero-notes li + li::before {
    content: none;
  }
  .hero-art {
    min-height: 490px;
  }
  .arch-frame {
    width: 100%;
    height: 480px;
    border-radius: 220px 220px 0 0;
  }
  .seal {
    top: 30px;
    left: -4px;
    width: 105px;
  }
  .marquee div {
    padding-block: 12px;
    font-size: 14px;
  }
  .section-pad,
  .story {
    padding: 90px 0;
  }
  .section-head h2,
  .story-copy h2,
  .occasion-title h2,
  .process-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 43px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card-large {
    grid-column: auto;
  }
  .product-image,
  .product-card-large .product-image {
    height: 330px;
  }
  .story-grid {
    gap: 60px;
  }
  .story-visual {
    min-height: 500px;
  }
  .story-photo {
    right: 25px;
    width: calc(100% - 25px);
  }
  .story-stat {
    right: 0;
    bottom: 28px;
    width: 190px;
    padding: 20px;
  }
  .values > div {
    grid-template-columns: 30px 1fr;
  }
  .values p {
    grid-column: 2;
  }
  .occasion-list {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .occasion {
    min-height: auto;
    padding: 27px 5px;
  }
  .occasion + .occasion {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .occasion h3 {
    margin-top: 25px;
  }
  .occasion-gallery {
    grid-template-columns: 1fr;
    height: 430px;
  }
  .gallery-two {
    display: none;
  }
  .process {
    padding: 90px 0;
  }
  .process-steps li {
    grid-template-columns: 45px 1fr;
  }
  .faq-grid {
    gap: 45px;
  }
  .accordion summary {
    font-size: 18px;
  }
  .contact {
    padding-bottom: 28px;
  }
  .contact-box {
    min-height: 540px;
    padding: 45px 28px;
  }
  .contact-script {
    font-size: 76px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 0;
  }
  .footer-bottom {
    gap: 20px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding-right: 8px;
  }
  .whatsapp-label {
    display: none;
  }
  .whatsapp-icon {
    width: 38px;
    height: 38px;
  }
}

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