:root {
  --bg: #fdfbf7;
  --paper: #ffffff;
  --milk: #f5efe7;
  --olive: #6f7358;
  --olive-dark: #4f553f;
  --gold: #c8a27a;
  --ink: #2d2c2a;
  --muted: #77736d;
  --line: #e8dfd4;
  --soft: #f0e7dc;
  --shadow: 0 18px 50px rgba(67, 61, 51, .09);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --display: "Caveat", Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Caveat";
  src: url("fonts/caveat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: 72px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(253, 251, 247, .9);
  border-bottom: 1px solid rgba(232, 223, 212, .85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 138px; height: auto; }
.brand .brand-heart {
  width: 34px;
  transform: rotate(-8deg);
  opacity: .95;
}
.desktop-nav { display: none; gap: 22px; color: var(--muted); font-size: 14px; }
.desktop-nav a {
  position: relative;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a:hover { color: var(--olive-dark); }

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 4px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}
.menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--olive-dark);
}

.mobile-menu {
  position: fixed;
  inset: 73px 12px auto;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg);
  text-decoration: none;
  color: var(--olive-dark);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: end;
  padding: min(22vh, 140px) max(16px, calc((100vw - 1120px) / 2)) 34px;
  overflow: hidden;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, .1) 0%, rgba(20, 18, 15, .38) 44%, rgba(20, 18, 15, .68) 100%),
    linear-gradient(90deg, rgba(20, 18, 15, .58) 0%, rgba(20, 18, 15, .16) 62%, rgba(20, 18, 15, .2) 100%);
}

.hero-copy {
  width: min(100%, 680px);
  max-width: 680px;
  padding-bottom: 22px;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn .8s ease forwards;
}
.hero-copy > :nth-child(2) { animation-delay: .12s; }
.hero-copy > :nth-child(3) { animation-delay: .24s; }
.hero-copy > :nth-child(4) { animation-delay: .36s; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}
body:not(.admin-body) .eyebrow {
  display: none;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(42px, 12vw, 86px); }
h2 { font-size: clamp(32px, 8vw, 58px); }
h3 { font-size: 25px; }
.hero h1 {
  position: relative;
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 11.5vw, 104px);
  line-height: .96;
  color: var(--gold);
  width: min(100%, 760px);
  max-width: 760px;
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.hero h1::before {
  content: attr(data-typewriter);
  display: block;
  visibility: hidden;
  pointer-events: none;
}
.hero h1 .typewriter-text {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  text-wrap: balance;
}
.hero h1.typewriter-pending .typewriter-text {
  visibility: hidden;
}
.hero h1.is-typing .typewriter-text::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .75em;
  margin-left: .08em;
  transform: translateY(.08em);
  background: currentColor;
  animation: caretBlink .85s steps(1) infinite;
}
.hero h1.typing-done .typewriter-text::after {
  content: none;
}
.hero .eyebrow {
  color: rgba(255, 255, 255, .78);
}
.lead {
  color: var(--muted);
  font-size: clamp(17px, 4vw, 21px);
  margin: 18px 0 26px;
}
.hero .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, .86);
}
.hero-actions,
.contact-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.button.primary { background: var(--olive); color: white; }
.button.primary:hover {
  background: var(--olive-dark);
  box-shadow: 0 14px 34px rgba(79, 85, 63, .22);
  transform: translateY(-2px);
}
.button.secondary { background: var(--paper); color: var(--olive-dark); border-color: var(--line); }
.button.secondary:hover {
  border-color: rgba(111, 115, 88, .34);
  transform: translateY(-2px);
}
.hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
  backdrop-filter: blur(12px);
}
.button.ghost { background: transparent; color: var(--muted); border-color: var(--line); }
.button.small { min-height: 38px; padding: 9px 13px; font-size: 14px; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: var(--soft);
  background-image:
    url("../Photo/hero-current-optimized.webp"),
    url("data:image/webp;base64,UklGRkwBAABXRUJQVlA4IEABAABwCwCdASowAEAAPwFoq1ArJaOisrJMyWAgCWQAxRFBVf6lmzlNekz0CRFT/VNshz0WuuzsgzmToCykyQjw6hz64ehfcdfYrtaNohpJCkMgW/TJL83EYduJZIaTqGf0+3zE//gAAP7UUzdmYeENH0KgWNNQgGlOPuOzXtCxZJU9JJoZCAfVBrzfzkXg+2QBDs92dZ0o2DujQR+8iX0nDzv8P4nHDx+xo48OGyQCTuXjdiRaEn8Wa9AFVFws9D0j5ge5CzcMiMCPYjfCvhuVCt5SgT/iDXkdUmvUktosl7lW+PlV4vRqwPkne70qLWTLgxJDkETTV7aNliM/qTA0bCalRnXMjtr0y2We0SWdacAmge8iHpKT1vh/4rZnFeyJ5fYnc5BeoKD7zUt5xjITnOKvfzXMRu04z+TJzaAAnAAAAA==");
  background-size: cover;
  background-position: 52% 50%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .18s ease;
  animation: heroPhotoDrift 18s ease-out forwards;
}
.hero-media img.is-loaded {
  opacity: 1;
}

