:root {
  --ink: #2f2026;
  --muted: #76656c;
  --pink: #e85d87;
  --pink-dark: #bd3f66;
  --pink-soft: #fff0f4;
  --pink-pale: #fff8fa;
  --rose: #b66b63;
  --cream: #fffaf8;
  --white: #ffffff;
  --line: rgba(93, 50, 64, .13);
  --shadow-sm: 0 12px 30px rgba(88, 42, 57, .08);
  --shadow-md: 0 22px 60px rgba(88, 42, 57, .14);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: #f4b4c6; color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.section-lead { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, var(--pink-pale), #fff); }
.section-dark { background: var(--ink); color: white; }
.section-dark .section-lead, .section-dark .muted { color: rgba(255,255,255,.68); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(232,93,135,.28); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: white; box-shadow: 0 10px 30px rgba(198, 61, 101, .24); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(198, 61, 101, .3); }
.btn-secondary { background: rgba(255,255,255,.75); border-color: rgba(232,93,135,.42); color: var(--pink-dark); }
.btn-secondary:hover { background: white; border-color: var(--pink); }
.btn-ghost { background: transparent; border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.7); }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(95, 52, 66, .08);
  background: rgba(255, 250, 248, .9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: grid; grid-template-columns: 310px 1fr auto; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; width: min(100%, 300px); }
.logo img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: 8px; }
.desktop-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: #4b3940;
  font-size: .93rem;
  font-weight: 700;
}
.desktop-nav a:hover { background: rgba(232,93,135,.08); color: var(--pink-dark); }
.desktop-nav a.active { color: var(--pink-dark); }
.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 2px;
  border-radius: 10px;
  background: var(--pink);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { margin: 5px 0; }
.nav-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel { display: none; }

.hero {
  position: relative;
  overflow: clip;
  padding: 76px 0 68px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.96), transparent 36%),
    linear-gradient(120deg, #fff7f9 0%, #ffe7ee 50%, #f9c5d3 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -260px;
  top: -280px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.08), 0 0 0 90px rgba(255,255,255,.06);
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 66px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display span { color: var(--pink-dark); }
.hero-copy > p:not(.eyebrow) { max-width: 570px; margin: 24px 0 28px; color: var(--muted); font-size: 1.12rem; }
.hero-media { position: relative; min-height: 620px; }
.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 48% 48% 28px 28px;
  background: white;
  box-shadow: var(--shadow-md);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 35%; }
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); pointer-events: none; }
.hero-card {
  position: absolute;
  left: -36px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 310px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.hero-card-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--pink-soft); color: var(--pink-dark); font-size: 1.25rem; }
