:root {
  --ink: #243128;
  --ink-2: #3f4d43;
  --aqua: #c94f2f;
  --aqua-soft: #f4dfcf;
  --orange: #e75a32;
  --cream: #f6eddf;
  --white: #fff;
  --muted: #677476;
  --line: rgba(9, 47, 53, 0.14);
  --container: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffaf2;
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), 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;
  top: 10px; left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #f3a176);
  box-shadow: 0 0 18px rgba(231,90,50,.55);
}
.proposal-switch { position:fixed; z-index:99; left:18px; bottom:18px; padding:11px 15px; display:flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,.68); border-radius:999px; color:white; background:rgba(36,49,40,.84); box-shadow:0 12px 35px rgba(0,0,0,.18); backdrop-filter:blur(12px); font-size:.74rem; font-weight:700; }
.proposal-switch:hover { background:var(--orange); }
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 20;
  color: var(--ink);
  transition: inset .3s ease;
}
.nav {
  width: min(calc(100% - 40px), 1220px);
  height: 76px;
  padding: 0 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,250,242,.78);
  box-shadow: 0 18px 50px rgba(61,44,31,.09);
  backdrop-filter: blur(18px) saturate(135%);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { top: 8px; }
.site-header.is-scrolled .nav { height: 66px; background: rgba(255,250,242,.94); box-shadow: 0 16px 45px rgba(45,35,25,.15); }
.brand { width: 105px; height: 62px; display: grid; place-items: center; }
.brand img { width: 92px; max-height: 58px; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 600; }
.nav-menu > a:not(.btn) { transition: color .2s ease; }
.nav-menu > a:not(.btn) { position: relative; }
.nav-menu > a:not(.btn)::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-menu > a:not(.btn):hover { color: var(--orange); }
.nav-menu > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-phone { padding-left: 28px; border-left: 1px solid var(--line); }
.nav-toggle { display: none; color: white; background: transparent; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: .2s ease; }

.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--orange { color: white; background: var(--orange); box-shadow: 0 12px 30px rgba(255,90,24,.22); }
.btn--orange:hover { background: #e84a0b; box-shadow: 0 15px 34px rgba(255,90,24,.3); }
.btn--small { min-height: 46px; padding-inline: 20px; gap: 12px; }

.hero {
  position: relative;
  min-height: 870px;
  display: grid;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(239,178,139,.34), transparent 27%),
    linear-gradient(135deg, #fffaf2 0%, #f6eddf 100%);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: auto;
  width: min(49vw, 680px);
  height: min(32.7vw, 453px);
  border-radius: 180px 42px 42px 42px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 35px 80px rgba(53,39,25,.23);
  transform: scale(1.04);
  transition: transform .2s linear;
}
.hero__shade {
  position: absolute;
  z-index: 2;
  top: 118px;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: auto;
  width: min(49vw, 680px);
  height: min(32.7vw, 453px);
  border-radius: 180px 42px 42px 42px;
  pointer-events: none;
}
.hero__shade {
  background: linear-gradient(0deg, rgba(36,49,40,.34), transparent 48%);
}
.hero__content { position: relative; z-index: 4; padding: 155px 0 145px; }
.hero__content > * { width: min(49%, 610px); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__orb--one { top: 120px; left: -75px; width: 230px; height: 230px; border: 1px solid rgba(201,79,47,.22); animation: orbit 12s linear infinite; }
.hero__orb--two { right: 42%; bottom: 80px; width: 120px; height: 120px; background: rgba(231,90,50,.1); animation: float 5s ease-in-out infinite; }
.hero__glow { position: absolute; z-index: 3; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,225,189,.38), transparent 68%); pointer-events: none; transform: translate(-50%,-50%); opacity: 0; transition: opacity .3s ease; }
.hero:hover .hero__glow { opacity: 1; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-18px) rotate(8deg); } }
.kicker {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--aqua);
  font-family: "DM Sans", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.kicker > span { width: 32px; height: 2px; background: currentColor; }
