/* Atlas Estates Munich — Premium Real Estate Design */

:root {
  --bg: #f2ede3;
  --surface: #ffffff;
  --surface-muted: #f7f3ec;
  --text: #1d1a16;
  --text-soft: #5f564c;
  --line: #ded7ca;
  --gold: #a88d5d;
  --dark: #111111;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgba(28, 22, 14, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: min(1240px, calc(100% - 40px));
  --header-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.site-realestate,
body.page-legal {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(110% 60% at 0% -10%, rgba(177, 152, 112, 0.12), transparent 62%),
    radial-gradient(95% 70% at 100% 2%, rgba(141, 119, 86, 0.08), transparent 64%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 150;
  transform-origin: left center;
  transform: scaleX(var(--doc-scroll));
  background: linear-gradient(90deg, #d6c29a, #a88d5d);
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(244, 241, 234, 0.72);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 240, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 25px rgba(21, 17, 11, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #ccb786;
  background: linear-gradient(145deg, #fdfcf9, #efe8da);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(168, 141, 93, 0.18);
}

.brand__mark-inner {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #705c35;
}

.brand__text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__accent {
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  z-index: 120;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: #29241d;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav a {
  font-size: 0.83rem;
  font-weight: 600;
  color: #5f5549;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #231f18;
  background: #ece5d8;
}

.nav__cta {
  margin-left: 4px;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: var(--dark) !important;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav__cta:hover {
  background: #000 !important;
  color: #fff !important;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
  }
}

@media (max-width: 1023px) {
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 100px 24px 32px;
    background: rgba(250, 247, 240, 0.97);
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.3s ease;
    z-index: 90;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.15rem;
    padding: 14px 16px;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }
}

.hero {
  padding: calc(var(--header-h) + 52px) 0 68px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 40% at 12% 15%, rgba(176, 148, 106, 0.18), transparent 72%),
    radial-gradient(60% 45% at 88% 12%, rgba(120, 101, 72, 0.14), transparent 76%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbcfba;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #6d5938;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #876f45;
  margin: 0 0 14px;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.3vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}

.hero__lead {
  margin: 20px 0 0;
  max-width: 37rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid #d9d0c2;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-1.6deg);
  transform-origin: right center;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 13, 8, 0.04) 22%, rgba(17, 13, 8, 0.44) 100%);
  pointer-events: none;
}

.hero__visual .img-cover {
  height: 100%;
}

.hero__card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 16px 18px;
  color: #fff;
}

.hero__card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
}