.intro-band {
  width: 100%;
  display: grid;
  gap: 28px;
  padding: clamp(44px, 7vw, 82px) max(18px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(120deg, rgba(245, 239, 231, .96), rgba(253, 251, 247, .98)),
    var(--milk);
  border-top: 1px solid rgba(232, 223, 212, .75);
  border-bottom: 1px solid rgba(232, 223, 212, .75);
}
.intro-band > div {
  display: grid;
  gap: 14px;
}
.intro-band h2 {
  max-width: 560px;
  font-size: clamp(36px, 5vw, 62px);
}
.heart-mark { width: 48px; margin-bottom: 0; }
.intro-band p {
  max-width: 610px;
  margin: 0;
  padding: 18px 0 18px 22px;
  border-left: 2px solid rgba(111, 115, 88, .35);
  color: var(--olive-dark);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 560;
  line-height: 1.65;
}
.heart-mark {
  transform-origin: center;
  animation: heartFloat 5s ease-in-out infinite;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-bottom: 26px;
}
.section-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }
.section-heading.compact { max-width: 620px; }

.format-grid,
.benefit-grid,
.review-grid {
  display: grid;
  gap: 14px;
}
.format-card,
.review-card,
.price-card,
.benefit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(67, 61, 51, .04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.format-card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.format-card:hover,
.review-card:hover,
.price-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 122, .55);
  box-shadow: 0 18px 44px rgba(67, 61, 51, .09);
}
.format-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}
.format-card:hover img { transform: scale(1.04); }
.format-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 246px;
  padding: 16px;
}
.format-card-number {
  display: none;
}
.format-card h3 { font-family: var(--sans); font-size: 20px; font-weight: 650; line-height: 1.25; }
.format-card p { color: var(--muted); margin: 8px 0 16px; }
.price {
  align-self: end;
  margin-top: auto;
  color: var(--olive-dark);
  font-weight: 750;
}
.text-link {
  color: var(--olive-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}
.custom-note {
  margin-top: 14px;
  padding: 22px;
  background: var(--olive);
  color: white;
  border-radius: var(--radius);
}
.custom-note p { color: rgba(255,255,255,.82); }
.custom-note .text-link { color: white; }

.benefits { width: 100%; background: #fbf6ee; padding-inline: max(16px, calc((100vw - 1120px) / 2)); }
.benefit-card { padding: 18px; }
.benefit-card strong { display: block; margin-bottom: 6px; }
.benefit-card p { margin: 0; color: var(--muted); }

.gallery {
  display: block;
  overflow: hidden;
  padding: 4px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gallery-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: galleryAutoScroll 28s linear infinite;
  will-change: transform;
}
.gallery:hover .gallery-track,
.gallery:focus-within .gallery-track {
  animation-play-state: paused;
}
.gallery button {
  flex: 0 0 clamp(210px, 32vw, 330px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  cursor: zoom-in;
  box-shadow: 0 8px 26px rgba(67, 61, 51, .05);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery button:hover img { transform: scale(1.04); }

@keyframes galleryAutoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split-copy p { color: var(--muted); }
.check-list {
  padding-left: 19px;
  color: var(--olive-dark);
}
.check-list li { margin: 8px 0; }

.price-list { display: grid; gap: 10px; }
.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  align-items: start;
}
.price-card h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; }
.price-card strong { text-align: right; line-height: 1.45; }
.price-card p { grid-column: 1 / -1; margin: 0; color: var(--muted); }

.order { width: 100%; background: var(--olive-dark); color: white; padding-inline: max(16px, calc((100vw - 1120px) / 2)); }
.order .eyebrow { color: var(--gold); }
.order .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 650;
}
.steps { display: grid; gap: 12px; counter-reset: step; }
.step-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.step-card > div {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
}
.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.34);
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.step-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}
.step-card p { margin: 6px 0 0; color: rgba(255,255,255,.75); }

