:root {
  --bg: #f7d7d0;
  --paper: #fffdf9;
  --ink: #171513;
  --muted: #70665f;
  --pink: #f8dde1;
  --cream: #fff5d7;
  --blue: #e7f3f7;
  --gold: #ddbc73;
  --gold-dark: #9d7433;
  --line: #efe3d8;
  --shadow: 0 24px 70px rgba(92, 55, 39, 0.13);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
  }

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

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

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 48px auto;
  background: var(--paper);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 44px;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(239, 227, 216, 0);
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(255, 253, 249, 0.94);
  border-bottom-color: rgba(239, 227, 216, 0.95);
  box-shadow: 0 16px 36px rgba(92, 55, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f9e1e5;
  border: 1px solid #f0cbd1;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(92, 55, 39, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
  color: #342c27;
  transition: color 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-dark);
}

.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #21160a;
  box-shadow: 0 12px 28px rgba(157, 116, 51, 0.18);
}

.btn-secondary {
  background: #edf7f4;
  border-color: #d9e9e3;
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--pink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  padding: 82px 44px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  grid-template-areas:
    "copy visual"
    "copy intro";
  gap: 42px 56px;
  align-items: center;
  padding-top: 42px;
}

.hero-copy {
  grid-area: copy;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 650;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 530px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  grid-area: visual;
  min-height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff5d7, #fff9ec);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-photo-card {
  min-height: 360px;
  padding: 14px;
  background: linear-gradient(135deg, #fff5d7, #f8dde1);
}

.hero-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 332px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 42px rgba(92, 55, 39, 0.14);
}

.hero-photo-overlay {
  position: absolute;
  inset: 14px;
  pointer-events: none;
}

.bread-display {
  position: relative;
  width: 330px;
  height: 260px;
}

.bread-basket {
  position: absolute;
  inset: 16px 4px 10px;
  filter: drop-shadow(0 28px 28px rgba(92, 55, 39, 0.18));
}

.bread {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #f9d18a 0%, #c77737 56%, #7f3f22 100%);
  box-shadow: inset 12px 12px 22px rgba(255, 239, 193, 0.45), inset -10px -14px 18px rgba(90, 42, 22, 0.2);
}

.baguette {
  left: 70px;
  top: 58px;
  width: 220px;
  height: 54px;
  border-radius: 999px;
  transform: rotate(-18deg);
}

.baguette::before,
.baguette::after,
.toast::before,
.cookie::before {
  content: "";
  position: absolute;
}

.baguette::before {
  inset: 15px 28px auto auto;
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 245, 210, 0.72);
  box-shadow: -48px 0 rgba(255, 245, 210, 0.72), -96px 0 rgba(255, 245, 210, 0.72);
  transform: rotate(-16deg);
}

.croissant {
  left: 14px;
  top: 108px;
  width: 156px;
  height: 86px;
  border-radius: 50% 50% 42% 42%;
  transform: rotate(7deg);
  background: radial-gradient(circle at 25% 55%, #fff2c8 0 12%, transparent 13%), linear-gradient(135deg, #f2b35f, #b76231 66%, #78361f);
}

.croissant::before,
.croissant::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff6dc;
}

.croissant::before {
  left: 20px;
}

.croissant::after {
  right: 18px;
}

.bun {
  width: 92px;
  height: 70px;
  border-radius: 48% 48% 42% 42%;
}

.bun-one {
  left: 186px;
  top: 128px;
  transform: rotate(10deg);
}