.hero__card-title {
  margin: 6px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.hero__card-meta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.btn--primary {
  color: #f8f6f2;
  background: linear-gradient(132deg, #1e1a15, #12100d);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(132deg, #2a241d, #15120f);
  transform: translateY(-2px);
}

.btn--secondary {
  color: #2d251c;
  background: #f2ebdf;
  border-color: #d8ccb5;
}

.btn--secondary:hover {
  border-color: #b8a27a;
  color: #1d1811;
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.section {
  padding: 90px 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.prestige-band {
  padding: 0 0 32px;
}

.prestige-band__inner {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid #d8ccb9;
  background: linear-gradient(145deg, #f8f4ed, #eee5d6);
  box-shadow: 0 16px 28px rgba(34, 27, 18, 0.08);
}

.prestige-band__inner article {
  border-radius: 16px;
  border: 1px solid rgba(122, 101, 68, 0.2);
  background: rgba(255, 255, 255, 0.75);
  padding: 14px 16px;
}

.prestige-band__inner p {
  margin: 0;
  color: #6b5d49;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prestige-band__inner strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  color: #1f1913;
}

@media (min-width: 900px) {
  .prestige-band__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
  }
}

.section--light {
  background: var(--surface-muted);
}

.section-head {
  max-width: 42rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-head--inline {
  margin-bottom: 32px;
}

.listing-grid {
  margin-top: 30px;
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.listing-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(40, 30, 19, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(29, 22, 14, 0.14);
  border-color: #ccb68f;
}

.listing-card img {
  height: 270px;
}

.listing-card__body {
  padding: 20px;
}

.listing-card__place {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b7a5f;
}

.listing-card h3 {
  margin: 6px 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.listing-card p {
  margin: 0;
  color: #5d554a;
}

.section--dark {
  background:
    radial-gradient(85% 75% at 0% 0%, rgba(173, 142, 95, 0.18), transparent 65%),
    #171513;
  color: #f2ede5;
}

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

.section--dark h2 {
  color: #fff;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-card {
  border: 1px solid #302c27;
  border-radius: var(--radius);
  background: #211d19;
  padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: #6f5b38;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.trust-card span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: #f0d9ab;
}

.trust-card p {
  margin: 4px 0 0;
  color: #d6ccc0;
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-grid {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #cab690;
  box-shadow: 0 18px 30px rgba(37, 28, 16, 0.09);
}

.service-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.service-card p {
  margin: 10px 0 0;
  color: #61584d;
}

.section--split {
  background: #ece6db;
}

.split-grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 960px) {
  .split-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.split-image {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d7cebf;
  box-shadow: var(--shadow);
}

.split-image img {
  height: 100%;
  min-height: 420px;
}

.split-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.split-copy p {
  margin: 16px 0 0;
  color: #5e554a;
  max-width: 38rem;
}

.testimonial-grid {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 28px rgba(29, 22, 13, 0.06);
}

.testimonial p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.9rem;
  color: #766c61;
}

.section--contact {
  background: #f7f3eb;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy p {
  margin: 14px 0 0;
  color: #655c51;
}

.contact-copy ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.contact-copy li {
  margin-top: 10px;
  color: #453f36;
}

.rating-card {
  border-radius: 24px;
  border: 1px solid #ddd4c6;
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(28, 22, 14, 0.1);
  position: relative;
  overflow: hidden;
}

.rating-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #d7c49f, #af8e5b, #d7c49f);
  opacity: 0.75;
}

.kontakt-form__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  margin: 0 0 10px;
  color: #1f1a15;
}

.rating-row {
  margin-top: 14px;
}

.rating-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #4f4538;
  margin-bottom: 9px;
}

.form-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.form-topline__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8d7346;
}

.form-topline__eta {
  margin: 0;
  font-size: 0.82rem;
  color: #766b5c;
}

.form-steps {
  margin: 14px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-steps span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d8ccb9;
  background: #f8f3ea;
  color: #745f3a;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 12px;
}

.form-block {
  margin-top: 18px;
  border-top: 1px solid #e9e0d2;
  padding-top: 16px;
}

.form-block__title {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f6842;
}

.rating-row input,
.rating-row select,
.rating-row textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d9d0c2;
  background: #fff;
  color: #201a14;
  padding: 16px 18px;
  font: inherit;
  font-size: 1.06rem;
  letter-spacing: 0;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.rating-row input:focus,
.rating-row select:focus,
.rating-row textarea:focus {
  border-color: #ad8d5d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(173, 141, 93, 0.18), 0 10px 20px rgba(38, 30, 20, 0.1);
  transform: translateY(-1px);
}

.rating-row input.is-error,
.rating-row textarea.is-error,
.rating-row select.is-error,
.privacy-label input.is-error {
  border-color: #c45c4a;
}

.rating-row textarea {
  resize: vertical;
  min-height: 210px;
  line-height: 1.72;
}

.rating-row input::placeholder,
.rating-row textarea::placeholder {
  color: #9c907e;
}

.rating-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23715d3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: calc(100% - 14px) 50%;
  background-size: 14px 14px;
  padding-right: 44px;
}

.privacy-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5f5548;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.privacy-label input {
  width: auto;
  margin-top: 3px;
  accent-color: #8f6f40;
}

.privacy-label a {
  color: #6f5935;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-error {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: #b24a3a;
}

.privacy-hint {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.rating-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(196, 92, 74, 0.28);
  background: rgba(196, 92, 74, 0.09);
  color: #8a3d32;
  font-size: 0.88rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer {
  background: #151311;
  color: #e7e0d4;
  padding: 38px 0;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  font-size: 0.86rem;
}

.footer a {
  color: #e6d8bd;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Toast */
.toast {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 16, 11, 0.45);
  backdrop-filter: blur(8px);
}

.toast[hidden] {
  display: none;
}

.toast-card {
  width: min(400px, 100%);
  border-radius: var(--radius-sm);
  border: 1px solid #ddd2bf;
  padding: 24px 22px 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toast-card h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  color: #2d251b;
}

.toast-card p {
  margin: 10px 0 0;
  color: #5e5549;
  line-height: 1.5;
  font-size: 0.95rem;
}

.toast-btn {
  margin-top: 16px;
}

/* Scroll reveal */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.motion-reduced .js-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.page-legal #main-content {
  padding-top: calc(var(--header-h) + 24px);
}

.page-legal .legal-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8f4ec);
  overflow: hidden;
}

