:root {
  --ink: #25150f;
  --muted: #6f625c;
  --cream: #fff9f2;
  --sand: #f4eadc;
  --white: #ffffff;
  --terracotta: #a63d18;
  --terracotta-dark: #76270f;
  --orange: #e97824;
  --gold: #e6ad45;
  --green: #526842;
  --line: rgba(65, 36, 24, 0.13);
  --shadow: 0 22px 60px rgba(76, 37, 19, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.85rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--terracotta-dark);
  font-size: 0.81rem;
  letter-spacing: 0.025em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 249, 242, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 90px;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  background: #f9e4cf;
  border-radius: 50%;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: #4f413a;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--terracotta);
  content: "";
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  color: var(--white);
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(166, 61, 24, 0.2);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--terracotta-dark);
  box-shadow: 0 14px 32px rgba(118, 39, 15, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 21px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 88% 16%, rgba(233, 120, 36, 0.17), transparent 24%),
    linear-gradient(135deg, #fffaf4 0%, #f9eddf 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(30deg, rgba(124, 45, 18, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(124, 45, 18, 0.08) 87.5%, rgba(124, 45, 18, 0.08)),
    linear-gradient(150deg, rgba(124, 45, 18, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(124, 45, 18, 0.08) 87.5%, rgba(124, 45, 18, 0.08));
  background-position: 0 0, 18px 32px;
  background-size: 36px 64px;
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--terracotta-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 660px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-points div {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero-points div:first-child {
  padding-left: 0;
}

.hero-points div:last-child {
  border-right: 0;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--ink);
  font-size: 0.91rem;
}

.hero-points span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 635px;
}

.hero-image-frame {
  position: absolute;
  inset: 0 38px 0 0;
  overflow: hidden;
  background: #d9b89e;
  border: 11px solid rgba(255, 255, 255, 0.82);
  border-radius: 230px 230px 42px 42px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(48, 20, 8, 0.2), transparent 42%);
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 250px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(66, 27, 10, 0.18);
  backdrop-filter: blur(8px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.9rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.71rem;
}

.floating-card-top {
  top: 78px;
  right: -18px;
}

.floating-card-bottom {
  right: 0;
  bottom: 55px;
  display: block;
  color: var(--white);
  background: var(--terracotta-dark);
  border-color: transparent;
}

.floating-card-bottom small {
  color: rgba(255, 255, 255, 0.72);
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  background: #fff2dc;
  border-radius: 50%;
  font-size: 1.16rem;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  min-height: 162px;
  padding: 36px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-number {
  margin-right: 19px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.trust-item strong {
  font-size: 0.95rem;
}

.trust-item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.78rem;
  line-height: 1.55;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading p {
  color: var(--muted);
}

.centered {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.menu-section {
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 24px;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(75, 42, 26, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  box-shadow: 0 22px 46px rgba(75, 42, 26, 0.11);
  transform: translateY(-5px);
}

.menu-image,
.menu-art {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.menu-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-content {
  padding: 28px 30px 31px;
}

.menu-kicker {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-content h3 {
  margin-top: 8px;
}

.menu-content p {
  min-height: 110px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 0.87rem;
}

.menu-content a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.menu-art {
  display: grid;
  place-items: center;
}

.menu-art-asun {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.19), transparent 19%),
    linear-gradient(145deg, #9d3517, #451d12);
}

.plate {
  position: relative;
  width: 205px;
  height: 205px;
  background: #fffaf4;
  border: 15px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 24px 30px rgba(26, 8, 2, 0.32);
}

.plate::before {
  position: absolute;
  inset: 28px;
  background:
    radial-gradient(circle at 68% 27%, #3d7b3e 0 4px, transparent 5px),
    radial-gradient(circle at 35% 58%, #f4a63a 0 8px, transparent 9px),
    radial-gradient(circle at 64% 64%, #8c2616 0 22px, transparent 23px),
    repeating-radial-gradient(circle at center, #c74b24 0 4px, #e97d32 5px 8px);
  border-radius: 50%;
  content: "";
}

.plate span {
  position: absolute;
  right: 26px;
  bottom: 34px;
  z-index: 2;
  width: 74px;
  height: 32px;
  background: #74321e;
  border-radius: 65% 35% 60% 40%;
  box-shadow: -18px -13px 0 #994422;
  transform: rotate(-17deg);
}

.menu-art-tray {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 30%),
    #e6a546;
}

.tray {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 152px;
  gap: 12px;
  background: #5a2c1e;
  border: 9px solid #7e4431;
  border-radius: 34px 34px 42px 42px;
  box-shadow: 0 24px 34px rgba(63, 26, 9, 0.27);
}

.tray::before {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 132px;
  height: 25px;
  background: #8d4c34;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: translateX(-50%);
}

.tray i {
  display: block;
  width: 52px;
  height: 80px;
  background: repeating-linear-gradient(160deg, #ee7a27 0 5px, #c64b1a 6px 10px);
  border-radius: 18px;
}

.story-section {
  overflow: hidden;
  background: #f4eadc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.story-visual {
  position: relative;
  min-height: 590px;
}

.story-image-main {
  position: absolute;
  top: 0;
  right: 45px;
  bottom: 55px;
  left: 0;
  overflow: hidden;
  border-radius: 190px 190px 30px 30px;
  box-shadow: var(--shadow);
}

.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 225px;
  padding: 25px;
  color: var(--white);
  background: var(--green);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(32, 58, 28, 0.22);
}

.story-note span,
.story-note strong {
  display: block;
}

.story-note span {
  margin-bottom: 8px;
  color: #e6d49d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.story-copy > p {
  color: var(--muted);
}

.story-list {
  margin: 27px 0 30px;
}

.story-list > div {
  display: flex;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.story-list span {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin: 1px 13px 0 0;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 50%;
  font-size: 0.72rem;
}

.story-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.story-list strong {
  color: var(--ink);
}

.dark-link {
  color: var(--terracotta-dark);
}

.services-section {
  background: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading p {
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 360px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(74, 39, 23, 0.05);
}

.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 31px;
  color: var(--terracotta);
  background: #f9e8d4;
  border-radius: 18px;
}

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accent-card {
  color: var(--white);
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.accent-card .service-icon {
  color: #ffe4c7;
  background: rgba(255,255,255,.12);
}

.accent-card p {
  color: rgba(255,255,255,.67);
}

.accent-card a {
  color: #ffe0b4;
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(233, 120, 36, 0.18), transparent 24%),
    linear-gradient(130deg, #2d180f, #492215);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 85px;
}

.light-eyebrow {
  color: #f2b866;
}

.process-copy p {
  max-width: 450px;
  margin-bottom: 31px;
  color: rgba(255,255,255,.65);
}

.button-light {
  color: var(--terracotta-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--terracotta-dark);
  background: #ffe8cd;
}

.process-steps {
  border-top: 1px solid rgba(255,255,255,.14);
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.process-step > span {
  color: #f0b767;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.process-step strong {
  font-size: 0.98rem;
}

.process-step p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.61);
  font-size: 0.82rem;
}

.reviews-section {
  background: #fffaf4;
}

.narrow-heading {
  max-width: 690px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reviews-grid blockquote {
  margin-bottom: 0;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.stars {
  margin-bottom: 18px;
  color: #db9429;
  font-size: 0.83rem;
  letter-spacing: 0.18em;
}

.reviews-grid blockquote > p {
  min-height: 125px;
  color: #4f423c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

.reviews-grid footer {
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.reviews-grid footer strong,
.reviews-grid footer span {
  display: block;
}

.reviews-grid footer strong {
  font-size: 0.82rem;
}

.reviews-grid footer span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.cta-section {
  padding: 76px 0;
  color: var(--white);
  background: var(--terracotta);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 55px;
}

.cta-inner h2 {
  max-width: 770px;
  margin-bottom: 13px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  min-width: 190px;
  gap: 11px;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.58);
  box-shadow: none;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--terracotta-dark);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  color: rgba(255,255,255,.68);
  background: #1b100c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.8fr 1fr;
  gap: 58px;
  padding: 78px 0 65px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: #ef8d43;
  background: rgba(255,255,255,.08);
}

.brand-footer .brand-copy small {
  color: #efb06d;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  font-size: 0.84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 11px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 0.8rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-contact {
  gap: 8px;
}

.footer-cta {
  margin-top: 9px;
  color: #f1b36f;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 21px;
}

@media (max-width: 1040px) {
  .nav-wrap {
    gap: 24px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.83rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.76fr;
  }

  .hero-visual {
    min-height: 570px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    grid-row: span 2;
  }

  .featured-card .menu-image {
    height: 466px;
  }

  .story-grid,
  .process-grid {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.8fr);
    gap: 35px;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-wrap > .button {
    margin-left: auto;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .story-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-image-frame {
    inset: 0 65px 0 60px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

  .story-visual {
    min-height: 620px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .reviews-grid blockquote > p {
    min-height: auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .nav-wrap > .button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.74rem;
  }

  .main-nav {
    gap: 22px;
  }

  .hero {
    padding: 48px 0 62px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-copy > p {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points div,
  .hero-points div:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-points div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-frame {
    inset: 0 20px;
    border-width: 8px;
    border-radius: 180px 180px 30px 30px;
  }

  .floating-card {
    min-width: 0;
    max-width: 235px;
  }

  .floating-card-top {
    top: 44px;
    right: -4px;
  }

  .floating-card-bottom {
    right: -2px;
    bottom: 35px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-row: auto;
  }

  .featured-card .menu-image,
  .menu-image,
  .menu-art {
    height: 300px;
  }

  .menu-content p {
    min-height: 0;
  }

  .story-visual {
    min-height: 500px;
  }

  .story-image-main {
    right: 25px;
    bottom: 40px;
    border-radius: 145px 145px 24px 24px;
  }

  .story-note {
    width: 200px;
    padding: 20px;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
