:root {
  --off-white: #f7f0e6;
  --warm-white: #fffaf2;
  --navy: #071331;
  --navy-soft: #101f43;
  --gold: #b99248;
  --gold-soft: #e7d7b8;
  --wood: #916334;
  --sage: #7f8d72;
  --ink: #151515;
  --muted: #5f5a52;
  --line: rgba(7, 19, 49, 0.14);
  --shadow: 0 24px 70px rgba(7, 19, 49, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family:
    "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  animation: showFromTop 520ms 140ms ease forwards;
  backdrop-filter: blur(18px);
  background: rgba(214, 207, 198, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  display: flex;
  filter: blur(7px);
  justify-content: center;
  left: 50%;
  opacity: 0;
  padding: 5px 9px;
  position: fixed;
  right: auto;
  top: 12px;
  transform: translate(-50%, -80px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    top 180ms ease;
  width: min(520px, calc(100% - 40px));
  z-index: 20;
}

.site-header::before {
  background: linear-gradient(-35deg, rgba(255, 255, 255, 0.42), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.26));
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  z-index: 0;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background: rgba(72, 64, 58, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  padding-bottom: 5px;
  padding-top: 5px;
  top: 10px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 4px;
  position: relative;
}

.site-nav a {
  border-radius: 999px;
  color: var(--warm-white);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1;
  padding: 10px 15px;
  position: relative;
  transition: transform 180ms ease;
  white-space: nowrap;
  z-index: 2;
}

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

.site-nav a.is-active {
  font-weight: 700;
}

.menu-highlight {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.22);
  height: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition:
    transform 300ms ease,
    width 300ms ease,
    height 300ms ease,
    opacity 180ms ease;
  width: 0;
  z-index: 1;
}

.menu-highlight.is-visible {
  opacity: 1;
}

.nav-cta {
  border: 0;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--warm-white);
  height: 2px;
  left: 9px;
  position: absolute;
  transition:
    transform 180ms ease,
    top 180ms ease;
  width: 24px;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 25px;
}

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

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

@keyframes showFromTop {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translate(-50%, -80px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0);
  }
}

@keyframes showFromTopMobile {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translate(0, -80px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
  }
}

.hero {
  align-items: center;
  background: url("assets/hero-buffet-clean.png") center / cover no-repeat;
  color: var(--warm-white);
  display: flex;
  min-height: 620px;
  height: min(760px, 100vh);
  padding: 104px 5vw 58px;
  position: relative;
}

.hero::before {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.54) 30%,
    rgba(0, 0, 0, 0.2) 56%,
    rgba(0, 0, 0, 0) 78%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero__content {
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.hero-brand {
  align-items: center;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  left: 5vw;
  padding: 8px 14px;
  position: absolute;
  top: 22px;
  z-index: 2;
}

.hero-brand img {
  height: 44px;
  object-fit: contain;
  width: auto;
}

.eyebrow {
  color: var(--gold-soft);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section--light .eyebrow,
.gallery-section .eyebrow,
.section--process .eyebrow,
.contact .eyebrow {
  color: var(--wood);
}

.hero .eyebrow {
  color: rgba(255, 250, 242, 0.72);
}

.hero h1,
.section h2,
.contact h2 {
  font-family:
    "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 650;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  color: #76a5aa;
  font-size: 3.52rem;
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 470px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero p {
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.97rem;
  margin: 22px 0 0;
  max-width: 430px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d5b066;
  border-color: #d5b066;
}

.button--ghost {
  border: 1px solid rgba(255, 250, 242, 0.66);
  color: var(--warm-white);
  font-weight: 700;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 250, 242, 0.12);
}

.cta-blue,
.hero .button--primary {
  align-items: center;
  background: linear-gradient(92deg, #72aeb4 -3.01%, #4f8790 95.31%);
  border-color: transparent;
  border-radius: 55px;
  color: var(--warm-white);
  display: inline-flex;
  gap: 0;
  justify-content: center;
  overflow: visible;
  padding: 0.4rem 0.4rem 0.4rem 1.55rem;
  position: relative;
}

.cta-blue:hover,
.cta-blue:focus-visible,
.hero .button--primary:hover,
.hero .button--primary:focus-visible {
  background: linear-gradient(92deg, #84bec3 -3.01%, #5c9aa3 95.31%);
  border-color: transparent;
}

.cta-blue span,
.hero .button--primary span {
  align-items: center;
  background: var(--warm-white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 19, 49, 0.22);
  color: var(--navy);
  display: inline-flex;
  font-size: 1.18rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  line-height: 1;
  margin-left: 12px;
  text-shadow: 0 0 0 var(--navy);
  transform: rotate(-45deg);
  transition:
    transform 500ms ease,
    background 180ms ease;
  width: 36px;
}

.cta-blue:hover span,
.cta-blue:focus-visible span,
.hero .button--primary:hover span,
.hero .button--primary:focus-visible span {
  transform: rotate(0deg);
}

.hero .button--ghost {
  border-color: rgba(255, 250, 242, 0.38);
  color: var(--warm-white);
}

.hero .button--ghost:hover,
.hero .button--ghost:focus-visible {
  background: rgba(255, 250, 242, 0.1);
}

.section {
  padding: 96px 5vw;
}

.section--process {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 240, 230, 0.98)),
    var(--warm-white);
  border-top: 1px solid rgba(145, 99, 52, 0.16);
}

.section--navy {
  background:
    linear-gradient(180deg, rgba(16, 31, 67, 0.98), rgba(7, 19, 49, 1)),
    var(--navy);
  color: var(--warm-white);
}

.services-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 146, 72, 0.13), transparent 28%),
    linear-gradient(180deg, #101f43 0%, #071331 100%);
  padding: 108px 5vw 116px;
}