.page-legal .legal-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 20% 0%, rgba(168, 141, 93, 0.16), transparent 50%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(100, 88, 67, 0.1), transparent 55%);
  pointer-events: none;
}

.page-legal .legal-hero__inner {
  position: relative;
}

.page-legal .legal-hero__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8d7751;
}

.page-legal .legal-hero__title {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #1f1a14;
  letter-spacing: -0.02em;
}

.page-legal .legal-hero__lead {
  margin: 12px 0 0;
  color: #62584e;
  max-width: 32rem;
}

.page-legal .legal-body.legal-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
  color: #473f35;
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-legal .legal-prose h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #1f1a14;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd3c2;
}

.page-legal .legal-prose h2:first-of-type {
  margin-top: 0;
}

.page-legal .legal-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2a241d;
  margin: 1.5rem 0 0.5rem;
}

.page-legal .legal-prose p {
  margin: 0.75rem 0 0;
}

.page-legal .legal-prose ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.page-legal .legal-prose ul li {
  margin: 0.35rem 0;
  padding-left: 0.2rem;
}

.page-legal .legal-prose a {
  color: #7a6540;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .hero__visual {
    min-height: 420px;
    transform: none;
  }
}

.inner-page {
  padding-top: calc(var(--header-h) + 12px);
}

.inner-hero {
  padding: 44px 0 28px;
}

.section-link {
  margin: 26px 0 0;
}

.section-link a {
  color: #6f5b38;
  text-underline-offset: 4px;
}

.section-link a:hover {
  color: #2a2217;
}

.contact-teaser {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 238, 0.97));
  padding: clamp(26px, 4vw, 44px);
  text-align: left;
  box-shadow: 0 20px 38px rgba(31, 24, 16, 0.08);
}

.contact-teaser h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.contact-teaser p {
  margin: 12px 0 0;
  color: #665c50;
}

.contact-panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fdfbf7;
  padding: 28px;
}

.contact-panel h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.contact-panel ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.contact-panel li {
  margin-top: 10px;
  color: #564d42;
}

.contact-panel a {
  color: #2c251c;
}

.trust-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #ded4c6;
  color: #7a6f62;
  font-size: 0.9rem;
}

.form-intro {
  margin: 0 0 14px;
  color: #62584c;
  font-size: 1rem;
  line-height: 1.7;
}

.form-grid-2 {
  display: grid;
  gap: 12px;
}

@media (min-width: 760px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-mini-stats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ddd2bf;
}

.contact-mini-stats p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #665c50;
}

.form-assurance {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: #706556;
}