.delivery {
  display: grid;
  gap: 24px;
}
.delivery p { color: var(--muted); }
.delivery-cards { display: grid; gap: 12px; }
.delivery-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.delivery-card strong { display: block; margin-bottom: 6px; }
.delivery-card span { color: var(--muted); }

.review-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -16px;
  right: 16px;
  color: rgba(200, 162, 122, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
}
.review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}
.review-card h3 {
  position: relative;
  margin: 10px 0 8px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
}
.review-card p {
  position: relative;
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}
.review-rating {
  position: relative;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}
.review-meta {
  position: relative;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.review-card .placeholder {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--milk);
  color: var(--olive-dark);
  font-size: 12px;
}
.review-grid {
  display: block;
  overflow: hidden;
  padding: 4px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reviewAutoScroll 54s linear infinite;
}
.review-grid:hover .review-track,
.review-grid:focus-within .review-track {
  animation-play-state: paused;
}
.review-track .review-card {
  flex: 0 0 clamp(280px, 34vw, 390px);
  min-height: 250px;
}

@keyframes reviewAutoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-25% - 3.5px)); }
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }

.final-cta {
  width: min(980px, calc(100% - 32px));
  padding-block: 42px 72px;
}
.final-cta-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 14px;
  overflow: hidden;
  padding: clamp(28px, 7vw, 54px) clamp(18px, 6vw, 72px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(245, 239, 231, .96), rgba(255, 255, 255, .92)),
    var(--paper);
  border: 1px solid rgba(200, 162, 122, .32);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(67, 61, 51, .09);
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(111, 115, 88, .12);
  border-radius: 6px;
  pointer-events: none;
}
.final-logo {
  width: min(260px, 70vw);
  filter: drop-shadow(0 10px 18px rgba(67, 61, 51, .08));
}
.final-cta h2 {
  max-width: 720px;
  font-size: clamp(34px, 7vw, 62px);
}
.final-cta p {
  max-width: 600px;
  color: var(--muted);
  margin: 0;
  font-size: clamp(16px, 2.4vw, 19px);
}
.final-photo {
  position: absolute;
  z-index: -1;
  display: none;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .78);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(67, 61, 51, .13);
  opacity: .36;
  transform: rotate(-8deg);
}
.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-photo-one {
  left: -12px;
  bottom: 24px;
  width: 146px;
  height: 184px;
}
.final-photo-two {
  right: -18px;
  top: 28px;
  width: 158px;
  height: 132px;
  transform: rotate(8deg);
}
.final-cta .contact-actions {
  justify-content: center;
  margin-top: 4px;
}
.admin-preview {
  width: min(360px, 100%);
  margin-top: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
}