.bun-two {
  left: 122px;
  top: 146px;
  width: 82px;
  height: 62px;
  transform: rotate(-9deg);
  background: linear-gradient(135deg, #f7c97e, #b66533 70%, #754024);
}

.cookie {
  right: 16px;
  top: 34px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #8a4a2c 0 5px, transparent 6px), radial-gradient(circle at 62% 60%, #8a4a2c 0 5px, transparent 6px), radial-gradient(circle at 48% 42%, #8a4a2c 0 4px, transparent 5px), linear-gradient(135deg, #f4c578, #b66636);
}

.toast {
  left: 48px;
  top: 42px;
  width: 84px;
  height: 88px;
  border-radius: 38px 38px 16px 16px;
  transform: rotate(14deg);
  background: linear-gradient(135deg, #ffe0a1, #c06a35);
}

.toast::before {
  inset: 12px;
  border-radius: 28px 28px 12px 12px;
  background: rgba(255, 239, 193, 0.45);
}

.basket-base {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 14px;
  height: 44px;
  border-radius: 0 0 80px 80px;
  background: linear-gradient(90deg, #b47842, #e0a15d, #a96637);
  box-shadow: inset 0 10px 0 rgba(255, 227, 170, 0.24);
}

.floating-card {
  position: absolute;
  right: -8px;
  bottom: 12px;
  width: 138px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(92, 55, 39, 0.13);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.intro-card {
  grid-area: intro;
}

.ig-proof-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #fff7f8);
  box-shadow: 0 16px 38px rgba(92, 55, 39, 0.08);
}

.ig-proof-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.ig-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff5d7, #f8dde1 58%, #ddbc73);
  color: var(--gold-dark);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(92, 55, 39, 0.12);
}

.ig-proof-header strong,
.ig-proof-header small {
  display: block;
}

.ig-proof-header small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ig-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.ig-proof-stats div {
  padding: 14px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.ig-proof-stats strong,
.ig-proof-stats span {
  display: block;
}

.ig-proof-stats strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.ig-proof-stats span {
  color: var(--muted);
  font-size: 11px;
}

.ig-proof-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.ig-proof-card a {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-dark);
}

.stats {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 44px 76px;
}

.stats > div {
  min-height: 90px;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-card {
  padding: 22px;
  border-radius: 14px;
  background: var(--blue);
  color: #263238;
  font-weight: 700;
  line-height: 1.6;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.soft-card {
  min-height: 260px;
  padding: 42px 34px;
  border-radius: var(--radius);
  text-align: center;
}

.pink-card {
  background: var(--pink);
}

.cream-card {
  background: var(--cream);
}

.pastry-illustration {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.pastry-illustration span {
  width: 178px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8a4d2c, #f1b15d 45%, #7a3c24);
  box-shadow: 0 16px 24px rgba(92, 55, 39, 0.16);
  transform: rotate(-8deg);
}

.pastry-illustration span:nth-child(2) {
  width: 210px;
  transform: rotate(5deg);
}

.pastry-illustration span:nth-child(3) {
  width: 154px;
  transform: rotate(-2deg);
}

.catalog-section {
  background: linear-gradient(90deg, #fff, #fff2f3 28%, #fff7f8);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--gold);
  background: var(--cream);
  color: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  padding: 14px 14px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  box-shadow: 0 14px 35px rgba(92, 55, 39, 0.08);
}

.product-card[hidden] {
  display: none;
}

.product-art {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.product-art::before {
  width: 86px;
  height: 86px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-art::after {
  width: 18px;
  height: 18px;
  left: 58%;
  top: 28%;
}

.choco {
  background: #f9e6e8;
}

.choco::before {
  background: linear-gradient(#6d3d31, #3b201b);
}

.choco::after {
  background: #e6576a;
}

.roll {
  background: #fff4d7;
}

.roll::before {
  width: 116px;
  height: 48px;
  background: linear-gradient(90deg, #b56735, #f0b766, #8f4c27);
}

.hamper {
  background: #edf7f4;
}

.hamper::before {
  border-radius: 16px;
  background: linear-gradient(135deg, #f2c0ca, #fff);
}

.festive {
  background: #f9dde1;
}

.festive::before {
  background: linear-gradient(#fff, #f6c2c9);
  box-shadow: inset 0 -20px #8b4730;
}

.product-card h3 {
  font-size: 16px;
}

.product-card p {
  margin-bottom: 0;
  font-size: 13px;
}

.center-btn {
  width: fit-content;
  margin: 34px auto 0;
  display: flex;
}

.gallery {
  background: #fffdf9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(92, 55, 39, 0.08);
}

.gallery-large {
  grid-row: span 2;
  min-height: 578px;
}

.gallery-art {
  position: relative;
  min-height: 180px;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8dde1, #fff5d7);
}

.gallery-photo {
  width: 100%;
  min-height: 180px;
  height: 180px;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.gallery-large .gallery-photo {
  min-height: 405px;
  height: 405px;
}

.gallery-large .gallery-art {
  min-height: 405px;
}

.gallery-art::before,
.gallery-art::after {
  content: "";
  position: absolute;
}

.birthday-art::before {
  left: 50%;
  bottom: 36px;
  width: 190px;
  height: 132px;
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(#fff, #f6c5cc 52%, #7b3e2e 53%);
  transform: translateX(-50%);
}

.birthday-art::after {
  left: 50%;
  top: 74px;
  width: 18px;
  height: 62px;
  border-radius: 999px;
  background: #e6bf55;
  box-shadow: -48px 24px 0 #de6574, 48px 24px 0 #8fc6cd;
  transform: translateX(-50%);
}

.bento-art::before {
  inset: 42px 44px;
  border-radius: 34px;
  background: radial-gradient(circle at 38% 40%, #de6574 0 8px, transparent 9px), linear-gradient(135deg, #fff, #f8dde1);
  box-shadow: 0 18px 28px rgba(92, 55, 39, 0.12);
}

.hamper-art::before {
  left: 50%;
  bottom: 34px;
  width: 150px;
  height: 118px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #edf7f4);
  box-shadow: inset 0 -22px #f0cbd1, 0 18px 28px rgba(92, 55, 39, 0.11);
  transform: translateX(-50%) rotate(-4deg);
}

.dessert-art::before {
  left: 50%;
  bottom: 40px;
  width: 160px;
  height: 98px;
  border-radius: 18px;
  background: linear-gradient(#fff 0 28%, #d9a160 29% 54%, #6b3d2c 55%);
  transform: translateX(-50%);
}

.event-art::before {
  left: 50%;
  top: 45px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 25%, #de6574 0 13px, transparent 14px), linear-gradient(135deg, #fff5d7, #f8dde1);
  transform: translateX(-50%);
  box-shadow: 0 18px 28px rgba(92, 55, 39, 0.11);
}

.gallery-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-item h3 {
  margin-bottom: 0;
}

.testimonials {
  background: linear-gradient(90deg, #fff7f8, #fffdf9);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 35px rgba(92, 55, 39, 0.08);
}

.testimonial-grid p {
  min-height: 104px;
  color: #3a312b;
  font-size: 17px;
}

.testimonial-grid strong {
  color: var(--gold-dark);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid article {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(92, 55, 39, 0.08);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  font-weight: 800;
}

.locations {
  background: linear-gradient(90deg, #fffdf9, #fff5f6);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(92, 55, 39, 0.09);
}

.map-frame {
  aspect-ratio: 1 / 0.78;
  background: var(--cream);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-content {
  padding: 24px;
}

.location-content span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-content p {
  min-height: 96px;
  font-size: 13px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.branch-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: #21160a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 22px rgba(157, 116, 51, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.branch-order-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(157, 116, 51, 0.22);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  background: radial-gradient(circle at 12% 22%, rgba(248, 221, 225, 0.75), transparent 28%), linear-gradient(135deg, #fff9ef, #fff);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.response-note {
  margin-top: 30px;
  padding: 22px;
  border-radius: 16px;
  background: var(--blue);
}

.response-note span,
.response-note strong {
  display: block;
}

.response-note span {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.response-note strong {
  line-height: 1.6;
}

.order-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f8dde1, #fff4d7);
  border: 1px solid #f0cbd1;
  box-shadow: 0 18px 42px rgba(92, 55, 39, 0.12);
}

.order-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.order-card p {
  margin-bottom: 24px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(92, 55, 39, 0.1);
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-meta a {
  display: block;
  min-height: 92px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-meta a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.contact-meta span,
.contact-meta strong {
  display: block;
}

.contact-meta span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.contact-meta strong {
  font-size: 18px;
}

.contact-panel a,
.site-footer a {
  color: inherit;
}

.contact-panel a:hover,
.site-footer a:hover {
  color: var(--gold-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #2fbf63;
  color: #fff;
  box-shadow: 0 18px 40px rgba(27, 126, 66, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sticky-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(27, 126, 66, 0.34);
}

.sticky-whatsapp span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 900;
}

.sticky-whatsapp strong {
  font-size: 14px;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    -webkit-overflow-scrolling: touch;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .site-header {
    padding: 20px;
  }

  .site-header.is-scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
    border-radius: 10px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.active {
    background: var(--cream);
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section,
  .hero {
    padding: 58px 20px;
  }

  main > section {
    transform-origin: center top;
  }

  @media (prefers-reduced-motion: no-preference) {
    main > section {
      opacity: 0.82;
      transform: scale(0.985);
      transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease;
      will-change: opacity, transform;
    }

    main > section.is-focused,
    main > section.is-visible {
      opacity: 1;
      transform: scale(1);
    }
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "intro";
    gap: 28px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .stats,
  .about-grid,
  .catalog-grid,
  .process-grid,
  .gallery-grid,
  .testimonial-grid,
  .location-grid,
  .contact,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    min-height: 280px;
  }

  .gallery-large .gallery-art {
    min-height: 180px;
  }

  .gallery-large .gallery-photo {
    min-height: 180px;
    height: 180px;
  }

  .stats {
    padding: 0 20px 58px;
    gap: 18px;
  }

  .soft-card,
  .process-grid article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .bread-display {
    transform: scale(0.9);
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .contact-meta strong {
    font-size: 18px;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding-right: 14px;
  }

  .sticky-whatsapp strong {
    font-size: 13px;
  }
}