.section__header {
  margin-bottom: 44px;
  max-width: 760px;
}

.section__header h2,
.contact h2 {
  color: inherit;
  font-size: 3.05rem;
}

.section__header p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 620px;
}

.experience-section {
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 19, 49, 0.055) 1px, transparent 0) 0 0 / 9px 9px,
    var(--off-white);
  border-top: 1px solid rgba(145, 99, 52, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 22px;
  min-height: 0;
}

.experience-copy {
  align-self: center;
  max-width: 640px;
  padding: 84px 5vw;
}

.experience-copy .eyebrow {
  color: var(--wood);
  margin-bottom: 12px;
}

.experience-copy h2 {
  color: #070707;
  font-size: 3.02rem;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 24px;
  max-width: 610px;
}

.experience-copy p {
  color: #111111;
  font-size: 1rem;
  line-height: 1.48;
  margin: 0;
  max-width: 540px;
}

.experience-copy p + p {
  margin-top: 18px;
}

.experience-cta {
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 34px;
  min-height: 46px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    box-shadow 400ms ease,
    transform 50ms ease;
}

.experience-cta:hover,
.experience-cta:focus-visible {
  box-shadow: 0 0 28px rgba(114, 174, 180, 0.38);
  transform: scale(1.05);
}

.experience-image {
  height: 100%;
  margin: 0;
  min-height: 500px;
  overflow: hidden;
}

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

.services-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.services-sticky {
  margin-bottom: 0;
  max-width: 470px;
  position: static;
}

.services-sticky .eyebrow {
  color: var(--gold-soft);
}

.services-sticky h2 {
  color: var(--warm-white);
  font-size: 3.12rem;
  line-height: 1.02;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.service-card {
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 146, 72, 0.12), rgba(16, 31, 67, 0.64) 72%),
    rgba(255, 250, 242, 0.035);
  border-radius: 18px;
  filter: blur(3.5px);
  min-height: 205px;
  opacity: 0.52;
  overflow: hidden;
  padding: 36px 40px;
  position: relative;
  transform: scale(0.985);
  transition:
    filter 360ms ease,
    opacity 360ms ease,
    transform 360ms ease,
    background 360ms ease;
}

.service-card::before {
  background: linear-gradient(120deg, rgba(255, 250, 242, 0.28), rgba(185, 146, 72, 0.12), rgba(255, 250, 242, 0.06));
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  z-index: 1;
}

.service-card:hover,
.service-card.is-active {
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 146, 72, 0.2), rgba(16, 31, 67, 0.86) 72%),
    rgba(255, 250, 242, 0.06);
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.service-card span {
  color: var(--gold-soft);
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 34px;
}