.service-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.service-hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 8vw, 86px) 0 36px;
}
.service-hero-copy {
  display: grid;
  gap: 18px;
}
.service-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 8vw, 78px);
  line-height: .98;
}
.service-hero-copy .lead {
  max-width: 680px;
}
.service-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-layout {
  display: grid;
  gap: 18px;
  padding: 28px 0 clamp(48px, 8vw, 92px);
}
.service-panel,
.service-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-panel {
  padding: clamp(22px, 4vw, 36px);
}
.service-panel h2,
.service-aside h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}
.service-panel p {
  color: var(--muted);
}
.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.service-list li {
  padding: 14px 16px;
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-aside {
  display: grid;
  gap: 16px;
  padding: 22px;
  align-self: start;
}
.service-price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.service-price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.service-price-list strong {
  color: var(--olive-dark);
  white-space: nowrap;
}
.service-actions {
  display: grid;
  gap: 10px;
}
.service-actions .button {
  width: 100%;
  justify-content: center;
}
.service-contact-panel .button {
  width: 100%;
  justify-content: center;
}
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(26, 25, 24, .54);
}
.service-modal:target {
  display: grid;
}
.service-modal-card {
  position: relative;
  width: min(390px, 100%);
  display: grid;
  gap: 14px;
  padding: 44px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(26, 25, 24, .22);
}
.service-modal-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
}
.service-modal-card p {
  margin: 0 0 4px;
  color: var(--muted);
}
.service-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(253, 251, 247, .84);
  color: var(--olive-dark);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.service-modal-close::before,