.hero-card strong { display: block; font-size: .95rem; }
.hero-card span { color: var(--muted); font-size: .8rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.hero-stat { display: flex; gap: 10px; align-items: center; color: #57424a; font-size: .86rem; font-weight: 700; }
.hero-stat i { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(232,93,135,.22); border-radius: 50%; color: var(--pink-dark); font-style: normal; }

.ribbon { border-block: 1px solid var(--line); background: white; }
.ribbon-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.ribbon-item { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 82px; padding: 16px; border-right: 1px solid var(--line); font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.ribbon-item:last-child { border-right: 0; }
.ribbon-item span { color: var(--pink-dark); font-size: 1.25rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 28px rgba(95,45,63,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,93,135,.34); box-shadow: var(--shadow-sm); }
.service-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 38px; border-radius: 18px; background: linear-gradient(135deg, #fff, var(--pink-soft)); color: var(--pink-dark); font-size: 1.5rem; box-shadow: inset 0 0 0 1px rgba(232,93,135,.16); }
.service-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.service-card p { margin: 0; color: var(--muted); }
.service-card a { display: inline-flex; margin-top: 20px; color: var(--pink-dark); font-weight: 800; font-size: .9rem; }
.service-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(232,93,135,.13), transparent 68%); }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.editorial-card { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.editorial-image { min-height: 520px; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-overlay { position: absolute; inset: auto 28px 28px 28px; padding: 28px; border: 1px solid rgba(255,255,255,.55); border-radius: 24px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); }
.editorial-overlay h3, .product-copy h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 500; line-height: 1.05; }
.editorial-overlay p { margin: 0 0 18px; color: var(--muted); }
.product-card { display: grid; grid-template-rows: auto 1fr; min-height: 520px; padding: 40px; background: linear-gradient(135deg, #fff6f8, #f7c6d3); }
.product-copy { position: relative; z-index: 2; max-width: 470px; }
.product-copy p { color: #6c535d; }
.product-visual { position: relative; display: flex; align-items: end; justify-content: end; min-height: 290px; }
.product-visual img { width: min(80%, 420px); max-height: 330px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(74, 34, 47, .16)); mix-blend-mode: multiply; }
.product-visual::before { content: ""; position: absolute; right: 4%; bottom: 4%; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.38); }

.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 280px 220px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 24px; background: #f5d8e1; padding: 0; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:last-child { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: "View"; position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(46,32,38,.72); color: white; font-weight: 800; font-size: .78rem; opacity: 0; transform: translateY(6px); transition: .25s ease; }
.gallery-item:hover::after { opacity: 1; transform: none; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.feature span { display: block; margin-bottom: 18px; color: #f49ab5; font-family: var(--serif); font-size: 2.2rem; }
.feature h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.feature p { margin: 0; color: rgba(255,255,255,.68); font-size: .94rem; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7c7d5, #ffeef3);
  box-shadow: var(--shadow-md);
}
.cta-copy { padding: clamp(36px, 7vw, 80px); }
.cta-copy h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(2.35rem, 5vw, 4.5rem); font-weight: 500; line-height: 1; }
.cta-copy p { max-width: 540px; color: #6b505a; }
.cta-image { min-height: 460px; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.page-hero { padding: 74px 0 58px; background: linear-gradient(135deg, #fff9fa, #f9d8e2); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 40px; }
.page-hero h1 { max-width: 840px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem); font-weight: 500; line-height: .95; letter-spacing: -.05em; }
.page-hero p { max-width: 560px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.page-hero-card { padding: 24px; border: 1px solid rgba(255,255,255,.62); border-radius: 24px; background: rgba(255,255,255,.65); backdrop-filter: blur(12px); }
.page-hero-card strong { display: block; margin-bottom: 8px; }
.page-hero-card p { margin: 0; font-size: .94rem; }

.service-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.service-tab { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font-weight: 800; }
.service-tab[aria-selected="true"] { background: var(--pink); color: white; border-color: var(--pink); }
.service-panel[hidden] { display: none; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.menu-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.menu-item-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--pink-soft); color: var(--pink-dark); }
.menu-item h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.menu-item p { margin: 0; color: var(--muted); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; counter-increment: process; }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 28px; color: var(--pink); font-family: var(--serif); font-size: 1.7rem; }
.process-step h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.process-step p { margin: 0; color: var(--muted); font-size: .93rem; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-collage { position: relative; min-height: 620px; }
.about-collage img { position: absolute; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-sm); }
.about-collage img:first-child { inset: 0 18% 16% 0; width: 82%; height: 84%; }
.about-collage img:last-child { right: 0; bottom: 0; width: 46%; height: 42%; border: 10px solid var(--cream); }
.about-copy p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.value { padding: 18px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.value strong { display: block; margin-bottom: 4px; }
.value span { color: var(--muted); font-size: .9rem; }

.booking-layout, .contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.info-panel { position: sticky; top: 110px; padding: 32px; border-radius: 30px; background: linear-gradient(145deg, #f8c9d6, #fff1f5); }
.info-panel h2 { margin: 0 0 14px; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.info-panel p { color: #6f535d; }
.info-list { display: grid; gap: 12px; margin: 24px 0 0; }
.info-list div { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.58); }
.info-list i { color: var(--pink-dark); font-style: normal; }
.form-card { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow-sm); }
.form-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 2.25rem; font-weight: 500; }
.form-card > p { margin: 0 0 26px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #59454d; font-size: .87rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #e7d8dd;
  border-radius: 14px;
  background: #fffdfd;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(232,93,135,.11); }
.field small { color: var(--muted); }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.form-note { color: var(--muted); font-size: .82rem; }
.success-box { display: none; margin-top: 20px; padding: 18px; border: 1px solid #acd7b6; border-radius: 18px; background: #f1fbf3; color: #255f31; }
.success-box.show { display: block; }
.success-box pre { white-space: pre-wrap; font-family: var(--sans); color: #315f3a; }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; }
.faq-question { display: flex; width: 100%; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; }
.faq-question span:last-child { color: var(--pink-dark); font-size: 1.2rem; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.contact-options { display: grid; gap: 14px; }
.contact-option { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-option-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--pink-soft); color: var(--pink-dark); font-size: 1.25rem; }
.contact-option strong { display: block; }
.contact-option span { color: var(--muted); font-size: .9rem; }

.site-footer { padding: 60px 0 28px; background: #482f38; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; }
.footer-logo { width: 290px; max-width: 100%; filter: brightness(0) invert(1); opacity: .94; }
.footer-copy { max-width: 450px; color: rgba(255,255,255,.65); }
.footer-title { margin: 0 0 14px; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: #f9b3c7; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .82rem; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 24px; background: rgba(24,14,18,.9); }
.lightbox.open { display: grid; }
.lightbox-content { position: relative; width: min(980px, 94vw); max-height: 90vh; }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 22px; }
.lightbox-close { position: absolute; right: 10px; top: 10px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: 1.4rem; }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 2500; max-width: 360px; padding: 15px 18px; border-radius: 16px; background: var(--ink); color: white; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(14px); transition: .25s ease; }
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 260px 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-panel {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 8px;
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,250,248,.98);
    transform: translateY(-130%);
    transition: transform .28s ease;
    box-shadow: var(--shadow-sm);
  }
  .nav-open .mobile-panel { transform: none; }
  .mobile-panel a { padding: 13px 14px; border-radius: 12px; font-weight: 800; }
  .mobile-panel a.active { background: var(--pink-soft); color: var(--pink-dark); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-media { min-height: 540px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; grid-template-columns: minmax(190px, 1fr) auto; }
  .header-actions .btn { display: none; }
  .mobile-panel { inset: 72px 0 auto; }
  .hero { padding: 54px 0 36px; }
  .hero-grid, .editorial-grid, .cta-panel, .page-hero-grid, .about-story, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p:not(.eyebrow) { margin-inline: auto; }
  .hero-copy .button-row { justify-content: center; }
  .hero-stats { justify-items: start; max-width: 520px; margin-inline: auto; }
  .hero-media { min-height: 540px; margin-top: 10px; }
  .hero-card { left: 16px; right: 16px; bottom: 18px; max-width: none; }
  .ribbon-inner { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item:nth-child(2) { border-right: 0; }
  .ribbon-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head .btn { margin-top: 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 180px 180px; }
  .gallery-item:first-child { grid-row: auto; grid-column: span 2; }
  .gallery-item:last-child { grid-column: span 2; }
  .cta-image { min-height: 340px; }
  .page-hero-card { margin-top: 12px; }
  .info-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .display { font-size: clamp(2.8rem, 16vw, 4.3rem); }
  .section-title { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .hero-stats { grid-template-columns: 1fr; width: max-content; max-width: 100%; }
  .hero-media { min-height: 460px; }
  .hero-frame { border-radius: 46% 46% 24px 24px; }
  .ribbon-item { min-height: 72px; font-size: .74rem; padding: 10px; }
  .card-grid, .menu-list, .feature-grid, .process, .values, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .editorial-card, .editorial-image { min-height: 460px; }
  .editorial-overlay { inset: auto 16px 16px 16px; padding: 22px; }
  .product-card { padding: 28px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 250px); }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: auto; }
  .about-collage { min-height: 500px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .button-row .btn { width: 100%; }
}
