:root {
  --bg: #fbf5ee;
  --bg2: #fffaf4;
  --surface: rgba(255, 255, 255, 0.8);
  --text: #1f1a16;
  --muted: rgba(31, 26, 22, 0.7);
  --line: rgba(31, 26, 22, 0.12);
  --shadow: 0 20px 60px rgba(31, 26, 22, 0.18);

  --brand: #c47a4a;
  --brand2: #9b4f27;
  --accent: #2d7a6a;

  --radius: 18px;
  --radius2: 26px;

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: Fraunces, ui-serif, Georgia, serif;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(196, 122, 74, 0.22), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(45, 122, 106, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  line-height: 1.6;
}

[hidden] {
  display: none !important;
}

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

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

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(196, 122, 74, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip {
  position: absolute;
  left: 16px;
  top: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  transform: translateY(-200%);
  transition: transform 0.18s ease;
  z-index: 999;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(251, 245, 238, 0.88), rgba(251, 245, 238, 0.65));
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 28px rgba(155, 79, 39, 0.25);
}

.brand__text {
  display: grid;
  line-height: 1;
  gap: 2px;
}

.brand__name {
  font-family: var(--font-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.05;
}

.brand__tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: rgba(31, 26, 22, 0.6);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav__link {
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-serif);
  color: rgba(31, 26, 22, 0.82);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 30px rgba(31, 26, 22, 0.08);
}

.nav__toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(31, 26, 22, 0.86);
  border-radius: 999px;
  margin-inline: auto;
  position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(31, 26, 22, 0.86);
  border-radius: 999px;
}

.nav__toggle-icon::before {
  top: -6px;
}

.nav__toggle-icon::after {
  top: 6px;
}

.dd {
  position: relative;
}

.dd__btn {
  list-style: none;
}

.dd__btn::-webkit-details-marker {
  display: none;
}

.dd__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(280px, calc(100vw - 40px));
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 26, 22, 0.12);
  box-shadow: 0 24px 60px rgba(31, 26, 22, 0.18);
  padding: 10px;
  display: grid;
  gap: 6px;
}

.dd__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(31, 26, 22, 0.9);
  font-weight: 800;
  font-size: 14px;
}

.dd__item:hover {
  background: rgba(31, 26, 22, 0.06);
}

.dd__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(31, 26, 22, 0.8);
}

.dd__icon svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 14px 0 18px;
  background: rgba(251, 245, 238, 0.96);
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
  backdrop-filter: blur(14px);
  z-index: 60;
}

.mobile-nav__inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.mobile-nav__link {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 22, 0.08);
  font-weight: 900;
  font-family: var(--font-serif);
  color: rgba(31, 26, 22, 0.9);
}

.mobile-nav__link--cta {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.62);
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(155, 79, 39, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 22px 44px rgba(155, 79, 39, 0.26);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(31, 26, 22, 0.9);
  border: 1px solid rgba(31, 26, 22, 0.12);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(31, 26, 22, 0.12);
}

.hero {
  padding: 42px 0 22px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(
    110deg,
    rgba(255, 222, 122, 0.95),
    rgba(255, 243, 192, 0.92),
    rgba(244, 186, 64, 0.95)
  );
  background-size: 220% 220%;
  animation: pill-shimmer 4.5s ease-in-out infinite;
  border: 1px solid rgba(31, 26, 22, 0.12);
  box-shadow: 0 18px 38px rgba(31, 26, 22, 0.14);
  color: rgba(31, 26, 22, 0.92);
  font-weight: 700;
  font-size: 14px;
}

@keyframes pill-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(45, 122, 106, 1), rgba(29, 88, 77, 1));
  box-shadow: 0 8px 18px rgba(45, 122, 106, 0.24);
}

.h1 {
  margin: 16px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}

.lead {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(31, 26, 22, 0.78);
  max-width: 58ch;
}

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

