:root {
  --bg: #f1e9e3;
  --surface: #f1e9e3;
  --ink: #6d1d23;
  --muted: #6d1d23;
  --line: #6d1d2338;
  --button: #6d1d23;
  --button-text: #f1e9e3;
  --button-radius: 6px;
  --inverse: #6d1d23;
  --inverse-ink: #f1e9e3;
  color-scheme: light;
}
html[data-theme="dark"] {
  --bg: #6d1d23;
  --surface: #6d1d23;
  --ink: #f1e9e3;
  --muted: #f1e9e3;
  --line: #f1e9e347;
  --button: #f1e9e3;
  --button-text: #6d1d23;
  --inverse: #f1e9e3;
  --inverse-ink: #6d1d23;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button,
.primary,
.secondary,
.nav-book,
.choice-pills span,
.assistant {
  border-radius: var(--button-radius);
}
button,
.primary {
  border: 1px solid var(--line);
  background: var(--button);
  color: var(--button-text);
  padding: 12px 20px;
  min-height: 44px;
}
button:hover,
.primary:hover {
  filter: brightness(0.92);
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
input,
select,
textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px;
  width: 100%;
  min-width: 0;
  min-height: 44px;
}
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  accent-color: var(--ink);
}
label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 7px;
  margin: 14px 0;
}
textarea {
  resize: vertical;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
legend {
  font-size: 13px;
  margin-bottom: 12px;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  font-size: clamp(46px, 6.1vw, 88px);
  margin: 20px 0 25px;
}
h2 {
  font-size: clamp(32px, 4vw, 60px);
  margin: 20px 0 25px;
}
h3 {
  font-size: 28px;
}
p {
  margin: 0 0 20px;
}
img,
video {
  width: 100%;
  display: block;
  object-fit: cover;
}
figure {
  margin: 0;
}
figcaption,
.reference-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
em {
  font-weight: 400;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
.b-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 6%;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark {
  display: block;
  width: clamp(170px, 18vw, 235px);
  height: 62px;
  background: currentColor;
  -webkit-mask: var(--brand-logo) center / contain no-repeat;
  mask: var(--brand-logo) center / contain no-repeat;
}
.brand-tagline {
  display: block;
  font: 9px Arial;
  width: max-content;
  letter-spacing: 1.6px;
  white-space: nowrap;
  margin-top: -1px;
  margin-left: 18%;
}
.b-nav nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
}
.nav-book {
  border-bottom: 1px solid;
  padding-bottom: 8px;
}
.preferences {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}
.preferences label {
  margin: 0;
}
.preferences select {
  padding: 6px;
  width: 90px;
  font-size: 11px;
}
.menu-toggle {
  display: none;
}
.b-hero {
  text-align: center;
  padding: 65px 6% 40px;
}
.hero-text {
  max-width: 850px;
  margin: auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.b-hero h1 {
  font-style: italic;
}
.lead {
  max-width: 490px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  text-align: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.primary:hover {
  transform: translateY(-2px);
}
.secondary {
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}
.zone {
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-top: 25px;
}
.invitation-triptych {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.invitation-triptych > img {
  height: 330px;
  padding: 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.invitation-triptych > .main-photo {
  height: 475px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 2px;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  min-height: 350px;
  width: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  text-align: center;
}
.photo-placeholder span {
  font: italic clamp(28px, 3vw, 43px) Georgia;
}
.photo-placeholder small {
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 20px;
}
.specialties {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 25px 5%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 20px Georgia;
  overflow: hidden;
}
.specialties i {
  font-style: normal;
  font-size: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-variant-emoji: text;
}
.b-section {
  padding: 85px 7%;
  max-width: 1600px;
  margin: auto;
}
.experience,
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.experience-photo,
.detail-layout figure {
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--surface);
}
.experience-photo img,
.detail-layout img {
  height: 500px;
  border-radius: 2px;
}
.experience-copy p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}
.mini-selection {
  background: var(--surface);
  max-width: none;
}
.selection-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.specialty {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 23px 0;
  transition: padding 0.25s;
}
.specialty:last-child {
  border-bottom: 1px solid var(--line);
}
.specialty:hover {
  padding-left: 12px;
}
.specialty-index {
  font-size: 10px;
}
.specialty strong {
  display: block;
  font: 30px Georgia;
}
.specialty small {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  color: var(--muted);
}
.specialty-arrow {
  margin-left: auto;
}
.moments-section {
  background: var(--inverse);
  color: var(--inverse-ink);
  text-align: center;
  max-width: none;
}
.moment-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.moment-columns article {
  border-top: 1px solid currentColor;
  padding-top: 25px;
}
.moment-columns span,
.moment-columns a {
  font-size: 12px;
}
.request-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8%;
}
.paper-form {
  padding: 32px;
  background: var(--surface);
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.check {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.choice-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.choice-pills label {
  margin: 0;
  position: relative;
  cursor: pointer;
}
.choice-pills input {
  position: absolute;
  opacity: 0;
}
.choice-pills span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.choice-pills input:checked + span {
  background: var(--button);
  color: var(--button-text);
}
.choice-pills input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  margin: 20px 0;
}
.form-note a {
  text-decoration: underline;
}
.form-result {
  padding: 18px;
  border: 1px solid currentColor;
  margin-top: 20px;
  white-space: pre-line;
  font-size: 13px;
}
.form-result.error {
  color: #6d1d23;
}
html[data-theme="dark"] .form-result.error {
  color: #f1e9e3;
}
.b-faq {
  max-width: 1100px;
  padding-top: 20px;
}
.faq-items {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 14px;
  overscroll-behavior: contain;
  scrollbar-color: var(--line) transparent;
}
.faq-items details:first-child {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
summary:after {
  content: "+";
  font-size: 22px;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
}
.b-footer {
  border-top: 1px solid var(--line);
  padding: 45px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.b-footer p,
.b-footer small {
  font-size: 11px;
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  width: 100%;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition-property: background-color, color, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.social-icon-link:hover,
.social-icon-link:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.social-icon-link:active {
  transform: translateY(0) scale(0.96);
}
.page-heading {
  text-align: center;
  padding: 65px 7% 10px;
}
.page-heading h1 {
  font-style: italic;
}
.form-page {
  max-width: 950px;
  padding-top: 25px;
}
.prose {
  max-width: 950px;
  padding-top: 35px;
}
.prose a:not(.primary) {
  text-decoration: underline;
}
.pre-line {
  white-space: pre-line;
}
.catalog {
  padding-top: 35px;
}
.catalog-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}
.catalog-controls label {
  width: 45%;
  margin: 0;
}
.filter-buttons {
  display: flex;
  gap: 10px;
}
.filter-buttons button {
  background: transparent;
  color: var(--ink);
}
.filter-buttons button[aria-pressed="true"] {
  background: var(--button);
  color: var(--button-text);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}
.catalog-card {
  min-width: 0;
}
.card-image {
  display: block;
  padding: 10px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
  background: var(--surface);
  overflow: hidden;
}
.card-image img {
  height: 310px;
  transition: transform 0.5s;
}
.card-image:hover img {
  transform: scale(1.025);
}
.catalog-card h2 {
  font-size: 33px;
  margin: 10px 0 15px;
}
.catalog-card p {
  font-size: 13px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}
.catalog-card .photo-placeholder {
  min-height: 310px;
}
.article-photo {
  max-width: 650px;
  margin: 0 auto 35px;
}
.article-photo img {
  max-height: 650px;
}
.comments {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.comments form {
  margin: 30px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.reviews-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
}
blockquote small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 12px;
}
blockquote cite {
  font-style: normal;
}
.mobile-book {
  display: none;
}
.assistant {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 30;
  padding: 0 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 5px 30px #6d1d2311;
  font-size: 13px;
}
.assistant[open] {
  width: min(340px, calc(100vw - 32px));
  padding: 10px 20px;
}
.assistant form > div {
  margin-top: 15px;
  max-height: 220px;
  overflow: auto;
}
.assistant a {
  text-decoration: underline;
}
.text-button {
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  padding: 8px 12px;
}
#privacy-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 410px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  z-index: 50;
  box-shadow: 0 5px 40px #6d1d2322;
}
#privacy-banner p {
  font-size: 13px;
}
#privacy-banner button {
  font-size: 12px;
  margin: 4px;
}
dialog {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  max-width: 90vw;
  max-height: 90vh;
  padding: 25px;
}
dialog::backdrop {
  background: #6d1d23;
}
dialog [data-close] {
  float: right;
  margin-bottom: 10px;
}
#lightbox-content img,
#lightbox-content video {
  max-height: 70vh;
  width: auto;
  max-width: 75vw;
  object-fit: contain;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
[hidden] {
  display: none !important;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
  transition-delay: var(--delay, 0ms);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .b-nav {
    gap: 15px;
    padding: 22px 4%;
  }
  .b-nav nav {
    gap: 15px;
  }
  .b-nav .brand {
    font-size: 27px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .b-nav {
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: block;
    background: transparent;
    color: var(--ink);
    padding: 8px 12px;
    margin-left: auto;
  }
  .b-nav nav {
    display: none;
    order: 4;
    width: 100%;
    padding-top: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .b-nav nav.open {
    display: flex;
  }
  .b-nav nav a {
    padding: 8px;
  }
  .preferences {
    gap: 10px;
  }
  .preferences select {
    width: 76px;
  }
  .preferences a {
    font-size: 11px;
  }
  .b-hero {
    padding: 40px 5% 25px;
  }
  .invitation-triptych {
    gap: 12px;
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    margin-top: 35px;
  }
  .invitation-triptych > img {
    height: 190px;
    padding: 5px;
  }
  .invitation-triptych > .main-photo {
    height: 290px;
    padding: 6px;
    min-height: 0;
  }
  .photo-placeholder span {
    font-size: 21px;
  }
  .photo-placeholder small {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .specialties {
    gap: clamp(5px, 1.7vw, 10px);
    font-size: clamp(12px, 3.3vw, 15px);
    padding-inline: 3%;
    flex-wrap: nowrap;
  }
  .specialties span {
    white-space: nowrap;
  }
  .specialties i {
    display: block;
    flex-shrink: 0;
    font-size: 10px;
  }
  .b-section {
    padding: 50px 6%;
  }
  .experience,
  .detail-layout,
  .request-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .experience-photo img,
  .detail-layout img {
    height: 380px;
  }
  .selection-heading {
    display: block;
  }
  .selection-heading > .secondary {
    margin-bottom: 25px;
    display: inline-block;
  }
  .moment-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .moment-columns h3 {
    margin: 15px 0;
  }
  .paper-form {
    padding: 22px;
  }
  .fields {
    gap: 0 12px;
  }
  .request-section h2 {
    font-size: 44px;
  }
  .b-faq {
    padding-top: 10px;
  }
  .catalog-grid {
    gap: 35px 20px;
  }
  .card-image img {
    height: 240px;
  }
  .catalog-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .catalog-controls label {
    width: 100%;
  }
  .catalog-card h2 {
    font-size: 28px;
  }
  .card-bottom {
    align-items: start;
    flex-direction: column;
  }
  .b-footer {
    padding: 40px 6% 120px;
  }
  .mobile-book {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 25;
    justify-content: space-between;
    padding: 13px 20px;
    background: var(--button);
    color: var(--button-text);
    font-size: 13px;
    border: 1px solid var(--line);
  }
  .assistant {
    bottom: 80px;
    right: 12px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  #privacy-banner {
    left: 12px;
    right: 12px;
    bottom: 80px;
    max-width: none;
  }
}
@media (max-width: 420px) {
  .brand-mark {
    width: 148px;
    height: 49px;
  }
  .brand-tagline {
    font-size: 7px;
  }
  .preferences {
    width: 100%;
    justify-content: flex-end;
  }
  .fields,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .invitation-triptych {
    gap: 7px;
  }
  .invitation-triptych > img {
    height: 140px;
    padding: 3px;
  }
  .invitation-triptych > .main-photo {
    height: 235px;
  }
  .photo-placeholder small {
    display: none;
  }
  .photo-placeholder span {
    font-size: 17px;
  }
  .paper-form {
    padding: 18px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .primary {
    width: 100%;
  }
  .card-image img {
    height: 300px;
  }
  .filter-buttons button {
    flex: 1;
    padding: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
.social-section {
  margin-top: 70px;
}
.social-carousel {
  display: flex;
  gap: 25px;
  overflow: auto;
  scroll-snap-type: x mandatory;
}
.social-post {
  flex: 0 0 min(360px, 85vw);
  padding: 24px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}
.social-post iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.social-post p,
.social-post a {
  font-size: 12px;
}
.social-section .actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-profile-links a {
  flex: 0 0 44px;
}
.gallery-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.gallery-grid .catalog-card h2 {
  margin-bottom: 0;
}
.field-error {
  font-size: 12px;
  color: #6d1d23;
}
[aria-invalid="true"] {
  border-color: #6d1d23;
}
html[data-theme="dark"] .field-error {
  color: #f1e9e3;
}

/* Compact language controls and floating appearance action. */
.preferences {
  gap: 6px;
}
.preferences .language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 23px;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.language-flag[aria-current="true"],
.language-flag:hover {
  background: var(--surface);
  border-color: var(--line);
}
@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .b-nav .preferences {
    width: auto;
    margin-left: 4px;
  }
}

/* Shared options live beside the mobile quote action. */
.action-dock {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(26px + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.dock-quote {
  display: flex;
  min-width: 250px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: var(--button-radius);
  background: var(--button);
  color: var(--button-text);
  border: 1px solid var(--line);
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.tools-toggle {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--button-radius);
  box-shadow: 0 4px 18px #6d1d2322;
}
.tools-toggle[aria-expanded="true"] {
  background: var(--surface);
  color: var(--ink);
}
.tools-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  max-height: min(480px, 65dvh);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 8px 32px #6d1d2322;
}
.theme-action {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}
.theme-action .theme-sun {
  display: none;
}
html[data-theme="dark"] .theme-action .theme-sun {
  display: block;
}
html[data-theme="dark"] .theme-action .theme-moon {
  display: none;
}
.tools-panel .assistant,
.tools-panel .assistant[open] {
  position: static;
  width: 100%;
  padding: 0;
  margin-top: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.tools-panel .assistant summary {
  padding: 12px;
}
.tools-panel .assistant form {
  padding: 0 8px 8px;
}
@media (max-width: 760px) {
  .action-dock {
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    justify-content: flex-end;
  }
  .dock-quote {
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
  }
}

.action-dock {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}
.action-dock[data-visible="false"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}
@media (prefers-reduced-motion: reduce) {
  .action-dock {
    transition: none;
  }
}

/* Three compact icon actions, above the main square. */
.tools-panel {
  display: flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  max-height: none;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.tool-square {
  width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 3px 12px #6d1d2322;
}
.tool-square[aria-pressed="true"],
.tool-square[aria-expanded="true"] {
  background: var(--button);
  color: var(--button-text);
}
.question-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f1e9e3;
  color: #6d1d23;
  box-shadow: 0 18px 48px #30101433;
  overscroll-behavior: contain;
}
.question-panel-header {
  display: grid;
  grid-template-columns: 38px 1fr 36px;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #6d1d23;
  color: #f1e9e3;
}
.assistant-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1e9e3;
  color: #6d1d23;
}
.question-panel-header strong,
.question-panel-header small {
  display: block;
  line-height: 1.35;
}
.question-panel-header small {
  color: #f1e9e3;
  font-size: 10px;
}
.question-panel-header > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: #f1e9e3;
  font-size: 22px;
}
.question-panel form {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.question-panel [role="status"] {
  max-height: min(220px, 32dvh);
  overflow-y: auto;
  padding: 12px 14px;
  border-radius: 12px 12px 12px 3px;
  background: #6d1d2314;
  color: #6d1d23;
  font-size: 12px;
  line-height: 1.55;
  text-wrap: pretty;
}
.question-panel a {
  text-decoration: underline;
}
.assistant-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: center;
}
.assistant-composer input {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 23px;
  border-color: #6d1d2366;
  background: #fffaf6;
  color: #6d1d23;
}
.assistant-composer input::placeholder {
  color: #6d1d2399;
}
.assistant-composer button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  border-color: #6d1d23;
  background: #6d1d23;
  color: #f1e9e3;
  transition-property: transform, filter;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.assistant-composer button:active {
  transform: scale(0.94);
}
.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;
}

@media (max-width: 760px) {
  .question-panel {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    width: auto;
    max-height: calc(100dvh - 102px - env(safe-area-inset-bottom));
  }
  .question-panel [role="status"] {
    max-height: min(260px, 38dvh);
  }
  .chat-open .dock-quote,
  .chat-open .dock-whatsapp,
  .chat-open .tools-toggle,
  .chat-open .tools-panel > :not(.question-panel) {
    display: none;
  }
  .b-nav .preferences {
    margin-left: auto;
  }
  .b-nav .menu-toggle {
    margin-left: 6px;
  }
}

.header-call {
  display: flex;
  align-items: center;
}
.call-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: transparent;
  color: var(--ink);
}
.call-icon:disabled {
  cursor: default;
  opacity: 0.6;
}
.tool-language {
  font-size: 23px;
  line-height: 1;
}
@media (max-width: 760px) {
  .header-call {
    margin-left: auto;
  }
}

.dock-whatsapp {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  background: var(--button);
  color: var(--button-text);
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
}
.dock-whatsapp:hover {
  filter: brightness(0.92);
}
.dock-whatsapp svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
}
@media (max-width: 360px) {
  .action-dock {
    gap: 8px;
  }
  .dock-quote {
    font-size: 11px;
    letter-spacing: 0.2px;
    padding-inline: 6px;
  }
}

#theme-toggle .switch-sun {
  display: none;
}
#theme-toggle .switch-moon {
  display: block;
}
html[data-theme="dark"] #theme-toggle .switch-sun {
  display: block;
}
html[data-theme="dark"] #theme-toggle .switch-moon {
  display: none;
}