.service-modal-close::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
}
.service-modal-close::before { transform: rotate(45deg); }
.service-modal-close::after { transform: rotate(-45deg); }
.service-modal-close:hover {
  background: var(--milk);
  border-color: rgba(111, 115, 88, .28);
  transform: rotate(8deg);
}
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 54px;
}
.service-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255,255,255,.64);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 18;
  transform: translateX(-50%);
  width: min(430px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 7px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(67, 61, 51, .12);
  backdrop-filter: blur(14px);
}
.bottom-nav a {
  padding: 10px 8px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.bottom-nav .accent { background: var(--olive); color: white; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > :nth-child(2) { transition-delay: .06s; }
.reveal-stagger.is-visible > :nth-child(3) { transition-delay: .12s; }
.reveal-stagger.is-visible > :nth-child(4) { transition-delay: .18s; }
.reveal-stagger.is-visible > :nth-child(5) { transition-delay: .24s; }
.reveal-stagger.is-visible > :nth-child(6) { transition-delay: .3s; }

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoDrift {
  from { transform: scale(1.08) translate3d(-1%, 0, 0); }
  to { transform: scale(1.02) translate3d(1%, 0, 0); }
}

@keyframes heartFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes caretBlink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes caretFade {
  to { opacity: 0; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(26, 25, 24, .78);
}
.lightbox img {
  max-width: min(92vw, 1180px);
  max-height: 86vh;
  border-radius: var(--radius);
}
.lightbox button {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: white;
  cursor: pointer;
}
.lightbox .lightbox-nav {
  top: 50%;
  z-index: 51;
  width: 48px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}
.lightbox .lightbox-nav:hover {
  background: rgba(255, 255, 255, .26);
}
.lightbox .lightbox-nav.prev {
  left: max(16px, calc((100vw - 1180px) / 2));
  right: auto;
}
.lightbox .lightbox-nav.next {
  right: max(16px, calc((100vw - 1180px) / 2));
}

.admin-body { padding-bottom: 0; }
.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
  display: grid;
  gap: 16px;
}
.admin-panel {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.admin-panel code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--milk);
  color: var(--olive-dark);
}
.admin-panel h1,
.admin-panel h2 { font-family: var(--sans); font-weight: 750; font-size: 24px; }
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.admin-list { display: grid; gap: 12px; }
.admin-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.field { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.field input,
.field textarea,
.field select,
.json-box {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}
.field input[type="checkbox"] { width: auto; }
.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
}
.admin-grid { display: grid; gap: 10px; }
.hero-admin-grid { display: grid; gap: 12px; }
.admin-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.notice {
  padding: 11px 12px;
  border-radius: var(--radius);
  background: var(--milk);
  color: var(--olive-dark);
}
.two-column-admin { display: grid; gap: 20px; }
.json-box { margin-top: 12px; font-family: Consolas, monospace; font-size: 13px; }

@media (min-width: 720px) {
  body { padding-bottom: 0; }
  .desktop-nav { display: flex; }
  .menu-button { display: none; }
  .mobile-menu { display: none !important; }
  .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  }
  .service-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
  .hero {
    min-height: calc(100svh - 73px);
    padding-bottom: 56px;
  }
  .intro-band { grid-template-columns: .78fr 1fr; align-items: stretch; }
  .intro-band p {
    min-height: 220px;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    border-left-width: 3px;
  }
  #formats {
    position: relative;
    width: 100%;
    padding: 86px max(18px, calc((100vw - 1120px) / 2));
    overflow: hidden;
  }
  #formats::before {
    content: "";
    position: absolute;
    inset: 32px max(18px, calc((100vw - 1160px) / 2));
    z-index: -1;
    border: 1px solid rgba(232, 223, 212, .9);
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(251, 246, 238, .98), rgba(253, 251, 247, .92) 48%, rgba(240, 231, 220, .7)),
      var(--bg);
    box-shadow: 0 24px 70px rgba(67, 61, 51, .07);
  }
  #formats .section-heading {
    grid-template-columns: minmax(300px, .76fr) minmax(320px, 1fr);
    align-items: end;
    max-width: none;
    margin-bottom: 30px;
    padding: 22px 18px 20px;
    border-bottom: 1px solid rgba(232, 223, 212, .9);
  }
  #formats .section-heading h2 {
    margin: 0;
    max-width: 480px;
  }
  #formats .section-heading p:not(.eyebrow) {
    max-width: 520px;
    padding: 0 0 4px 24px;
    border-left: 2px solid rgba(111, 115, 88, .28);
    color: var(--olive-dark);
    font-weight: 560;
    line-height: 1.6;
  }
  .format-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(156px, auto);
    align-items: stretch;
    gap: 16px;
    padding: 0 18px 18px;
  }
  .format-card {
    position: relative;
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .format-card:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
  }
  .format-card:nth-child(2),
  .format-card:nth-child(3) {
    grid-column: span 3;
  }
  .format-card:nth-child(4) {
    grid-column: span 3;
    grid-row: span 2;
  }
  .format-card:nth-child(5),
  .format-card:nth-child(6) {
    grid-column: span 3;
  }
  .format-card:nth-child(1) h3 {
    max-width: 420px;
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.02;
  }
  .format-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border: 1px solid rgba(111, 115, 88, .22);
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 800;
  }
  .format-card:not(:nth-child(1)):not(:nth-child(4)) img {
    aspect-ratio: 16 / 10;
  }
  .format-card:not(:nth-child(1)):not(:nth-child(4)) .format-card-body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 220px;
  }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 14px;
  }
  .gallery button:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery button:nth-child(4) {
    grid-row: span 2;
  }
  .gallery img {
    height: 100%;
    aspect-ratio: auto;
  }
  .split { grid-template-columns: .9fr 1fr; gap: 54px; }
  .delivery { grid-template-columns: .8fr 1fr; }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .step-card {
    grid-template-columns: 1fr;
    grid-template-rows: 44px 1fr;
    align-content: start;
    min-height: 188px;
  }
  .step-card > div {
    grid-template-rows: 48px auto;
  }
  .step-card h3 {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
  }
  .bottom-nav { display: none; }
  .two-column-admin { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-admin-grid { grid-template-columns: 1fr 1fr; }
  .final-photo { display: block; }
  .final-cta-inner { padding-inline: 96px; }
}