.meta {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.meta__item {
  border-radius: var(--radius);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(31, 26, 22, 0.08);
}

.meta__label {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.meta__value {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
}

.trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust__item {
  border-radius: var(--radius);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(31, 26, 22, 0.08);
}

.trust__k {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.trust__v {
  display: block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1px;
}

.hero__media {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
}

.card {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.card--media {
  padding: 18px;
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 65% 20%, rgba(196, 122, 74, 0.16), transparent 55%),
    radial-gradient(420px 300px at 30% 80%, rgba(45, 122, 106, 0.1), transparent 60%);
  pointer-events: none;
}

.logo {
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 22, 0.08);
}

.hero__note {
  border-radius: var(--radius2);
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(45, 122, 106, 0.14), rgba(196, 122, 74, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 60px rgba(31, 26, 22, 0.12);
}

.hero__note-title {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.hero__note-text {
  color: rgba(31, 26, 22, 0.78);
  margin-top: 2px;
  font-size: 14px;
}

.section {
  padding: 62px 0;
}

.section--soft {
  background: radial-gradient(1200px 520px at 10% 20%, rgba(196, 122, 74, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(31, 26, 22, 0.06);
  border-bottom: 1px solid rgba(31, 26, 22, 0.06);
}

.section__head {
  max-width: 74ch;
}

.h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.sub {
  margin: 10px 0 0;
  color: rgba(31, 26, 22, 0.72);
}

.grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  border-radius: var(--radius2);
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.08);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.24), rgba(45, 122, 106, 0.18));
  display: grid;
  place-items: center;
  color: rgba(31, 26, 22, 0.86);
  border: 1px solid rgba(31, 26, 22, 0.08);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.p {
  margin: 0;
  color: rgba(31, 26, 22, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.split__left {
  border-radius: var(--radius2);
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 22px 60px rgba(31, 26, 22, 0.08);
}

.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: rgba(31, 26, 22, 0.78);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: radial-gradient(10px 10px at 30% 30%, rgba(255, 255, 255, 0.8), transparent 60%),
    linear-gradient(180deg, rgba(45, 122, 106, 1), rgba(29, 88, 77, 1));
  box-shadow: 0 10px 18px rgba(45, 122, 106, 0.18);
}

.split__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.split__right {
  display: grid;
  gap: 14px;
}

.quote {
  border-radius: var(--radius2);
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.08);
}

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

.quote__badge {
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(196, 122, 74, 0.14);
  border: 1px solid rgba(196, 122, 74, 0.22);
}

.quote__stars {
  color: rgba(155, 79, 39, 0.85);
  font-weight: 900;
  letter-spacing: 0.4px;
}

.quote__text {
  margin: 12px 0 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.35;
}

.quote__meta {
  margin: 0;
  color: rgba(31, 26, 22, 0.6);
  font-size: 13px;
}

.promo {
  border-radius: var(--radius2);
  padding: 18px;
  background: radial-gradient(600px 300px at 10% 0%, rgba(196, 122, 74, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(45, 122, 106, 0.15), rgba(255, 255, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 60px rgba(31, 26, 22, 0.12);
}

.promo__title {
  font-weight: 1000;
  font-size: 18px;
}

.promo__text {
  margin-top: 6px;
  color: rgba(31, 26, 22, 0.76);
}

.promo__cta {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: rgba(31, 26, 22, 0.92);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 26, 22, 0.12);
}

.tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 26, 22, 0.08);
  font-weight: 700;
  color: rgba(31, 26, 22, 0.82);
  font-size: 13px;
}

.rates__lead {
  margin-top: 6px;
  color: rgba(31, 26, 22, 0.74);
}

.rates__list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.rates__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
}

.rates__row span {
  font-weight: 900;
}

.rates__meta {
  margin-top: -6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(31, 26, 22, 0.6);
}

.rates__note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(31, 26, 22, 0.72);
}

.rates__bullets {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.rates__bullet {
  position: relative;
  padding-left: 14px;
  color: rgba(31, 26, 22, 0.78);
  font-weight: 700;
}

.rates__bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(155, 79, 39, 0.85);
}

.rates__muted {
  font-size: 12px;
  font-weight: 800;
  color: rgba(31, 26, 22, 0.6);
}

.cta {
  margin-top: 22px;
}

.cta__box {
  border-radius: var(--radius2);
  padding: 22px;
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.17), rgba(45, 122, 106, 0.12));
  border: 1px solid rgba(31, 26, 22, 0.1);
  box-shadow: 0 22px 60px rgba(31, 26, 22, 0.08);
}

.cta__actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.masonry {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.reviews {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.reviews__item {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.reviews__item:hover {
  transform: translateY(-1px);
}

.reviews__img {
  width: 100%;
  height: auto;
  display: block;
}

.tile {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius2);
  background: radial-gradient(200px 120px at 20% 20%, rgba(255, 255, 255, 0.5), transparent 60%),
    linear-gradient(135deg, rgba(196, 122, 74, 0.25), rgba(45, 122, 106, 0.12));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.08);
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.36));
  opacity: 0.9;
  pointer-events: none;
}

.tile--tall {
  grid-column: span 5;
  aspect-ratio: 5 / 6;
}

.tile--wide {
  grid-column: span 7;
  aspect-ratio: 7 / 3;
}

