:root {
  --ink: #251821;
  --muted: #6f6069;
  --plum: #5b2445;
  --plum-dark: #371326;
  --berry: #8e4268;
  --peach: #e28670;
  --gold: #c9964f;
  --ivory: #f8f3ee;
  --paper: #fffdfb;
  --white: #ffffff;
  --line: rgba(55, 19, 38, 0.14);
  --line-strong: rgba(55, 19, 38, 0.24);
  --success: #286858;
  --error: #a33a3a;
  --shadow-sm: 0 10px 30px rgba(55, 19, 38, 0.08);
  --shadow-lg: 0 28px 75px rgba(55, 19, 38, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--plum-dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(790px, calc(100% - 40px));
  margin-inline: auto;
}

.announcement {
  color: rgba(255, 255, 255, 0.9);
  background: var(--plum-dark);
  font-size: 0.86rem;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(55, 19, 38, 0.08);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50% 50% 50% 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--berry), var(--plum-dark));
  box-shadow: 0 9px 20px rgba(91, 36, 69, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  font-weight: 700;
}

.brand-note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: #46383f;
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--peach);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--plum-dark);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 12px 24px rgba(91, 36, 69, 0.18);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--plum-dark);
  box-shadow: 0 15px 30px rgba(55, 19, 38, 0.23);
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(226, 134, 112, 0.42);
  outline-offset: 3px;
}

.button-light {
  color: var(--plum-dark);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
  background: var(--plum-dark);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  color: var(--plum);
  border-bottom: 1px solid rgba(91, 36, 69, 0.3);
  font-weight: 700;
}

.text-link:hover {
  border-color: var(--plum);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--peach);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 20%, rgba(226, 134, 112, 0.14), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, #f9f2ed 100%);
}

.hero::after {
  position: absolute;
  top: 8%;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(142, 66, 104, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
  min-height: 690px;
  padding-block: 68px 78px;
}

.hero h1,
.page-hero h1,
.legal-hero h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--plum);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #5c4c55;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 190px 28px 28px 28px;
  background: #eadbd2;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
}

.hero-location-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: min(270px, 72%);
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-location-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.hero-location-card span {
  color: var(--muted);
  font-size: 0.87rem;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 28px 30px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(76px, 10vw, 126px);
}

.section-soft {
  background: var(--ivory);
}

.section-dark {
  color: var(--white);
  background: var(--plum-dark);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.section-heading-copy {
  max-width: 730px;
}

.section-heading h2,
.booking-copy h2,
.split-copy h2,
.role-card h2,
.modal-card h2 {
  margin-bottom: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading p,
.booking-copy > p,
.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .eyebrow {
  color: #f0b8ca;
}

.section-dark .section-heading p,
.section-dark .split-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 0 rgba(55, 19, 38, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(142, 66, 104, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-icon,
.mini-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 34px;
  border-radius: 15px;
  color: var(--plum);
  background: #f5e8e5;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 600;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px 120px 28px 28px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-media::before {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: -1;
  width: 42%;
  height: 42%;
  border-radius: 30px 100px 30px 30px;
  background: var(--peach);
  content: "";
  opacity: 0.36;
}

.feature-list {
  display: grid;
  gap: 19px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
}

.feature-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--plum);
  background: #f1dcdf;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 245px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 45px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #f6c6b8;
  content: counter(steps, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.step-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.occasion-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.occasion-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.occasion-card p {
  color: var(--muted);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.standard-card {
  padding: 28px;
  border-top: 2px solid rgba(226, 134, 112, 0.62);
  background: rgba(255, 255, 255, 0.05);
}

.standard-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  font-weight: 500;
}

.standard-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.area-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
}

.area-intro,
.area-list {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.area-intro {
  color: var(--white);
  background: linear-gradient(145deg, var(--berry), var(--plum-dark));
}

.area-intro h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.area-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.area-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum-dark);
  background: var(--ivory);
  font-size: 0.9rem;
  font-weight: 700;
}

.area-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--plum);
  background: var(--ivory);
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 58px 24px 24px;
  color: var(--muted);
}