.service-card h3 {
  color: var(--warm-white);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 12px;
}

.service-card p {
  color: rgba(255, 250, 242, 0.72);
  margin: 0;
  max-width: 430px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

.gallery-section {
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 19, 49, 0.045) 1px, transparent 0) 0 0 / 10px 10px,
    var(--off-white);
  overflow: hidden;
  padding-bottom: 88px;
  padding-top: 86px;
}

.gallery-section .section__header {
  display: block;
  margin: 0 auto 34px;
  max-width: 920px;
  text-align: center;
}

.gallery-section .section__header h2 {
  color: #0b0b0b;
  font-size: 2.72rem;
  line-height: 1.06;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.gallery-section .section__header::after {
  color: var(--muted);
  content: "Registros reais de montagens, detalhes de mesa e serviço em operação.";
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  margin: 18px auto 0;
  max-width: 560px;
}

.gallery-carousel {
  margin: 0 auto;
  max-width: 920px;
  overflow: visible;
  position: relative;
}

.gallery-viewport {
  overflow: visible;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 620ms linear;
  will-change: transform;
}

.gallery__item {
  background: var(--navy);
  border: 1px solid rgba(145, 99, 52, 0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(7, 19, 49, 0.14);
  flex: 0 0 330px;
  margin: 0;
  min-height: 270px;
  overflow: hidden;
  position: relative;
  transform: scale(0.96);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.gallery__item.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery__item:not(.is-active) {
  opacity: 0.58;
}

.gallery__item img {
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
  width: 100%;
}

.gallery__item:hover img {
  transform: scale(1.035);
}

.gallery__item figcaption {
  background: linear-gradient(180deg, transparent, rgba(7, 19, 49, 0.84));
  bottom: 0;
  color: var(--warm-white);
  font-size: 0.88rem;
  font-weight: 650;
  left: 0;
  margin: 0;
  padding: 62px 18px 18px;
  position: absolute;
  right: 0;
}

.gallery-controls {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.gallery-cta .cta-blue {
  font-size: 0.92rem;
  font-weight: 800;
}

.experience-cta.cta-blue,
.gallery-cta .cta-blue {
  animation: cta-gradient-flow 9s linear infinite;
  background: linear-gradient(90deg, #79bdc4, #4f8790, #2f6971, #79bdc4);
  background-size: 400% 100%;
  box-shadow: 0 10px 28px rgba(79, 135, 144, 0.3);
  isolation: isolate;
  padding: 0.95rem 1.55rem;
  transition:
    box-shadow 400ms ease,
    transform 50ms ease;
}

.experience-cta.cta-blue::before,
.gallery-cta .cta-blue::before {
  background: inherit;
  border-radius: inherit;
  content: "";
  inset: 0;
  filter: blur(12px);
  opacity: 0.34;
  position: absolute;
  transition:
    filter 400ms ease,
    opacity 400ms ease;
  z-index: -1;
}

.experience-cta.cta-blue:hover,
.experience-cta.cta-blue:focus-visible,
.gallery-cta .cta-blue:hover,
.gallery-cta .cta-blue:focus-visible {
  animation: cta-gradient-flow 7s cubic-bezier(0.75, 0.75, 0.75, 0.75) infinite;
  box-shadow: 0 0 15px rgba(114, 174, 180, 0.85), 0 0 35px rgba(114, 174, 180, 0.6);
  transform: scale(1.05);
}

.experience-cta.cta-blue:hover::before,
.experience-cta.cta-blue:focus-visible::before,
.gallery-cta .cta-blue:hover::before,
.gallery-cta .cta-blue:focus-visible::before {
  animation: cta-gradient-flow 8s linear infinite;
  filter: blur(20px);
  opacity: 1;
}

@keyframes cta-gradient-flow {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

.gallery-dots {
  align-items: center;
  display: flex;
  gap: 8px;
}

.gallery-dots button {
  background: rgba(7, 19, 49, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition:
    background 180ms ease,
    width 180ms ease;
  width: 8px;
}

.gallery-dots button.is-active {
  background: var(--gold);
  width: 28px;
}

.section--process {
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 19, 49, 0.045) 1px, transparent 0) 0 0 / 10px 10px,
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 240, 230, 0.98));
  border-top: 1px solid rgba(145, 99, 52, 0.16);
  overflow: hidden;
  padding-bottom: 108px;
  padding-top: 96px;
  position: relative;
}

.section--process::after {
  background:
    radial-gradient(ellipse at center, rgba(185, 146, 72, 0.1), transparent 62%),
    linear-gradient(90deg, transparent, rgba(145, 99, 52, 0.12), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 5vw;
  position: absolute;
  right: 5vw;
}

.process-heading {
  margin: 0 auto 42px;
  max-width: 1240px;
  position: relative;
}

.process-heading h2 {
  color: #101010;
  font-size: 3rem;
  line-height: 1.04;
  max-width: 620px;
  text-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
}

.process-illustration {
  display: block;
  height: 72px;
  margin: 0 0 -8px 118px;
  width: 96px;
}

.process-illustration svg,
.process__icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 100%;
}

.process-illustration {
  color: rgba(7, 19, 49, 0.86);
}

.process {
  counter-reset: none;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
}

.process::before {
  border-top: 2px dotted rgba(145, 99, 52, 0.58);
  border-radius: 50%;
  content: "";
  height: 64px;
  left: 22%;
  pointer-events: none;
  position: absolute;
  right: 22%;
  top: -44px;
  transform: translateY(10px);
}

.process::after {
  color: rgba(185, 146, 72, 0.82);
  content: "›    ›";
  font-size: 1.7rem;
  left: 31%;
  letter-spacing: 292px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: -52px;
}

.process__step {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(247, 240, 230, 0.9)),
    radial-gradient(circle at 14% 12%, rgba(185, 146, 72, 0.14), transparent 38%);
  border: 1px solid rgba(145, 99, 52, 0.18);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(7, 19, 49, 0.14);
  min-height: 190px;
  padding: 28px 30px 32px;
  position: relative;
}

.process__step::before {
  background:
    linear-gradient(135deg, rgba(145, 99, 52, 0.12), transparent 44%),
    radial-gradient(circle at 76% 74%, rgba(145, 99, 52, 0.12), transparent 42%);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.process__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.process__icon {
  color: #9a7040;
  display: inline-flex;
  height: 34px;
  width: 34px;
}

.process__number {
  color: #9a7040;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.process__step strong {
  color: var(--navy);
  display: block;
  font-size: 1.45rem;
  font-weight: 720;
  margin-bottom: 12px;
  max-width: 210px;
  position: relative;
  z-index: 1;
}

.process__step p {
  color: #24211d;
  line-height: 1.5;
  margin: 0;
  max-width: 330px;
  position: relative;
  z-index: 1;
}

.contact {
  background:
    linear-gradient(90deg, rgba(7, 19, 49, 0.94), rgba(7, 19, 49, 0.72) 48%, rgba(7, 19, 49, 0.88)),
    url("assets/gelato-cafe.png") center / cover no-repeat;
  color: var(--warm-white);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 0.88fr);
  padding: 92px 5vw;
  position: relative;
}

.contact::before {
  background: radial-gradient(circle at 22% 80%, rgba(185, 146, 72, 0.18), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.contact__copy {
  align-self: center;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.contact__copy .eyebrow {
  color: var(--gold-soft);
}

.contact__copy h2 {
  font-size: 3.28rem;
  letter-spacing: 0;
  line-height: 1.02;
}

.contact__copy p {
  color: rgba(255, 250, 242, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 500px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(231, 215, 184, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 12px;
}

.budget-form {
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(255, 250, 242, 0.62);
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  color: var(--navy);
  display: grid;
  gap: 15px 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 26px;
  position: relative;
  z-index: 1;
}

.budget-form label {
  color: var(--navy);
  display: grid;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(7, 19, 49, 0.16);
  border-radius: 10px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 13px;
  width: 100%;
}

.budget-form textarea {
  min-height: 104px;
  resize: vertical;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(185, 146, 72, 0.18);
}

.budget-form__full {
  grid-column: 1 / -1;
}

.budget-form .button {
  border: 0;
  font-weight: 800;
  min-height: 50px;
  width: 100%;
}

.form-status {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  min-height: 22px;
}

.site-footer {
  align-items: center;
  background: var(--warm-white);
  border-top: 1px solid rgba(185, 146, 72, 0.24);
  color: var(--muted);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 26px 5vw;
}

.site-footer img {
  height: 62px;
  object-fit: contain;
  width: 190px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 3.18rem;
  }

  .services-layout {
    gap: 44px;
    grid-template-columns: minmax(230px, 0.8fr) minmax(340px, 1fr);
  }

  .services-sticky h2 {
    font-size: 2.62rem;
  }

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

  .service-card {
    padding: 32px 34px;
  }

  .experience-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: none;
    padding: 76px 6vw 48px;
  }

  .experience-copy h2 {
    font-size: 2.7rem;
  }

  .experience-image,
  .experience-image img {
    height: 470px;
    min-height: 470px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .site-header {
    animation: showFromTopMobile 520ms 140ms ease forwards;
    justify-content: center;
    left: auto;
    padding: 6px;
    right: 14px;
    top: 14px;
    transform: translate(0, -80px);
    width: 54px;
  }

  .site-header.is-scrolled {
    top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(7, 19, 49, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(7, 19, 49, 0.24);
    display: grid;
    gap: 4px;
    left: auto;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    width: min(300px, calc(100vw - 28px));
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    color: var(--warm-white);
    padding: 14px 16px;
  }

  .menu-highlight {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    background: url("assets/hero-buffet-clean.png") 30% center / cover no-repeat;
    min-height: 640px;
    height: 100vh;
    padding: 124px 20px 54px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 20px;
  }

  .services-section {
    padding: 78px 20px 84px;
  }

  .services-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .services-sticky {
    position: static;
  }

  .services-sticky h2 {
    font-size: 2.32rem;
  }

  .section__header h2,
  .contact h2 {
    font-size: 2.35rem;
  }

  .gallery-section .section__header {
    text-align: left;
  }

  .gallery-section .section__header h2 {
    font-size: 2.25rem;
    margin-left: 0;
    max-width: 520px;
  }

  .gallery-section .section__header::after {
    margin-left: 0;
  }

  .experience-copy {
    padding: 68px 20px 38px;
  }

  .experience-copy h2 {
    font-size: 2.45rem;
  }

  .experience-copy p {
    font-size: 0.96rem;
  }

  .experience-image,
  .experience-image img {
    height: 460px;
    min-height: 460px;
  }

  .services-grid,
  .process,
  .budget-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .service-card span {
    margin-bottom: 24px;
  }

  .gallery__item {
    flex-basis: min(72vw, 400px);
    min-height: 260px;
  }

  .section--process {
    padding: 78px 20px;
  }

  .process-heading {
    margin-bottom: 34px;
  }

  .process-heading h2 {
    font-size: 2.35rem;
  }

  .process-illustration {
    height: 54px;
    margin-left: 72px;
    width: 72px;
  }

  .process {
    gap: 14px;
  }

  .process::before,
  .process::after {
    display: none;
  }

  .process__step,
  .process__step:last-child {
    border: 1px solid rgba(145, 99, 52, 0.18);
    min-height: auto;
    padding: 26px;
  }

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

  .contact__copy h2 {
    font-size: 2.45rem;
  }

  .budget-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .section__header h2,
  .contact h2 {
    font-size: 2.05rem;
  }

  .contact__copy h2 {
    font-size: 2.08rem;
  }

  .contact-points {
    gap: 8px;
  }

  .contact-points span {
    font-size: 0.78rem;
  }

  .gallery-section .section__header h2 {
    font-size: 1.95rem;
  }

  .process-heading h2 {
    font-size: 2rem;
  }

  .process-illustration {
    margin-left: 42px;
  }

  .gallery__item,
  .gallery__item--large {
    flex-basis: 76vw;
    min-height: 220px;
  }

  .experience-copy h2 {
    font-size: 2.12rem;
  }

  .experience-image,
  .experience-image img {
    height: 360px;
    min-height: 360px;
  }

  .budget-form {
    padding: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
