:root {
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --ink: #24211f;
  --muted: #6f6962;
  --honey: #d99a61;
  --honey-deep: #b56f3e;
  --blush: #ee8d9a;
  --sage: #5d7655;
  --sage-dark: #314333;
  --line: rgba(36, 33, 31, .14);
  --shadow: 0 24px 70px rgba(56, 42, 31, .14);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(238, 141, 154, .32); }

.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: 999;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.9rem); margin-bottom: 30px; }
h2 { font-size: clamp(2.7rem, 5vw, 5.15rem); margin-bottom: 32px; }
h1 em, h2 em { color: var(--honey-deep); font-weight: 500; }
h3 { font-size: 1.08rem; line-height: 1.25; margin-bottom: 7px; }
p { color: var(--muted); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: #f0c69f; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--honey-deep); border-color: var(--honey-deep); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(238, 141, 154, .55);
  outline-offset: 4px;
}
.button-small { min-height: 42px; padding: 0 18px; font-size: .78rem; }
.button-outline { color: var(--ink); background: transparent; }
.button-outline:hover { color: white; }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--blush); border-color: var(--blush); color: var(--ink); }
.text-link { font-size: .9rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(251, 247, 241, .92);
  box-shadow: 0 8px 30px rgba(36, 33, 31, .08);
  backdrop-filter: blur(15px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { position: relative; font-size: .86rem; font-weight: 750; text-decoration: none; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--honey-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--paper); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(40px, 7vw, 92px); }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 590px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 38px 0 0; list-style: none; }