.booking-section {
  padding-block: clamp(60px, 9vw, 105px);
  background: linear-gradient(135deg, #f4e5df, #fbf7f2 52%, #eee1d6);
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(38px, 7vw, 85px);
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.booking-points {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.booking-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #584750;
  font-size: 0.94rem;
}

.booking-points li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

.site-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #47343e;
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(91, 36, 69, 0.45);
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--plum);
}

.checkbox-field a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  padding: 13px 15px;
  border-radius: 12px;
  color: #66545d;
  background: rgba(91, 36, 69, 0.06);
  font-size: 0.8rem;
}

.form-status {
  padding: 15px 17px;
  border: 1px solid rgba(40, 104, 88, 0.2);
  border-radius: 12px;
  color: #1d574a;
  background: #eaf6f1;
  font-size: 0.88rem;
}

.form-status[hidden] {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #21131c;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr;
  gap: 58px;
  padding-block: 60px 44px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-note {
  color: rgba(255, 255, 255, 0.5);
}

.footer-description {
  max-width: 410px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a,
.legal-content a {
  overflow-wrap: anywhere;
}

.requisites {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.page-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 124px);
  background:
    radial-gradient(circle at 88% 10%, rgba(226, 134, 112, 0.16), transparent 30%),
    var(--ivory);
}

.page-hero h1,
.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p,
.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--plum);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.role-card:nth-child(2) {
  color: var(--white);
  background: var(--plum-dark);
}

.role-card:nth-child(2) .role-summary,
.role-card:nth-child(2) .role-list,
.role-card:nth-child(2) .role-meta {
  color: rgba(255, 255, 255, 0.72);
}

.role-card:nth-child(2) .role-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.role-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.role-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--plum);
  background: #f5e6e3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-card:nth-child(2) .role-kicker {
  color: #ffd7cb;
  background: rgba(255, 255, 255, 0.1);
}

.role-summary {
  margin-bottom: 25px;
  color: var(--muted);
}

.role-list {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  color: #55454e;
  list-style: none;
}

.role-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.role-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--peach);
  content: "•";
  font-size: 1.3rem;
  line-height: 1;
}

.role-meta {
  margin-top: auto;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.role-card:nth-child(2) .button {
  color: var(--plum-dark);
  background: var(--white);
}

.role-card:nth-child(2) .button:hover {
  background: #f8e9e3;
}

.candidate-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 32px;
  padding: 25px;
  border-radius: 18px;
  color: #5d4a54;
  background: var(--ivory);
}

.candidate-note strong {
  color: var(--plum-dark);
}

dialog.modal {
  width: min(720px, calc(100% - 30px));
  max-height: calc(100vh - 34px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overscroll-behavior: contain;
}

dialog.modal::backdrop {
  background: rgba(31, 15, 25, 0.68);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.modal-card h2 {
  margin-right: 45px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.modal-intro {
  margin-bottom: 28px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum-dark);
  background: var(--ivory);
  cursor: pointer;
}

.legal-content {
  padding-block: 72px 110px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #554851;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.legal-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.8rem;
}

.legal-callout {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--peach);
  border-radius: 0 14px 14px 0;
  color: #5b4852;
  background: var(--ivory);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 60px 20px;
  text-align: center;
  background: var(--ivory);
}

.not-found-code {
  margin-bottom: 12px;
  color: var(--peach);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.85;
}

.not-found h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.not-found p {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .services-grid,
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(var(--container), calc(100% - 28px));
  }

  .announcement .container {
    min-height: 42px;
    line-height: 1.35;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-note {
    display: none;
  }

  .hero-grid {
    padding-block: 52px 64px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 430px;
    height: 430px;
  }

  .hero-image-frame {
    border-radius: 110px 22px 22px 22px;
  }

  .split-media::before {
    right: 0;
  }

  .hero-location-card {
    right: 12px;
    bottom: 12px;
  }

  .trust-grid,
  .services-grid,
  .steps-grid,
  .occasions-grid,
  .standards-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 20px;
  }

  .service-card {
    min-height: 245px;
  }

  .step-card {
    min-height: 220px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .booking-panel {
    border-radius: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .candidate-note {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 370px;
    height: 370px;
  }

  .modal-card {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