.rating-card .btn--primary {
  margin-top: 8px;
  padding: 18px 24px;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(130deg, #cfb585 0%, #b39055 55%, #9b7842 100%);
  color: #18130d;
  border: 1px solid rgba(60, 47, 29, 0.22);
  box-shadow: 0 12px 24px rgba(57, 42, 21, 0.2);
}

.rating-card .btn--primary:hover {
  background: linear-gradient(130deg, #e0c896 0%, #c7a46a 55%, #af8b54 100%);
  color: #120f0c;
}

@media (max-width: 760px) {
  .rating-card {
    padding: 22px 18px 24px;
  }

  .rating-row input,
  .rating-row select,
  .rating-row textarea {
    font-size: 1rem;
    padding: 15px 14px;
  }
}

.process-strip {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: clamp(26px, 4vw, 40px);
}

.process-strip h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.process-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-grid article {
  border-radius: 16px;
  border: 1px solid #e0d7c8;
  background: #fbf8f2;
  padding: 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.process-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(34, 27, 18, 0.08);
}

.process-grid span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8e7448;
}

.process-grid h3 {
  margin: 8px 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.process-grid p {
  margin: 0;
  color: #635a4f;
  font-size: 0.95rem;
}

.editorial-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 960px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.editorial-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(24px, 3vw, 34px);
}

.editorial-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.editorial-card p {
  color: #61584d;
}

/* Contact page redesign */
.contact-premium-page {
  background:
    radial-gradient(75% 45% at 10% -10%, rgba(180, 156, 115, 0.12), transparent 70%),
    radial-gradient(90% 55% at 100% 0%, rgba(146, 122, 86, 0.08), transparent 72%),
    #f3eee4;
}

.contact-hero {
  padding: 52px 0 24px;
}

.contact-hero__grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 980px) {
  .contact-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.contact-hero__content,
.contact-hero__panel {
  border-radius: 22px;
  border: 1px solid #d9cfbd;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  padding: clamp(20px, 3vw, 30px);
}

.contact-hero__quick {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.contact-hero__quick p {
  margin: 0;
  font-size: 0.95rem;
  color: #5f5548;
}

.contact-hero__panel h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
}

.contact-hero__panel ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-hero__panel li {
  color: #40382f;
  font-size: 0.98rem;
}

.contact-hero__panel li span {
  display: block;
  margin-bottom: 2px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7d6a49;
}

.contact-hero__panel a {
  color: #2d261e;
  text-decoration: none;
}

.contact-hero__panel a:hover {
  text-decoration: underline;
}

.contact-form-section {
  padding-top: 16px;
}

.consultation-form-shell {
  border-radius: 26px;
  border: 1px solid #d7cebe;
  background: #fff;
  box-shadow: 0 24px 52px rgba(34, 26, 16, 0.12);
  padding: clamp(24px, 4vw, 42px);
}

.consultation-form-shell__head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.consultation-form-shell__head p {
  margin: 10px 0 0;
  color: #685f53;
}

.consultation-form-shell__kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: #8a7248;
}

.consultation-grid {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .consultation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.consultation-form-shell .rating-row {
  margin-top: 0;
}

.consultation-form-shell .rating-row label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #51473a;
}

.consultation-form-shell .rating-row input,
.consultation-form-shell .rating-row select,
.consultation-form-shell .rating-row textarea {
  width: 100%;
  border: 1px solid #d8d0c2;
  border-radius: 14px;
  background: #fcfaf6;
  color: #1f1a14;
  font-size: 1.03rem;
  padding: 17px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.consultation-form-shell .rating-row textarea {
  min-height: 210px;
  line-height: 1.68;
  resize: vertical;
}

.consultation-form-shell .rating-row input::placeholder,
.consultation-form-shell .rating-row textarea::placeholder {
  color: #a09380;
}

.consultation-form-shell .rating-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23705d3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 50%;
  padding-right: 42px;
}

.consultation-form-shell .rating-row input:focus,
.consultation-form-shell .rating-row select:focus,
.consultation-form-shell .rating-row textarea:focus {
  border-color: #b2935e;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(178, 147, 94, 0.18);
}

.rating-row--message {
  margin-top: 14px;
}

.consultation-form-shell__footer {
  margin-top: 14px;
  border-top: 1px solid #ece3d4;
  padding-top: 18px;
}

.consultation-form-shell .privacy-label {
  color: #5f5547;
}

.consultation-form-shell .privacy-label a {
  color: #6d5734;
}

.consultation-form-shell .btn--primary {
  margin-top: 10px;
  padding: 18px 22px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  background: linear-gradient(130deg, #cfb585 0%, #b28f55 55%, #9d7a43 100%);
  color: #17120c;
}

.consultation-form-shell .btn--primary:hover {
  background: linear-gradient(130deg, #ddc694 0%, #c09f67 55%, #aa8751 100%);
}

.consultation-form-shell .field-error {
  margin-top: 6px;
  font-size: 0.8rem;
}