@media (min-width: 720px) and (max-width: 979px) {
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .format-card,
  .format-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    color: var(--ink);
  }
  .format-card:nth-child(n)::after {
    content: none;
  }
  .format-card:nth-child(n) img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .format-card:nth-child(n) .format-card-body {
    padding: 16px;
  }
  .format-card:nth-child(n) p {
    color: var(--muted);
  }
  .format-card:nth-child(n) .price {
    color: var(--olive-dark);
  }
  .format-card:nth-child(n) .format-card-number {
    border-color: rgba(111, 115, 88, .22);
    color: var(--olive-dark);
    background: transparent;
  }
}

@media (min-width: 980px) {
  #formats .section-heading {
    position: relative;
    padding-bottom: 18px;
  }
  #formats .section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 115, 88, .36), rgba(200, 162, 122, .28), transparent);
  }
  .format-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 228px 228px 210px;
    grid-auto-rows: auto;
  }
  .format-card:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    grid-template-rows: minmax(250px, 1fr) auto;
  }
  .format-card:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
  }
  .format-card:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
  }
  .format-card:nth-child(4) {
    grid-column: 6 / 10;
    grid-row: 2 / 3;
    color: var(--ink);
    border-color: var(--line);
  }
  .format-card:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2 / 4;
    grid-template-rows: minmax(230px, 1fr) auto;
    color: var(--ink);
    border-color: var(--line);
  }
  .format-card:nth-child(6) {
    grid-column: 1 / 10;
    grid-row: 3 / 4;
    grid-template-columns: minmax(220px, .42fr) 1fr;
    align-items: stretch;
  }
  .format-card:nth-child(4)::after {
    content: none;
  }
  .format-card:nth-child(4) img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .format-card:nth-child(4) .format-card-body {
    position: static;
    padding: 16px;
  }
  .format-card:nth-child(4) p {
    color: var(--muted);
  }
  .format-card:nth-child(4) .price {
    color: var(--olive-dark);
  }
  .format-card:nth-child(4) .format-card-number {
    border-color: rgba(111, 115, 88, .22);
    color: var(--olive-dark);
    background: transparent;
  }
  .format-card:nth-child(1)::after,
  .format-card:nth-child(5)::after {
    content: none;
  }
  .format-card:nth-child(1) img,
  .format-card:nth-child(5) img {
    position: static;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
  .format-card:nth-child(1) .format-card-body,
  .format-card:nth-child(5) .format-card-body {
    position: static;
    z-index: auto;
    align-self: auto;
  }
  .format-card:nth-child(1) .format-card-body {
    padding: 24px 26px 26px;
  }
  .format-card:nth-child(5) .format-card-body {
    padding: 22px;
  }
  .format-card:nth-child(1) h3 {
    max-width: none;
  }
  .format-card:nth-child(1) p,
  .format-card:nth-child(5) p {
    color: var(--muted);
  }
  .format-card:nth-child(1) .price,
  .format-card:nth-child(5) .price {
    color: var(--olive-dark);
  }
  .format-card:nth-child(1) .format-card-number,
  .format-card:nth-child(5) .format-card-number {
    border-color: rgba(111, 115, 88, .22);
    color: var(--olive-dark);
    background: transparent;
  }
  .format-card:nth-child(6) img {
    height: 100%;
    aspect-ratio: auto;
  }
  .format-card:nth-child(6) .format-card-body {
    min-height: 0;
    padding: 22px 24px;
  }
}

