@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/dm-sans-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/playfair-display-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/playfair-display-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/playfair-display-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/playfair-display-latin-500-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/playfair-display-latin-600-italic.woff2") format("woff2");
}

:root {
  --ink: #15241f;
  --forest: #193c32;
  --deep-forest: #102b24;
  --sage: #dce3d9;
  --paper: #f7f5ef;
  --warm-white: #fcfbf8;
  --gold: #b89662;
  --line: rgba(21, 36, 31, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

img,
video,
iframe {
  max-width: 100%;
}

main,
section {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  left: 12px;
  top: -50px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--deep-forest);
  color: #d4ddd7;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.topbar a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.topbar a span {
  padding-left: 7px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  overflow-x: clip;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(21, 36, 31, 0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 93px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-name {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand-name small {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.navigation > a:not(.nav-cta) {
  position: relative;
}

.navigation > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 0.2s;
}

.navigation > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 17px;
  background: var(--forest);
  color: #fff;
}

.nav-cta span {
  padding-left: 5px;
  color: var(--gold);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 85px;
  background: var(--warm-white);
}

.hero::after {
  position: absolute;
  top: -20vw;
  right: -18vw;
  z-index: 0;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(184, 150, 98, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 78px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 17px;
  color: #997442;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
}

h1 {
  max-width: 600px;
  margin-bottom: 25px;
  color: var(--forest);
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -0.055em;
}

h1 em {
  color: #947044;
  font-weight: 500;
}

.hero-intro {
  max-width: 536px;
  margin-bottom: 34px;
  color: #46534d;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 21px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: #fff;
}

.button-primary span {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.button-text {
  padding-left: 0;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}

.button-text span {
  font-size: 16px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 496px;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 464px;
  overflow: hidden;
  background: #1a2e28;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide--face {
  background-position: center 12%;
}

.hero-slideshow::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(10, 31, 24, 0.28), transparent 55%);
  content: "";
  pointer-events: none;
}

.hero-slideshow::before {
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 25px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(18, 39, 32, 0.12);
}

.hero-card p {
  margin: 0;
  color: #506058;
  font-size: 13px;
  line-height: 1.4;
}

.hero-card strong {
  color: var(--forest);
  font-size: 15px;
}

.card-icon {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.hero-dots {
  position: absolute;
  right: calc(12% + 18px);
  bottom: 52px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.hero-caption {
  position: absolute;
  top: 50%;
  right: -19px;
  z-index: 4;
  margin: 0;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.trust-strip {
  background: var(--forest);
  color: #fff;
}

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

.trust-grid p {
  min-height: 105px;
  margin: 0;
  padding: 27px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid p:first-child {
  padding-left: 0;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.trust-grid span {
  display: block;
  color: #b7c7bd;
  font-size: 12px;
}

.section {
  padding: 120px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 10%;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(38px, 4.1vw, 58px);
  letter-spacing: -0.045em;
}

.intro-content {
  max-width: 510px;
  padding-top: 5px;
  color: #506058;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.12fr;
  gap: 8%;
  align-items: start;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-photo figcaption {
  margin-top: 12px;
  color: #6a756e;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content {
  color: #506058;
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content p {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.large-copy {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.38;
}

.arrow-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--forest);
}

.arrow-link span {
  padding-left: 18px;
  color: #a47d48;
}

.services-section {
  background: var(--sage);
}

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

.section-heading > p {
  max-width: 385px;
  margin: 0 0 5px;
  color: #53645b;
  font-size: 15px;
}

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

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

.service-card {
  position: relative;
  display: flex;
  min-height: 326px;
  padding: 27px;
  flex-direction: column;
  border: 1px solid rgba(21, 36, 31, 0.2);
  border-right: 0;
  transition: background 0.25s, transform 0.25s;
}

.service-card:last-child {
  border-right: 1px solid rgba(21, 36, 31, 0.2);
}

.service-card:hover {
  z-index: 1;
  background: var(--forest);
  color: #fff;
  transform: translateY(-7px);
  box-shadow: 0 12px 20px rgba(22, 51, 42, 0.15);
}

.service-number {
  color: #9a7746;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 32px 0 13px;
  color: var(--forest);
  font-size: 28px;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card p {
  color: #516159;
  font-size: 13px;
  line-height: 1.55;
}

.service-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
}

.service-link b {
  margin-left: 13px;
  color: #9a7746;
  font-size: 17px;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
}

.quote-image {
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(12, 38, 30, 0.22), rgba(12, 38, 30, 0.04)),
    url("images/web/beratung-tisch.jpg") center/cover;
}

.office-section {
  background: var(--warm-white);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 8%;
  align-items: center;
}

.office-copy {
  color: #506058;
}

.office-copy .large-copy {
  margin: 22px 0 18px;
}

.office-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.office-meta p {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.office-meta span {
  display: block;
  margin-bottom: 3px;
  color: #8a704c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.office-meta a {
  color: inherit;
}

.office-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: end;
}

.office-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.office-gallery img:first-child {
  aspect-ratio: 3 / 4;
}

.office-gallery img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 42px;
}

.office-map-section {
  padding: 80px 0 110px;
  background: var(--warm-white);
}

.office-map-section .office-map {
  margin-top: 0;
}

.maps-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 32px 24px;
  background: #e8e6df;
  border: 1px solid rgba(21, 36, 31, 0.08);
}

.maps-consent-inner {
  max-width: 560px;
  text-align: center;
}

.maps-consent-inner h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.maps-consent-inner p {
  margin: 0 0 12px;
  color: #4a5751;
  font-size: 14px;
  line-height: 1.6;
}

.maps-consent-button {
  margin-top: 8px;
}

.maps-consent-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--forest);
  font-size: 13px;
  text-decoration: underline;
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  background: #e8e6df;
}

.office-map iframe[hidden] {
  display: none;
}

.maps-consent.is-hidden {
  display: none;
}

.quote-panel {
  display: flex;
  padding: 78px clamp(45px, 8vw, 135px);
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.quote-symbol {
  height: 60px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 75px;
  line-height: 1;
}

blockquote {
  max-width: 520px;
  margin: 8px 0 29px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.quote-panel p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.quote-panel p span {
  color: #afc1b6;
  font-weight: 400;
}


.inquiry-section {
  position: relative;
  padding: 120px 0;
  background: var(--deep-forest);
}

.anchor-target {
  position: absolute;
  top: -80px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 11%;
  align-items: start;
}

.inquiry-copy {
  color: #c8d3cc;
}

.inquiry-copy h2 {
  color: #fff;
}

.inquiry-intro p {
  max-width: 420px;
  margin: 29px 0 0;
  font-size: 17px;
  line-height: 1.65;
}

.inquiry-copy .contact-details {
  margin-top: 42px;
}

.inquiry-copy .contact-details a,
.inquiry-copy .contact-details p {
  color: #fff;
}

.inquiry-copy .contact-details span {
  color: var(--gold);
}

.inquiry-panel {
  min-width: 0;
}

.inquiry-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.inquiry-tab {
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #b8c8bf;
  font: 600 13px var(--sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.inquiry-tab:hover {
  color: #fff;
}

.inquiry-tab.is-active {
  background: var(--warm-white);
  color: var(--forest);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.inquiry-form-card {
  background: var(--warm-white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.inquiry-form-panel {
  display: none;
}

.inquiry-form-panel.is-active {
  display: block;
}

.inquiry-form-panel .contact-form,
.inquiry-form-panel .booking-form {
  padding: 34px 35px;
  background: transparent;
  box-shadow: none;
}

.inquiry-inline-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--forest);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.inquiry-form-panel .booking-empty {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--paper);
  color: #58645f;
  font-size: 14px;
  line-height: 1.55;
}

.button-outline {
  color: var(--forest);
  border: 1px solid var(--forest);
}

.booking-benefits {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-benefits p {
  margin: 8px 0;
  font-size: 13px;
}

.booking-benefits span {
  margin-right: 9px;
  color: var(--gold);
  font-weight: 700;
}

.booking-disclaimer {
  max-width: 405px;
  margin-top: 25px;
  color: #9caf9f;
  font-size: 11px;
  line-height: 1.55;
}

.booking-form {
  position: relative;
}

.booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.booking-label {
  display: block;
  color: #977442;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-header h3 {
  margin: 3px 0 0;
  color: var(--forest);
  font-size: 26px;
}

.duration {
  padding: 5px 8px;
  background: var(--sage);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.date-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 26px;
}

.date-choice {
  padding: 10px 4px;
  border: 1px solid #d4d9d2;
  background: transparent;
  color: var(--forest);
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.date-choice:hover,
.date-choice.is-selected {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.date-choice strong,
.date-choice span,
.date-choice small {
  display: block;
  line-height: 1.15;
}

.date-choice strong {
  font-size: 10px;
  font-weight: 600;
}

.date-choice span {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 23px;
}

.date-choice small {
  font-size: 9px;
}

.time-options {
  margin: 0 0 23px;
  padding: 0;
  border: 0;
}

.time-options legend {
  margin-bottom: 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.time-options legend span {
  font-weight: 500;
}

.time-options > div,
#time-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.booking-empty {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--paper);
  color: #58645f;
  font-size: 14px;
  line-height: 1.55;
}

.time-choice {
  margin: 0;
  cursor: pointer;
}

.time-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-choice span {
  display: block;
  padding: 10px 4px;
  border: 1px solid #d4d9d2;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.time-choice input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.time-choice input:focus-visible + span,
.date-choice:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

select {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 6px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 36, 31, 0.3);
  outline: none;
  background: transparent;
  color: var(--ink);
  font: 14px var(--sans);
}

select:focus {
  border-color: var(--gold);
}

.booking-personal-data {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.booking-personal-data > .booking-label {
  margin-bottom: 15px;
}

.contact-form {
  position: relative;
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-details span {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-plaque {
  max-width: 280px;
  margin: 28px 0 0;
}

.contact-plaque img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

label {
  display: block;
  margin-bottom: 19px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

input:not([type="checkbox"]),
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 6px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 36, 31, 0.3);
  outline: none;
  background: transparent;
  color: var(--ink);
  font: 14px var(--sans);
  transition: border-color 0.2s;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

.optional {
  color: #89928c;
  font-weight: 400;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #59645e;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-label input {
  margin-top: 3px;
  accent-color: var(--forest);
}

.checkbox-label a {
  text-decoration: underline;
}

.form-privacy-hint,
.form-liability-hint {
  color: #59645e;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.form-privacy-hint {
  margin-top: 4px;
}

.form-privacy-hint a {
  text-decoration: underline;
}

.form-liability-hint {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 36, 31, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 13px;
}

.site-footer {
  background: var(--deep-forest);
  color: #dce5de;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 53px 0;
}

.brand-footer .brand-name {
  color: #fff;
}

.brand-footer .brand-mark {
  color: #fff;
}

.footer-main > p {
  max-width: 280px;
  margin: 0;
  color: #aebeb5;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #98aaa0;
  font-size: 11px;
}

.hp-field {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.legal-page {
  padding: 80px 0 100px;
  background: var(--warm-white);
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: #506058;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--forest);
  text-decoration: underline;
}

.legal-note {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: #58645f !important;
  font-size: 14px !important;
}

.navigation-legal {
  gap: 20px;
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, 620px);
  }

  .topbar {
    overflow-x: clip;
  }

  .topbar-inner {
    justify-content: center;
    min-height: 42px;
    padding: 6px 0;
    text-align: center;
  }

  .topbar-inner > span {
    display: none;
  }

  .topbar a {
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .nav {
    height: 73px;
  }

  .menu-button {
    z-index: 3;
    display: flex;
    width: 35px;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--forest);
  }

  .navigation {
    position: absolute;
    top: 73px;
    left: 0;
    display: none;
    width: 100%;
    padding: 25px 20px 28px;
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    box-shadow: 0 9px 14px rgba(0, 0, 0, 0.05);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a {
    text-align: center;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    padding: 66px 0 56px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid,
  .two-column,
  .inquiry-grid,
  .about-grid,
  .office-grid,
  .trust-grid,
  .services-grid,
  .quote-section,
  .footer-main {
    min-width: 0;
  }

  .hero-grid,
  .two-column,
  .inquiry-grid,
  .about-grid,
  .office-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-slideshow {
    width: 92%;
    height: 370px;
  }

  .hero-dots {
    right: calc(8% + 14px);
    bottom: 48px;
  }

  .hero-caption {
    display: none;
  }

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

  .trust-grid p,
  .trust-grid p:first-child {
    min-height: auto;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-grid p:last-child {
    border: 0;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .services-grid,
  .services-grid-three {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 240px;
    border-right: 1px solid rgba(21, 36, 31, 0.2);
    border-bottom: 0;
  }

  .service-card:last-child {
    border-bottom: 1px solid rgba(21, 36, 31, 0.2);
  }

  .about-photo {
    max-width: 420px;
  }

  .office-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .office-gallery img:last-child {
    margin-bottom: 0;
  }

  .office-map {
    margin-top: 40px;
  }

  .maps-consent,
  .office-map iframe {
    min-height: 280px;
    height: 280px;
  }

  .contact-plaque {
    max-width: 220px;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-image {
    min-height: 300px;
  }

  .quote-panel {
    min-height: 400px;
    padding: 65px 30px;
  }

  .inquiry-section {
    padding: 75px 0;
  }

  .inquiry-tab {
    padding: 12px 10px;
    font-size: 12px;
  }

  .inquiry-form-panel .contact-form,
  .inquiry-form-panel .booking-form {
    padding: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 49px);
    overflow-wrap: anywhere;
  }

  h2 {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-slideshow {
    height: 330px;
  }

  .hero-card {
    padding: 14px;
  }

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

  .container {
    width: min(100% - 28px, 620px);
  }

  .booking-form {
    padding: 23px 16px;
  }

  .booking-header {
    flex-wrap: wrap;
  }

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

  .time-options > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .button {
    max-width: 100%;
  }

  .form-submit {
    white-space: normal;
    text-align: left;
    line-height: 1.4;
  }

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