.service-family {
  padding: 30px 0 55px;
  scroll-margin-top: 110px;
}
.service-family + .service-family {
  border-top: 1px solid var(--line);
}
.service-family > h2 {
  margin-bottom: 32px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.family-empty {
  padding: 24px 0;
  color: var(--muted);
}
.family-empty a {
  margin-left: 12px;
}
.service-family[hidden] {
  display: none;
}

/* The mobile home opens as one photographic invitation. Desktop is unchanged. */
@media (max-width: 760px) {
  .home-page .b-nav {
    position: fixed;
    z-index: 35;
    top: 0;
    right: 0;
    left: 0;
    padding: 14px max(16px, env(safe-area-inset-right)) 12px
      max(16px, env(safe-area-inset-left));
    border-bottom-color: transparent;
    background: transparent;
    color: #6d1d23;
    transition-property:
      background-color, border-color, box-shadow, color, padding;
    transition-duration: 280ms;
    transition-timing-function: ease-out;
  }
  .home-page .b-nav .brand,
  .home-page .b-nav .call-icon,
  .home-page .b-nav .menu-toggle {
    color: #6d1d23;
    transition-property:
      color, border-color, background-color, box-shadow, filter;
    transition-duration: 280ms;
    transition-timing-function: ease-out;
  }
  .home-page .b-nav .brand-mark,
  .home-page .b-nav .brand-tagline,
  .home-page .b-nav :is(.call-icon, .menu-toggle) svg {
    transition-property: filter, text-shadow;
    transition-duration: 280ms;
    transition-timing-function: ease-out;
  }
  .home-page .b-nav:not(.is-scrolled):not(.menu-open) .brand-mark {
    filter: drop-shadow(0 2px 2px #f1e9e3cc) drop-shadow(0 4px 8px #30101455);
  }
  .home-page .b-nav:not(.is-scrolled):not(.menu-open) .brand-tagline {
    text-shadow:
      0 1px 2px #f1e9e3,
      0 3px 8px #30101466;
  }
  .home-page .b-nav:not(.is-scrolled):not(.menu-open) .call-icon,
  .home-page .b-nav:not(.is-scrolled):not(.menu-open) .menu-toggle {
    border-color: #f1e9e399;
    background: #f1e9e32e;
    box-shadow:
      0 6px 18px #3010144d,
      inset 0 0 0 1px #f1e9e340;
    backdrop-filter: blur(4px);
  }
  .home-page
    .b-nav:not(.is-scrolled):not(.menu-open)
    :is(.call-icon, .menu-toggle)
    svg {
    filter: drop-shadow(0 2px 3px #f1e9e3cc) drop-shadow(0 2px 5px #3010144d);
  }
  .home-page .b-nav.is-scrolled,
  .home-page .b-nav.menu-open {
    padding-top: 9px;
    padding-bottom: 9px;
    border-bottom-color: #f1e9e347;
    background: #6d1d23f5;
    color: #f1e9e3;
    box-shadow: 0 8px 24px #3010142b;
    backdrop-filter: blur(10px);
  }
  .home-page .b-nav.is-scrolled .brand,
  .home-page .b-nav.is-scrolled .call-icon,
  .home-page .b-nav.is-scrolled .menu-toggle,
  .home-page .b-nav.menu-open .brand,
  .home-page .b-nav.menu-open .call-icon,
  .home-page .b-nav.menu-open .menu-toggle {
    color: #f1e9e3;
    border-color: #f1e9e347;
  }
  .home-page .b-nav nav.open {
    padding: 12px 0 4px;
    color: #f1e9e3;
  }
  .home-page .b-hero {
    display: grid;
    min-height: 100svh;
    place-items: stretch;
    padding: clamp(112px, 16svh, 142px) 7%
      max(72px, calc(38px + env(safe-area-inset-bottom)));
    color: #f1e9e3;
    background-image:
      linear-gradient(180deg, #6d1d2329 0%, #4b11184d 42%, #4b1118a3 100%),
      url("/static/mobile-home-gourmelice.webp");
    background-position: center 46%;
    background-size: cover;
  }
  .home-page .hero-text {
    display: flex;
    min-height: calc(100svh - 195px);
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(16px, 3.2svh, 28px);
    margin: 0 auto;
  }
  .home-page .b-hero .eyebrow,
  .home-page .b-hero h1,
  .home-page .b-hero .lead,
  .home-page .b-hero .zone {
    margin-top: 0;
    margin-bottom: 0;
    color: #f1e9e3;
    text-shadow: 0 2px 16px #30101466;
  }
  .home-page .b-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }
  .home-page .b-hero .lead {
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.65;
  }
  .home-page .hero-actions {
    gap: 14px;
  }
  .home-page .hero-actions .primary {
    border-color: #f1e9e3;
    background: #f1e9e3;
    color: #6d1d23;
    box-shadow: 0 10px 30px #30101433;
  }
  .home-page .hero-actions .secondary {
    border-color: #f1e9e399;
    color: #f1e9e3;
  }
  .home-page .invitation-triptych {
    display: none;
  }
}

/* Compact quote request */
.quote-form {
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  border-radius: 18px;
  box-shadow: 0 24px 70px #30101418;
}
.quote-form-intro {
  padding: 30px 32px 24px;
  background: color-mix(in srgb, var(--surface) 88%, var(--bg));
}
.quote-form-intro h2 {
  margin: 5px 0 8px;
  font-size: clamp(30px, 3.4vw, 48px);
}
.quote-form-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.quote-form-section {
  padding: 22px 32px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
}
.quote-section-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}
.quote-section-heading > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.quote-section-heading h3 {
  margin: 0;
  font: 600 15px/1.3 var(--sans);
}
.quote-form label {
  margin-top: 0;
  font-size: 12px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  margin-top: 7px;
  border-radius: 9px;
}
.quote-form textarea {
  min-height: 90px;
  resize: vertical;
}
.quote-form .field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.quote-identity {
  grid-template-columns: 1fr 1fr;
}
.quote-identity label:first-child {
  grid-column: 1/-1;
}
.quote-event,
.quote-selects {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.captcha-box {
  display: grid;
  grid-template-columns: 1fr 110px 44px;
  gap: 10px;
  align-items: end;
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.captcha-box strong,
.captcha-box span {
  display: block;
}
.captcha-box strong {
  font-size: 12px;
  margin-bottom: 4px;
}
.captcha-box [data-captcha-question] {
  font-size: 13px;
}
.captcha-box label {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.captcha-box label input {
  height: 54px;
  margin: 0;
  padding-inline: 12px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.captcha-code {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 4px;
  width: max-content;
  min-height: 32px;
  padding: 3px 10px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg);
  font: 700 18px/1 monospace;
  letter-spacing: 0.08em;
  user-select: none;
}
.captcha-code::after {
  content: "";
  position: absolute;
  inset: 48% -5px auto;
  height: 1px;
  background: currentColor;
  opacity: 0.32;
  transform: rotate(-7deg);
}
.captcha-code i {
  display: inline-block;
  font-style: normal;
}
.captcha-code i:nth-child(2n) {
  transform: translateY(2px) rotate(7deg);
}
.captcha-code i:nth-child(3n) {
  transform: translateY(-2px) rotate(-8deg);
}
.captcha-refresh {
  width: 44px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  font-size: 20px;
}
.quote-consents {
  margin-top: 14px;
}
.quote-consents summary {
  cursor: pointer;
  font-size: 12px;
}
.quote-consents .check {
  margin-top: 10px;
  font-size: 11px;
}
.quote-submit {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 64px);
  margin: 0 32px 32px;
  padding-inline: 18px;
}
.assistant-composer input {
  font-size: 16px;
}
@media (max-width: 760px) {
  .quote-form {
    padding: 0;
    border-radius: 14px;
  }
  .quote-form-intro {
    padding: 24px 20px 20px;
  }
  .quote-form-section {
    padding: 19px 20px;
  }
  .quote-identity,
  .quote-event,
  .quote-selects {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quote-identity label:first-child {
    grid-column: auto;
  }
  .captcha-box {
    grid-template-columns: 1fr 92px 44px;
  }
  .quote-submit {
    width: calc(100% - 40px);
    margin: 0 20px 24px;
  }
  .question-panel {
    z-index: 1200;
    contain: layout paint;
  }
  .chat-open {
    overflow: hidden;
  }
}
@media (max-width: 420px) {
  .captcha-box {
    grid-template-columns: 1fr 44px;
  }
  .captcha-box > div {
    grid-column: 1/-1;
  }
  .captcha-box label {
    margin: 0;
  }
  .quote-form-intro h2 {
    font-size: 32px;
  }
}

/* Search-focused introduction and internal links. */
.seo-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seo-intro h2 {
  max-width: 760px;
}
.seo-intro > div {
  align-self: end;
}
.seo-intro nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 8px;
}
.seo-intro nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}
@media (max-width: 760px) {
  .seo-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .seo-intro nav {
    grid-column: auto;
  }
}