.kicker--light { color: var(--orange); }
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", serif; line-height: .98; letter-spacing: -.025em; }
h1 { max-width: 900px; font-size: clamp(4rem, 6.2vw, 6.6rem); font-weight: 600; }
h1 em, h2 em { color: #f4a17a; font-style: italic; font-weight: 500; }
.hero__lead { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.hero__tags { margin-top: 26px; display: flex; gap: 20px; color: var(--ink-2); font-size: .78rem; font-weight: 700; }
.hero__tags span { display: flex; align-items: center; gap: 8px; }
.hero__tags i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(231,90,50,.12); }
.hero__actions { margin-top: 38px; display: flex; align-items: center; gap: 34px; }
.text-link { font-weight: 700; }
.text-link span { display: inline-grid; width: 26px; height: 26px; margin-left: 8px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.hero__proof { position: absolute; inset: auto 0 0; z-index: 5; }
.hero__proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__proof-grid { padding: 0 22px; border: 1px solid rgba(255,255,255,.7); border-radius: 28px 28px 0 0; background: rgba(255,250,242,.83); box-shadow: 0 -18px 50px rgba(61,44,31,.08); backdrop-filter: blur(16px); }
.hero__proof p { margin: 0; padding: 25px 26px; display: flex; align-items: center; gap: 18px; border-left: 1px solid var(--line); }
.hero__proof p:last-child { border-right: 1px solid var(--line); }
.hero__proof strong { font: 700 1.8rem "Cormorant Garamond", serif; white-space: nowrap; }
.hero__proof span { color: var(--muted); font-size: .82rem; line-height: 1.3; }

.flavor-strip { padding: 17px 0; overflow: hidden; color: white; background: var(--orange); transform: rotate(-1deg) scale(1.01); }
.flavor-strip__track { width: max-content; display: flex; align-items: center; gap: 28px; animation: marquee 26s linear infinite; font: 600 1.35rem "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: .08em; }
.flavor-strip__track b { color: #ffd3b9; font-size: .85rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
h2 { font-size: clamp(2.6rem, 4.6vw, 4.8rem); }
.section-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  border-radius: 42px 42px 12px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 20px 50px rgba(60,43,29,.08);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-8px) rotate(.35deg); box-shadow: 0 30px 65px rgba(60,43,29,.16); }
.service-card--feature { grid-row: span 2; min-height: 898px; color: white; }
.service-card--feature img, .service-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-card--feature img { object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.service-card--feature:hover img { transform: scale(1.055); }
.service-card__overlay { background: linear-gradient(0deg, rgba(4,39,44,.94), rgba(4,39,44,.08) 75%); }
.service-card__content { position: relative; margin-top: auto; }
.service-card__number { font: 700 .72rem "DM Sans", sans-serif; letter-spacing: .12em; opacity: .62; }
.service-card h3 { margin: 18px 0; font-size: clamp(2rem, 3vw, 3rem); }
.service-card p { max-width: 360px; margin: 0; color: inherit; opacity: .72; }
.service-card a { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; border-top: 1px solid currentColor; padding-top: 18px; }
.service-card--light { background: #f3dfc3; }
.service-card--aqua { color: #4a2e1e; background: #efb28b; }
.service-card--dark { color: white; background: #465341; }
.service-card__top { display: flex; justify-content: space-between; }
.service-icon { font: 500 3rem "Manrope"; line-height: .8; }

.story { background: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.story__image-wrap { position: relative; padding: 0 0 46px 42px; }
.story__image-wrap > img { width: 100%; min-height: 580px; border-radius: 260px 260px 24px 24px; object-fit: cover; box-shadow: 0 30px 70px rgba(64,43,27,.17); transition: transform .6s ease; }
.story__image-wrap:hover > img { transform: rotate(-1.5deg) scale(1.015); }
.story__badge {
  position: absolute;
  left: 0; bottom: 0;
  width: 170px; height: 170px;
  padding: 28px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: white;
  background: #c84d2e;
  text-align: center;
}
.story__badge strong { font: 700 2.5rem "Cormorant Garamond"; }
.story__badge span { font-size: .75rem; line-height: 1.25; }
.story__copy h2 { margin-bottom: 30px; }
.story__lead { font-size: 1.18rem; font-weight: 600; }
.story__copy > p:not(.kicker) { color: var(--muted); }
.mini-stats { margin-top: 38px; padding-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--line); }
.mini-stats strong { display: block; color: var(--orange); font: 700 2.55rem "Cormorant Garamond"; }
.mini-stats span { color: var(--muted); font-size: .86rem; }

.quality { color: white; background: #424d3c; overflow: hidden; }
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.quality__copy > p:not(.kicker) { max-width: 590px; margin: 28px 0; color: rgba(255,255,255,.68); }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 17px 0; display: flex; gap: 15px; align-items: center; border-top: 1px solid rgba(255,255,255,.15); }
.check-list span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink); background: #72dfe4; border-radius: 50%; font-weight: 800; }
.quality__visual { position: relative; padding: 40px 0 50px 40px; }
.quality__visual > img { width: 100%; height: 520px; border-radius: 18px; object-fit: cover; }
.quality__visual::before { content: ""; position: absolute; top: 0; right: -45px; width: 85%; height: 80%; border-radius: 50%; border: 1px solid rgba(114,223,228,.38); }
.cert-card {
  position: absolute;
  left: 0; bottom: 0;
  width: 290px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.cert-card img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.cert-card p { margin: 0; }
.cert-card strong, .cert-card span { display: block; }
.cert-card span { color: var(--muted); font-size: .78rem; line-height: 1.3; }

.process { background: #fffaf2; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process__steps article { padding: 32px 32px 15px 0; border-right: 1px solid var(--line); }
.process__steps article:not(:first-child) { padding-left: 30px; }
.process__steps article:last-child { border-right: 0; }
.process__steps span { color: var(--orange); font: 800 .78rem "DM Sans"; }
.process__steps h3 { margin: 50px 0 13px; font-size: 1.35rem; }
.process__steps p { margin: 0; color: var(--muted); font-size: .9rem; }

.contact { padding: 110px 0; color: white; background: #a74730; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); }
.contact__copy h2 { font-size: clamp(2.8rem, 4.6vw, 4.7rem); }
.contact__copy > p:not(.kicker) { max-width: 520px; color: rgba(255,255,255,.72); }
.contact__details { margin-top: 55px; display: grid; gap: 20px; }
.contact__details a { display: block; }
.contact__details span, .contact__details strong { display: block; }
.contact__details span { margin-bottom: 4px; color: rgba(255,255,255,.55); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.contact__details strong { font-family: "DM Sans"; overflow-wrap: anywhere; }
.contact-form { padding: 40px; color: var(--ink); background: white; border-radius: 18px; box-shadow: 0 25px 60px rgba(0,40,46,.2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua); }
.btn--submit { width: 100%; margin-top: 8px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }

.footer { padding: 75px 0 24px; color: rgba(255,255,255,.68); background: #263129; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .7fr 1.2fr .7fr; gap: 45px; }
.footer__brand img { width: 120px; max-height: 90px; object-fit: contain; margin-bottom: 15px; }
.footer__brand p { margin: 0; }
.footer__title { margin: 0 0 16px; color: white; font-weight: 700; }
.footer__grid a { display: block; margin: 8px 0; font-size: .88rem; overflow-wrap: anywhere; }
.footer__grid a:hover { color: #72dfe4; }
.footer__bottom { margin-top: 58px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer__bottom p { margin: 0; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-up .75s cubic-bezier(.2,.75,.2,1) both; }
@keyframes reveal-up {
  from { opacity: .01; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orb, .flavor-strip__track { animation: none; }
}

@media (max-width: 960px) {
  .site-header { inset: 10px 0 auto; }
  .nav-menu {
    position: fixed;
    inset: 0;
    padding: 110px 28px 35px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: white;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-menu.is-open { transform: none; }
  .nav-menu > a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 1.15rem; }
  .nav-menu .btn { margin-top: 25px; border-bottom: 0; }
  .nav-phone { padding-left: 0; border-left: 0; }
  .nav-toggle { position: relative; z-index: 2; display: block; }
  .nav-toggle span:not(.sr-only) { background: var(--ink); }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only) { background: white; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 830px; }
  .hero__image, .hero__shade { width: 48vw; right: 24px; }
  .hero__content > * { width: min(50%, 480px); }
  .hero__proof-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__proof p { padding: 20px 14px; display: block; }
  .hero__proof span { display: block; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card--feature { grid-row: auto; min-height: 560px; grid-column: span 2; }
  .story__grid, .quality__grid { gap: 55px; }
  .story__image-wrap > img { min-height: 480px; }
  .quality__visual > img { height: 440px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps article:nth-child(2) { border-right: 0; }
  .process__steps article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { width: calc(100% - 20px); height: 68px; padding-inline: 14px; border-radius: 18px; }
  .brand { width: 100px; height: 62px; }
  .brand img { width: 90px; }
  .nav-toggle { flex: 0 0 42px; margin-left: auto; }
  .hero { min-height: 940px; align-items: start; }
  .hero__image, .hero__shade { top: auto; right: 14px; bottom: 150px; width: calc(100% - 28px); height: 390px; border-radius: 110px 28px 28px 28px; }
  .hero__image { object-position: 58% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(36,49,40,.34), transparent 55%); }
  .hero__content { padding: 125px 0 590px; }
  .hero__content > * { width: 100%; max-width: 100%; }
  .kicker { gap: 9px; font-size: .62rem; letter-spacing: .08em; line-height: 1.4; }
  .kicker > span { flex: 0 0 20px; width: 20px; }
  h1 { font-size: clamp(3.25rem, 15vw, 4.2rem); }
  .hero__lead { font-size: 1rem; overflow-wrap: anywhere; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .hero__actions .btn { width: 100%; }
  .text-link { text-align: center; }
  .hero__proof-grid { grid-template-columns: 1fr 1fr; }
  .hero__proof-grid { width: calc(100% - 20px); padding: 0 10px; border-radius: 22px 22px 0 0; }
  .hero__proof p { padding: 15px 12px; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .hero__proof p > * { min-width: 0; }
  .hero__proof p:last-child { grid-column: 1 / -1; display: flex; border-right: 0; }
  .hero__proof strong { font-size: 1.25rem; white-space: normal; }
  .hero__tags { flex-direction: column; gap: 10px; }
  .flavor-strip__track { font-size: 1.05rem; }
  .section { padding: 80px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  h2 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--feature { min-height: 450px; grid-column: auto; }
  .story__grid, .quality__grid, .contact__grid { grid-template-columns: 1fr; }
  .story__image-wrap { padding-left: 20px; }
  .story__image-wrap > img { min-height: 420px; }
  .story__badge { width: 135px; height: 135px; padding: 20px; }
  .story__badge strong { font-size: 1.8rem; }
  .mini-stats { gap: 14px; }
  .mini-stats strong { font-size: 1.75rem; }
  .quality__visual { padding-left: 20px; }
  .quality__visual > img { height: 360px; }
  .cert-card { width: 260px; }
  .process__steps { grid-template-columns: 1fr; }
  .process__steps article, .process__steps article:not(:first-child) { padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process__steps h3 { margin-top: 25px; }
  .contact { padding: 80px 0; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; }
}