.tile__cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(31, 26, 22, 0.12);
  font-weight: 900;
  font-size: 13px;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius2);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.08);
}

.faq__q {
  cursor: pointer;
  font-weight: 1000;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}

.faq__q::after {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.85;
  background: rgba(31, 26, 22, 0.72);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6.5' cy='9' r='2.2' fill='black'/%3E%3Ccircle cx='17.5' cy='9' r='2.2' fill='black'/%3E%3Ccircle cx='10' cy='6.5' r='2' fill='black'/%3E%3Ccircle cx='14' cy='6.5' r='2' fill='black'/%3E%3Cpath d='M12 11c-3.3 0-6 2.4-6 5.3 0 2.2 2.1 3.9 6 3.9s6-1.7 6-3.9C18 13.4 15.3 11 12 11z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6.5' cy='9' r='2.2' fill='black'/%3E%3Ccircle cx='17.5' cy='9' r='2.2' fill='black'/%3E%3Ccircle cx='10' cy='6.5' r='2' fill='black'/%3E%3Ccircle cx='14' cy='6.5' r='2' fill='black'/%3E%3Cpath d='M12 11c-3.3 0-6 2.4-6 5.3 0 2.2 2.1 3.9 6 3.9s6-1.7 6-3.9C18 13.4 15.3 11 12 11z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(-10deg);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.faq__item[open] .faq__q::after {
  transform: rotate(20deg) scale(1.05);
  opacity: 1;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__a {
  margin-top: 8px;
  color: rgba(31, 26, 22, 0.74);
}

.prep {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.prep li {
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 12, 10, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  z-index: 80;
}

.modal__card {
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 26, 22, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
}

.modal__title {
  font-weight: 1000;
  font-family: var(--font-serif);
}

.modal__close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
}

.form {
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: auto;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__row {
  display: grid;
  gap: 6px;
}

.form__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(31, 26, 22, 0.72);
}

.form__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 22, 0.14);
  padding: 10px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
}

.form__textarea {
  resize: vertical;
}

.form__help {
  margin-top: -2px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(31, 26, 22, 0.62);
}

.form__status {
  min-height: 18px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(31, 26, 22, 0.72);
}

.form__status[data-state='success'] {
  color: rgba(45, 122, 106, 0.95);
}

.form__status[data-state='error'] {
  color: rgba(155, 79, 39, 0.95);
}

.form__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

.imgmodal {
  position: fixed;
  inset: 0;
  background: rgba(17, 12, 10, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 90;
}

.imgmodal[hidden] {
  display: none;
}

.imgmodal__img {
  width: auto;
  height: auto;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.imgmodal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 12, 10, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
}

.section--dark {
  background: radial-gradient(900px 520px at 10% 0%, rgba(196, 122, 74, 0.28), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(45, 122, 106, 0.22), transparent 55%),
    linear-gradient(180deg, #19130f, #110c0a);
  color: rgba(255, 255, 255, 0.92);
}

.h2--invert {
  color: rgba(255, 255, 255, 0.96);
}

.sub--invert {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.contact__left {
  border-radius: var(--radius2);
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__right {
  display: grid;
  gap: 12px;
}

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

.mini {
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini__k {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.mini__v {
  font-weight: 1000;
  margin-top: 2px;
}

.mini__v a {
  color: rgba(255, 255, 255, 0.92);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.social__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.social__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.social__icon svg {
  width: 18px;
  height: 18px;
}

.map {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.map__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.map__title {
  font-weight: 1000;
}

.map__link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 13px;
}

.map__frame {
  width: 100%;
  height: 310px;
  border: 0;
  filter: saturate(1.05) contrast(1.05);
}

.fine {
  border-radius: var(--radius2);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer {
  padding: 28px 0 40px;
}

.footer__inner {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(31, 26, 22, 0.08);
  padding-top: 22px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-weight: 600;
}

.footer__meta,
.footer__copy {
  color: rgba(31, 26, 22, 0.7);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: unset;
  }

  .nav {
    display: none;
  }

  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

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

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

  .masonry {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .tile {
    grid-column: span 6;
  }

  .tile--tall,
  .tile--wide {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 520px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .header__cta {
    width: 100%;
  }

  .header__cta > * {
    flex: 1;
  }

  .header__cta .btn {
    flex: 1;
  }

  .dd__menu {
    left: 0;
    right: 0;
  }

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

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

  .map__frame {
    height: 260px;
  }

  .reviews__item {
    border-radius: 10px;
  }
}

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

  * {
    transition: none !important;
  }
}