.hero-notes li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-visual { position: relative; min-height: 590px; }
.hero-main-photo {
  position: absolute;
  inset: 0 0 40px 5%;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 54% 38% 62% / 42% 38% 62% 58%;
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-small-photo {
  position: absolute;
  left: -7%;
  bottom: 0;
  width: 31%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--cream);
  border-radius: 42% 58% 52% 48% / 49% 45% 55% 51%;
  box-shadow: 0 18px 40px rgba(36, 33, 31, .18);
  transform: rotate(-6deg);
}
.hero-small-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp {
  position: absolute;
  right: -4%;
  top: 6%;
  display: grid;
  place-content: center;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blush);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 12px 35px rgba(36, 33, 31, .13);
}
.hero-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(36, 33, 31, .45); border-radius: inherit; }
.hero-stamp span { font-size: .55rem; font-weight: 900; letter-spacing: .16em; }
.hero-stamp strong { font: 700 1.25rem/1.1 Georgia, serif; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-shape-one { width: 340px; height: 340px; left: -150px; top: 16%; background: rgba(238, 141, 154, .16); }
.hero-shape-two { width: 260px; height: 260px; right: -100px; bottom: 7%; background: rgba(93, 118, 85, .16); }
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { width: 38px; height: 1px; background: var(--muted); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 50% { transform: scaleX(.5); opacity: .4; } }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.about-photo { position: relative; }
.about-photo > img { width: 100%; max-height: 760px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  right: -38px;
  bottom: 42px;
  display: grid;
  width: 165px;
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: var(--honey);
  text-align: center;
  transform: rotate(-7deg);
  box-shadow: 0 18px 35px rgba(36, 33, 31, .14);
}
.about-badge span { font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-badge strong { font: 600 1.35rem/1.05 Georgia, serif; }
.about-copy .intro { color: var(--ink); font-size: clamp(1.14rem, 1.8vw, 1.38rem); }
.feature-list { margin: 38px 0; border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-list p { margin: 0; font-size: .93rem; }
.feature-number { color: var(--honey-deep); font: italic 600 1.1rem Georgia, serif; }

.gallery-section { overflow: hidden; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 490px; margin-bottom: 8px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-button {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-button:hover, .filter-button.is-active { background: var(--ink); border-color: var(--ink); color: white; }
.gallery-carousel { position: relative; }
.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}
.carousel-hint {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.9rem/1 Georgia, serif;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(36, 33, 31, .06);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.carousel-button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
.carousel-button:disabled { opacity: .34; cursor: default; }
.gallery-carousel-track {
  display: flex;
  gap: 18px;
  width: 100%;
  padding: 4px 4px 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-carousel-track::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 36px) / 3);
  aspect-ratio: 4 / 5;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #e8e0d6;
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: 0 8px 22px rgba(36, 33, 31, .07);
  transition: transform .25s ease, opacity .2s ease;
}
.gallery-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item.is-hidden { display: none; }

.contact-section { padding-bottom: 90px; }
.contact-wrap {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(42px, 6vw, 80px);
  border-radius: 38px;
  overflow: hidden;
  background: var(--sage-dark);
  box-shadow: var(--shadow);
}
.contact-wrap::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -210px;
  bottom: -240px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.02);
}
.contact-copy { position: relative; z-index: 1; color: white; }
.contact-copy h2 { color: white; }
.contact-copy h2 em { color: #f0c69f; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.69); max-width: 540px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
.contact-details a, .contact-details > div { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; text-decoration: none; }
.contact-details span { display: block; color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { display: block; margin-top: 5px; color: white; font-size: .85rem; overflow-wrap: anywhere; }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.social-links a { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; font-size: .76rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.social-links a:hover { transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.social-links svg rect, .social-links svg circle { fill: none; }
.social-links svg .social-icon-dot { fill: currentColor; stroke: none; }
.social-links-contact { margin-top: 20px; }
.social-links-contact a { padding: 11px 15px; color: white; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.social-links-contact a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.contact-form {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--ink); font-size: .78rem; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36,33,31,.17);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--honey-deep); box-shadow: 0 0 0 4px rgba(217,154,97,.12); outline: 0; }
.form-note { margin: 14px 0 0; font-size: .72rem; line-height: 1.45; }
.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 32px; }
.footer-brand img { width: 50px; height: 50px; }
.footer-grid > p { margin: 0; font-size: .82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .78rem; font-weight: 800; text-decoration: none; }
.social-links-footer { grid-column: 1 / -1; justify-content: center; }
.social-links-footer a { padding: 8px 12px; color: var(--ink); border: 1px solid var(--line); background: var(--paper); }
.social-links-footer a:hover { border-color: var(--honey-deep); background: rgba(217,154,97,.08); }
.social-links-footer svg { width: 18px; height: 18px; }
.copyright { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); text-align: center; }

.lightbox {
  width: min(94vw, 1320px);
  max-width: none;
  height: 92vh;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(21, 18, 16, .94); backdrop-filter: blur(8px); }
.lightbox figure { display: grid; place-items: center; height: 100%; margin: 0; }
.lightbox img { max-width: 100%; max-height: calc(92vh - 48px); border-radius: 16px; box-shadow: 0 28px 90px rgba(0,0,0,.45); }
.lightbox figcaption { position: absolute; bottom: 6px; color: rgba(255,255,255,.7); font-size: .8rem; text-align: center; }
.lightbox-close, .lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(20,18,17,.55);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox-close { right: 0; top: 0; font-size: 1.8rem; }
.lightbox-arrow { top: 50%; font-size: 2rem; transform: translateY(-50%); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 560px; width: min(760px, 95%); margin-inline: auto; }
  .hero-main-photo { left: 7%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 650px; }
  .about-badge { right: -10px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p:not(.copyright) { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  body { font-size: 16px; }
  .site-header { padding: 8px 0; }
  .brand img { width: 50px; height: 50px; }
  .menu-toggle { display: block; position: relative; z-index: 55; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 54;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(251,247,241,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.button) { font: 500 2.25rem/1 Georgia, serif; }
  .hero { padding-bottom: 70px; }
  .hero-visual { min-height: 440px; width: 100%; }
  .hero-main-photo { inset: 0 0 25px 5%; border-radius: 34px; }
  .hero-small-photo { left: 0; width: 31%; border-width: 6px; }
  .hero-stamp { right: -3px; top: -22px; width: 104px; }
  .hero-stamp strong { font-size: 1rem; }
  .scroll-cue { display: none; }
  .about-badge { width: 125px; right: -4px; bottom: 24px; }
  .about-badge strong { font-size: 1.05rem; }
  .gallery-carousel-track { gap: 12px; }
  .gallery-item { flex-basis: calc((100% - 12px) / 2); border-radius: 13px; }
  .gallery-item::after { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-wrap { padding: 30px 20px; border-radius: 26px; }
  .contact-details { grid-template-columns: 1fr; }
  .social-links-contact { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .lightbox-arrow { width: 42px; height: 42px; top: auto; bottom: 8px; }
  .lightbox-prev { left: calc(50% - 52px); }
  .lightbox-next { right: calc(50% - 52px); }
  .lightbox figcaption { display: none; }
}


@media (max-width: 720px) {
  .carousel-hint { font-size: .76rem; }
  .gallery-item { flex-basis: 82%; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .brand span { font-size: .88rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 390px; }
  .hero-small-photo { width: 35%; }
  .gallery-item { flex-basis: 88%; }
  .carousel-button { width: 42px; height: 42px; }
  .hero-stamp { width: 92px; }
  .hero-stamp span { font-size: .45rem; }
  .hero-stamp strong { font-size: .88rem; }
}

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


/* Privacy policy page */
.policy-page { min-height: 100vh; background: var(--cream); }
.policy-main { padding: 150px 0 90px; }
.policy-card {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.policy-card h1 { max-width: none; margin-bottom: 20px; }
.policy-card h2 { margin: 42px 0 12px; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.policy-card p, .policy-card li { color: var(--muted); }
.policy-card ul { padding-left: 1.2rem; }
.policy-card a { font-weight: 800; }
.policy-meta { margin-bottom: 34px; font-size: .86rem; }
.policy-back { display: inline-flex; margin-top: 34px; }
@media (max-width: 760px) {
  .policy-main { padding-top: 120px; }
  .policy-card { border-radius: 22px; }
}

/* Inline contact form feedback */
.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
}
.form-status.is-sending { background: rgba(255,255,255,.62); color: var(--ink); }
.form-status.is-success { background: #e9f6ec; color: #245b32; }
.form-status.is-error { background: #fff0ef; color: #8a2f2a; }
.form-status a { color: inherit; text-decoration: underline; }
.contact-form button:disabled { cursor: wait; opacity: .7; }