@media (min-width: 720px) {
  #formats {
    width: min(1120px, calc(100% - 32px));
    padding: 66px 0;
    overflow: visible;
  }
  #formats::before {
    content: none;
  }
  #formats .section-heading,
  #formats .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 700px;
    margin-bottom: 26px;
    padding: 0;
    border-bottom: 0;
  }
  #formats .section-heading::after {
    content: none;
  }
  #formats .section-heading h2 {
    max-width: none;
  }
  #formats .section-heading p:not(.eyebrow) {
    max-width: 620px;
    padding: 0;
    border-left: 0;
    color: var(--muted);
    font-weight: 400;
  }
  .format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 16px;
    padding: 0;
  }
  .format-card,
  .format-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    color: var(--ink);
    border-color: var(--line);
  }
  .format-card:nth-child(n)::after {
    content: none;
  }
  .format-card:nth-child(n) img {
    position: static;
    width: 100%;
    height: 400px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .format-card:nth-child(n) .format-card-body {
    position: static;
    z-index: auto;
    display: grid;
    grid-template-rows: auto auto minmax(96px, 1fr) auto;
    min-height: 250px;
    padding: 18px;
  }
  .format-card:nth-child(n) h3 {
    max-width: none;
    min-height: 50px;
    font-family: var(--sans);
    font-size: 20px;
    line-height: 1.25;
  }
  .format-card:nth-child(n) p {
    min-height: 96px;
    color: var(--muted);
  }
  .format-card:nth-child(n) .price {
    align-self: end;
    color: var(--olive-dark);
  }
  .format-card:nth-child(n) .format-card-number {
    border-color: rgba(111, 115, 88, .22);
    color: var(--olive-dark);
    background: transparent;
  }
}

@media (min-width: 720px) {
  .gallery {
    margin-inline: calc((100% - min(100%, 1120px)) / 2);
  }
}

@media (max-width: 520px) {
  .lightbox {
    padding: 12px;
  }
  .lightbox .lightbox-nav {
    width: 42px;
    height: 52px;
    font-size: 38px;
  }
  .lightbox .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox .lightbox-nav.next {
    right: 10px;
  }
  .format-card:nth-child(n) img {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .format-card:nth-child(n) .format-card-body {
    min-height: 0;
  }
  .format-card:nth-child(n) h3,
  .format-card:nth-child(n) p {
    min-height: 0;
  }
  .gallery {
    padding-top: 0;
    min-height: min(108vw, 475px);
  }
  .gallery button {
    flex-basis: min(86vw, 380px);
  }
  .gallery img {
    aspect-ratio: 4 / 5;
  }
  .review-track .review-card {
    flex-basis: min(82vw, 360px);
  }
  .hero-media {
    background-image:
      url("../Photo/hero-current-mobile.webp"),
      url("data:image/webp;base64,UklGRkwBAABXRUJQVlA4IEABAABwCwCdASowAEAAPwFoq1ArJaOisrJMyWAgCWQAxRFBVf6lmzlNekz0CRFT/VNshz0WuuzsgzmToCykyQjw6hz64ehfcdfYrtaNohpJCkMgW/TJL83EYduJZIaTqGf0+3zE//gAAP7UUzdmYeENH0KgWNNQgGlOPuOzXtCxZJU9JJoZCAfVBrzfzkXg+2QBDs92dZ0o2DujQR+8iX0nDzv8P4nHDx+xo48OGyQCTuXjdiRaEn8Wa9AFVFws9D0j5ge5CzcMiMCPYjfCvhuVCt5SgT/iDXkdUmvUktosl7lW+PlV4vRqwPkne70qLWTLgxJDkETTV7aNliM/qTA0bCalRnXMjtr0y2We0SWdacAmge8iHpKT1vh/4rZnFeyJ5fYnc5BeoKD7zUt5xjITnOKvfzXMRu04z+TJzaAAnAAAAA==");
  }
  .hero {
    padding-top: 42px;
    padding-bottom: 98px;
  }
  .hero h1 {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1;
    max-width: 100%;
  }
  .hero .lead {
    font-size: 15px;
    line-height: 1.5;
    margin: 16px 0 22px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 14px;
  }
  .final-cta {
    width: 100%;
    padding: 34px 16px 58px;
  }
  .final-cta-inner {
    padding: 28px 18px 32px;
  }
  .final-logo {
    width: min(230px, 74vw);
  }
  .final-cta h2 {
    font-size: clamp(29px, 8.8vw, 38px);
  }
  .final-cta .contact-actions {
    width: 100%;
  }
  .final-cta .button {
    flex: 1 1 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .reveal-stagger > *,
  .hero-copy > * {
    opacity: 1;
    transform: none;
  }
}
