:root {
  --gp-ink: #1c1d1a;
  --gp-ink-soft: #4f554f;
  --gp-paper: #f6f2ea;
  --gp-paper-strong: #fffdf8;
  --gp-forest: #243b31;
  --gp-forest-deep: #17271f;
  --gp-water: #5f7f88;
  --gp-copper: #aa6f45;
  --gp-line: rgba(28, 29, 26, 0.16);
  --gp-line-light: rgba(255, 255, 255, 0.34);
  --gp-shadow: 0 24px 70px rgba(23, 39, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gp-redesign {
  margin: 0;
  color: var(--gp-ink);
  background: var(--gp-paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.gp-redesign a {
  color: inherit;
  text-decoration: none;
}

.gp-page {
  overflow: clip;
}

.gp-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.gp-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gp-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(12px);
}

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

.gp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(18px);
}

.gp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.gp-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  color: var(--gp-forest-deep);
  white-space: nowrap;
}

.gp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(28, 29, 26, 0.72);
}

.gp-nav a:hover,
.gp-footer a:hover {
  color: var(--gp-copper);
}

.gp-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gp-mobile-menu {
  display: none;
}

.gp-breadcrumbs {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(28, 29, 26, 0.08);
  background: rgba(246, 242, 234, 0.96);
  color: rgba(28, 29, 26, 0.62);
  font-size: 13px;
}

.gp-breadcrumbs .gp-container {
  display: flex;
  align-items: center;
  min-height: 42px;
  gap: 9px;
}

.gp-breadcrumbs a {
  color: rgba(28, 29, 26, 0.72);
}

.gp-breadcrumbs a:hover {
  color: var(--gp-copper);
}

.gp-breadcrumbs [aria-current="page"] {
  color: rgba(28, 29, 26, 0.86);
}

.gp-phone {
  font-size: 14px;
  color: rgba(28, 29, 26, 0.72);
  white-space: nowrap;
}

.gp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gp-button--primary {
  background: var(--gp-forest);
  color: #fffdf8 !important;
}

.gp-button--primary:hover {
  background: var(--gp-forest-deep);
  color: #fffdf8 !important;
}

.gp-button--ghost {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff !important;
}

.gp-button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gp-button--line {
  border-color: rgba(28, 29, 26, 0.28);
  color: var(--gp-ink) !important;
}

.gp-button--line:hover {
  border-color: var(--gp-forest);
  color: var(--gp-forest);
}

.gp-hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  background: var(--gp-forest-deep);
}

.gp-hero__image,
.gp-hero__shade {
  position: absolute;
  inset: 0;
}

.gp-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 22, 18, 0.58), rgba(13, 22, 18, 0.28) 48%, rgba(13, 22, 18, 0.03)),
    linear-gradient(0deg, rgba(13, 22, 18, 0.30), transparent 42%);
}

.gp-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 78vh;
  padding: 84px 0 52px;
}

.gp-kicker {
  margin: 0 0 18px;
  color: var(--gp-copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gp-hero .gp-kicker {
  color: #e1ad83;
}

.gp-h1,
.gp-h2,
.gp-h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.gp-h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 1;
}

.gp-h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
}

.gp-h3 {
  font-size: 26px;
  line-height: 1.12;
}

.gp-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.72;
}

.gp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.gp-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.gp-booking-widget {
  position: relative;
  width: min(100%, 1080px);
  margin-top: 22px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 232, 218, 0.9));
  color: var(--gp-ink);
  box-shadow: 0 26px 80px rgba(13, 22, 18, 0.3);
  backdrop-filter: blur(18px);
}

.gp-booking-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.gp-booking-widget__fields {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 160px 180px auto;
  gap: 8px;
  align-items: stretch;
}

.gp-booking-date {
  position: relative;
  min-width: 0;
}

.gp-booking-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid rgba(28, 29, 26, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gp-booking-field span {
  color: rgba(28, 29, 26, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.gp-booking-field:focus-within,
.gp-booking-date__trigger[aria-expanded="true"] {
  border-color: rgba(170, 111, 69, 0.56);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(170, 111, 69, 0.13);
}

.gp-booking-field input,
.gp-booking-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--gp-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  outline: 0;
}

.gp-booking-date__trigger {
  width: 100%;
  min-height: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.gp-booking-date__trigger strong {
  display: block;
  color: var(--gp-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.gp-booking-date__trigger em {
  display: block;
  margin-top: 2px;
  color: rgba(28, 29, 26, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.gp-booking-calendar {
  position: absolute;
  z-index: 20;
  left: 0;
  top: calc(100% + 10px);
  width: min(720px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(28, 29, 26, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 28px 90px rgba(13, 22, 18, 0.28);
}

.gp-booking-calendar[hidden] {
  display: none;
}

.gp-booking-calendar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.gp-booking-calendar__top span {
  display: block;
  color: rgba(28, 29, 26, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.gp-booking-calendar__top strong {
  display: block;
  margin-top: 6px;
  color: var(--gp-ink);
  font-size: 16px;
  line-height: 1.35;
}

.gp-booking-calendar__nav {
  display: flex;
  gap: 6px;
}

.gp-booking-calendar__nav button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(28, 29, 26, 0.14);
  border-radius: 999px;
  background: #f6f1e8;
  color: var(--gp-ink);
  cursor: pointer;
}

.gp-booking-calendar__nav button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translate(-35%, -50%) rotate(135deg);
}

.gp-booking-calendar__nav button:last-child::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.gp-booking-calendar__nav button:disabled {
  color: rgba(28, 29, 26, 0.24);
  cursor: default;
}

.gp-booking-calendar__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gp-booking-calendar__month {
  min-width: 0;
}

.gp-booking-calendar__month h3 {
  margin: 0 0 12px;
  color: rgba(28, 29, 26, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.gp-booking-calendar__weekdays,
.gp-booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.gp-booking-calendar__weekdays {
  margin-bottom: 6px;
}

.gp-booking-calendar__weekdays span {
  color: rgba(28, 29, 26, 0.42);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.gp-booking-calendar__days button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: rgba(28, 29, 26, 0.78);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.gp-booking-calendar__days button:hover {
  border-color: rgba(170, 111, 69, 0.3);
  background: rgba(170, 111, 69, 0.09);
}

.gp-booking-calendar__days button:disabled {
  color: rgba(28, 29, 26, 0.22);
  cursor: default;
}

.gp-booking-calendar__days button:disabled:hover {
  border-color: transparent;
  background: transparent;
}

.gp-booking-calendar__days button.is-in-range {
  background: #efe6dc;
  color: rgba(28, 29, 26, 0.82);
}

.gp-booking-calendar__days button.is-start,
.gp-booking-calendar__days button.is-end {
  border-color: var(--gp-forest);
  background: var(--gp-forest);
  color: #fffdf8;
}

.gp-booking-widget__submit {
  width: 100%;
  min-height: 100%;
  padding-inline: 20px;
}

.gp-section {
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.gp-section--tight-top {
  padding-top: 0;
}

.gp-section--muted {
  background: #ebe6dc;
}

.gp-section--forest {
  color: #fffdf8;
  background: var(--gp-forest);
}

.gp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.gp-copy {
  display: grid;
  gap: 18px;
  color: rgba(28, 29, 26, 0.76);
  font-size: 17px;
  line-height: 1.78;
}

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

.gp-media-card,
.gp-house-card,
.gp-review-card,
.gp-info-card {
  border-radius: 8px;
  overflow: hidden;
}

.gp-media-card {
  position: relative;
  min-height: 450px;
  color: #fff;
  background: var(--gp-forest);
  box-shadow: var(--gp-shadow);
}

.gp-media-card img,
.gp-ritual img,
.gp-house-card img,
.gp-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-media-card img,
.gp-media-card__shade {
  position: absolute;
  inset: 0;
}

.gp-media-card__shade {
  background: linear-gradient(0deg, rgba(13, 22, 18, 0.86), rgba(13, 22, 18, 0.18));
}

.gp-media-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 450px;
  padding: 28px;
}

.gp-media-card p,
.gp-ritual p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  line-height: 1.62;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.gp-house-card {
  background: var(--gp-paper-strong);
  border: 1px solid var(--gp-line);
}

.gp-house-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
}

.gp-house-card__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(23, 39, 31, 0.7);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.gp-house-card__body {
  padding: 26px;
}

.gp-house-card p,
.gp-info-card p,
.gp-review-card p {
  margin: 10px 0 0;
  color: rgba(28, 29, 26, 0.72);
  font-size: 15.5px;
  line-height: 1.68;
}

.gp-image-frame {
  height: min(620px, 62vw);
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gp-forest-deep);
  box-shadow: var(--gp-shadow);
}

.gp-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.gp-small-note {
  margin: 26px 0 0;
  color: rgba(28, 29, 26, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.gp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gp-line);
  color: rgba(28, 29, 26, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.gp-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(36, 59, 49, 0.1);
  color: var(--gp-forest);
  font-size: 17px;
}

.gp-ritual {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: var(--gp-forest-deep);
}

.gp-ritual img,
.gp-ritual__shade {
  position: absolute;
  inset: 0;
}

.gp-ritual--static {
  cursor: default;
}

.gp-ritual__shade {
  background:
    linear-gradient(0deg, rgba(6, 12, 9, 0.94), rgba(13, 22, 18, 0.48) 58%, rgba(13, 22, 18, 0.18)),
    linear-gradient(90deg, rgba(6, 12, 9, 0.36), transparent 62%);
}

.gp-ritual__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
}

.gp-ritual .gp-h3,
.gp-media-card .gp-h3 {
  color: #fffdf8;
}

.gp-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.gp-info-card,
.gp-review-card {
  padding: 34px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--gp-line);
}

.gp-info-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(28, 29, 26, 0.78);
  font-size: 16px;
  line-height: 1.58;
}

.gp-center-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(28, 29, 26, 0.72);
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

.gp-info-card .gp-list__icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  font-size: 14px;
  color: #fffdf8;
}

.gp-list__icon--yes {
  background: var(--gp-forest);
}

.gp-list__icon--no {
  background: rgba(28, 29, 26, 0.14);
  color: rgba(28, 29, 26, 0.68) !important;
}

.gp-review-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: end;
}

.gp-section--reviews {
  overflow: hidden;
}

.gp-rating {
  justify-self: end;
  padding: 22px 26px;
  border-radius: 8px;
  background: var(--gp-paper-strong);
  border: 1px solid var(--gp-line);
}

.gp-rating strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.gp-rating__score {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-copper);
}

.gp-rating__score .gp-icon {
  fill: currentColor;
  stroke-width: 1.4;
}

.gp-rating__score span {
  color: rgba(28, 29, 26, 0.55);
  font-size: 14px;
}

.gp-rating__link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: rgba(28, 29, 26, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.gp-rating__link .gp-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.gp-reviews-live {
  margin-top: 42px;
}

.gp-smartwidgets-wrapper {
  min-height: 330px;
}

.gp-review-fallback {
  display: flex;
  gap: 20px;
  margin-right: calc((100vw - min(100vw - 48px, 1180px)) / -2);
  padding-bottom: 14px;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gp-review-fallback::-webkit-scrollbar {
  display: none;
}

.gp-review-fallback .gp-review-card {
  flex: 0 0 360px;
  min-height: 300px;
  scroll-snap-align: none;
}

.gp-review-fallback[hidden] {
  display: none;
}

.gp-review-actions {
  margin-top: 24px;
}

.gp-review-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(28, 29, 26, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.gp-quote {
  display: block;
  color: var(--gp-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.7;
}

.gp-review-card__author {
  margin-top: 24px !important;
  color: var(--gp-copper) !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.gp-smartwidgets-wrapper .sw-app {
  font-family: inherit !important;
}

.gp-smartwidgets-wrapper .sw-review-box,
.gp-smartwidgets-wrapper .sw-review-bottom,
.gp-smartwidgets-wrapper .sw-review-item-body-readmore,
.gp-smartwidgets-wrapper .sw-review-item-bottom,
.gp-smartwidgets-wrapper .swiper-pagination {
  display: none !important;
}

.gp-smartwidgets-wrapper .sw-review-list {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-list-body,
html body .gp-smartwidgets-wrapper .swiper-wrapper {
  display: flex !important;
  flex-flow: row nowrap !important;
  gap: 20px !important;
  align-items: stretch !important;
  overflow-x: auto !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  overscroll-behavior-x: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y pinch-zoom !important;
  cursor: grab !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  user-select: none !important;
  transform: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-list-body::-webkit-scrollbar {
  display: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-list-body.gp-review-rail--dragging {
  cursor: grabbing !important;
  scroll-snap-type: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-list-body > .sw-review-item.sw-swiper-slide,
html body .gp-smartwidgets-wrapper .swiper-wrapper > .sw-review-item.sw-swiper-slide {
  box-sizing: border-box !important;
  width: calc((100% - 40px) / 3) !important;
  min-width: calc((100% - 40px) / 3) !important;
  max-width: calc((100% - 40px) / 3) !important;
  height: auto !important;
  flex: 0 0 calc((100% - 40px) / 3) !important;
  margin: 0 !important;
  scroll-snap-align: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item {
  box-sizing: border-box !important;
  min-height: 260px !important;
  height: 100% !important;
  padding: 28px !important;
  border: 1px solid var(--gp-line) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 248, 0.78) !important;
  box-shadow: none !important;
  color: var(--gp-ink) !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item *,
html body .gp-smartwidgets-wrapper .sw-review-item *::before,
html body .gp-smartwidgets-wrapper .sw-review-item *::after {
  box-sizing: border-box !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item-header-col-left,
html body .gp-smartwidgets-wrapper .sw-review-item-photo {
  display: none !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item-header-col-right {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.gp-smartwidgets-wrapper .sw-avatar {
  width: 46px !important;
  height: 46px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
}

.gp-smartwidgets-wrapper .sw-review-item-user a,
.gp-smartwidgets-wrapper .sw-review-item-user {
  color: var(--gp-ink) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.gp-smartwidgets-wrapper .sw-review-item-date {
  margin-top: 4px !important;
  color: rgba(28, 29, 26, 0.52) !important;
  font-family: inherit !important;
  font-size: 13px !important;
}

.gp-smartwidgets-wrapper .sw-review-item-stars svg {
  width: 14px !important;
  height: 14px !important;
  fill: var(--gp-copper) !important;
  color: var(--gp-copper) !important;
}

html body .gp-smartwidgets-wrapper .sw-review-item-message,
html body .gp-smartwidgets-wrapper .sw-review-item-body,
html body .gp-smartwidgets-wrapper .sw-review-truncate-text {
  display: -webkit-box !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: rgba(28, 29, 26, 0.72) !important;
  font-family: inherit !important;
  font-size: 15.5px !important;
  line-height: 1.68 !important;
  text-overflow: ellipsis !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 6 !important;
}

.gp-smartwidgets-wrapper .swiper-button-prev,
.gp-smartwidgets-wrapper .swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  border: 1px solid var(--gp-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 248, 0.92) !important;
  color: var(--gp-forest) !important;
  box-shadow: var(--gp-shadow) !important;
}

.gp-smartwidgets-wrapper .swiper-button-prev::after,
.gp-smartwidgets-wrapper .swiper-button-next::after {
  font-size: 16px !important;
}

html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body {
  display: flex !important;
  grid-template-columns: none !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  padding-bottom: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  overscroll-behavior-x: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y pinch-zoom !important;
  cursor: grab !important;
  user-select: none !important;
}

html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body > .sw-review-item.sw-swiper-slide {
  width: 360px !important;
  min-width: 360px !important;
  max-width: 360px !important;
  min-height: 300px !important;
  flex: 0 0 360px !important;
  scroll-snap-align: none !important;
}

html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body > .sw-review-item:nth-child(n+9) {
  display: none !important;
}

html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-bottom,
html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-reviews-more {
  display: none !important;
}

.gp-banner {
  position: relative;
  color: #fff;
  background: var(--gp-forest-deep);
  scroll-margin-top: 92px;
}

.gp-banner img,
.gp-banner__shade {
  position: absolute;
  inset: 0;
}

.gp-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-banner__shade {
  background: rgba(23, 39, 31, 0.86);
}

.gp-banner__body {
  position: relative;
  padding: 86px 0;
}

.gp-banner p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.gp-rule-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 42px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.gp-rule-points span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gp-rule-points .gp-icon {
  font-size: 21px;
}

.gp-footer {
  padding: 58px 0 28px;
  background: #e5ded2;
  border-top: 1px solid var(--gp-line);
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.gp-footer h2,
.gp-footer h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.gp-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-footer p,
.gp-footer a {
  color: rgba(28, 29, 26, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.gp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--gp-line);
}

.gp-faq-hero {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  color: #fff;
}

.gp-faq-hero__image,
.gp-faq-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-faq-hero__shade,
.gp-faq-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.16));
}

.gp-faq-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 62vh;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1180px;
  padding-top: 120px;
  padding-bottom: 76px;
}

.gp-faq-hero .gp-lead {
  max-width: 680px;
}

.gp-faq-hero-nav,
.gp-faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-faq-hero-nav {
  margin-top: 34px;
}

.gp-faq-hero-nav a,
.gp-faq-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.gp-faq-hero-nav a {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.gp-faq-hero-nav a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gp-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 44px;
  align-items: end;
}

.gp-section-head--split > p {
  margin: 0;
  color: rgba(28, 29, 26, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.gp-faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.gp-faq-quick-card,
.gp-faq-related-card {
  border: 1px solid rgba(28, 29, 26, 0.1);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.56);
}

.gp-faq-quick-card {
  padding: 26px;
}

.gp-faq-quick-card > span,
.gp-faq-topic__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--gp-paper-strong);
  color: var(--gp-forest);
}

.gp-faq-quick-card h3 {
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.gp-faq-quick-card p {
  margin: 0;
  color: rgba(28, 29, 26, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.gp-faq-sticky {
  position: sticky;
  top: 72px;
  z-index: 40;
  border-top: 1px solid rgba(28, 29, 26, 0.08);
  border-bottom: 1px solid rgba(28, 29, 26, 0.1);
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(18px);
}

.gp-faq-topic-nav {
  padding: 13px 0;
}

.gp-faq-topic-nav a {
  border: 1px solid rgba(28, 29, 26, 0.14);
  background: rgba(255, 253, 248, 0.58);
  color: rgba(28, 29, 26, 0.74);
}

.gp-faq-topic-nav a:hover {
  border-color: rgba(170, 111, 69, 0.48);
  color: var(--gp-copper);
}

.gp-faq-topic {
  scroll-margin-top: 150px;
  padding: 84px 0;
  border-top: 1px solid var(--gp-line);
}

.gp-faq-topic__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.55fr);
  gap: 76px;
}

.gp-faq-topic__aside {
  position: sticky;
  top: 154px;
  align-self: start;
}

.gp-faq-topic__aside .gp-kicker {
  margin-top: 22px;
}

.gp-faq-topic__aside p:not(.gp-kicker) {
  margin: 18px 0 0;
  color: rgba(28, 29, 26, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.gp-faq-list {
  margin: 0;
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}

.gp-faq-item {
  padding: 26px 0;
}

.gp-faq-item + .gp-faq-item {
  border-top: 1px solid var(--gp-line);
}

.gp-faq-item dt {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gp-forest-deep);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
}

.gp-faq-item dd {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(28, 29, 26, 0.72);
  font-size: 15px;
  line-height: 1.76;
}

.gp-faq-family .gp-split {
  align-items: center;
}

.gp-faq-bullets {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(28, 29, 26, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.gp-faq-bullets li {
  display: flex;
  gap: 12px;
}

.gp-faq-bullets .gp-icon {
  margin-top: 4px;
  color: var(--gp-copper);
  font-size: 18px;
}

.gp-faq-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.gp-faq-related-card {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  padding: 24px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.gp-faq-related-card:hover {
  background: rgba(255, 253, 248, 0.82);
  transform: translateY(-2px);
}

.gp-faq-related-card strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gp-forest-deep);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.gp-faq-related-card span {
  margin-top: 8px;
  color: rgba(28, 29, 26, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.gp-faq-related-card .gp-icon {
  margin-top: auto;
  color: var(--gp-copper);
}

.gp-faq-cta {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.gp-faq-cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.gp-faq-cta__content p:not(.gp-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

@media (max-width: 980px) {
  .gp-header {
    background: var(--gp-paper);
  }

  .gp-phone {
    display: none;
  }

  .gp-header__inner {
    flex-wrap: wrap;
    min-height: 64px;
    gap: 12px 18px;
    padding: 12px 0;
  }

  .gp-nav {
    display: none;
  }

  .gp-mobile-menu {
    position: relative;
    order: 3;
    display: block;
    width: 100%;
  }

  .gp-mobile-menu summary {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(28, 29, 26, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.72);
    color: rgba(28, 29, 26, 0.78);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }

  .gp-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .gp-mobile-menu summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .gp-mobile-menu[open] summary::after {
    transform: rotate(225deg) translateY(-2px);
  }

  .gp-mobile-menu__panel {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(28, 29, 26, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--gp-shadow);
  }

  .gp-mobile-menu__panel a {
    padding: 10px 2px;
    color: rgba(28, 29, 26, 0.78);
    font-size: 15px;
  }

  .gp-split,
  .gp-review-row,
  .gp-footer__grid {
    grid-template-columns: 1fr;
  }

  .gp-split {
    gap: 34px;
  }

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

  .gp-booking-date {
    grid-column: 1 / -1;
  }

  .gp-booking-calendar {
    width: 100%;
  }

  .gp-booking-widget__submit {
    grid-column: 1 / -1;
    min-height: 50px;
  }

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

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

  .gp-image-frame {
    height: 460px;
    min-height: 0;
  }

  .gp-rating {
    justify-self: start;
  }

  .gp-review-fallback {
    margin-right: -24px;
  }

  html body .gp-smartwidgets-wrapper .sw-review-list-body > .sw-review-item.sw-swiper-slide,
  html body .gp-smartwidgets-wrapper .swiper-wrapper > .sw-review-item.sw-swiper-slide {
    width: calc(50% - 10px) !important;
    min-width: calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    flex: 0 0 calc(50% - 10px) !important;
  }

  html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body {
    display: flex !important;
    grid-template-columns: none !important;
  }

  html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body > .sw-review-item.sw-swiper-slide {
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important;
    flex: 0 0 340px !important;
  }

  .gp-section,
  .gp-banner {
    scroll-margin-top: 128px;
  }

  .gp-faq-hero,
  .gp-faq-hero__content {
    min-height: auto;
  }

  .gp-faq-hero__content {
    padding-top: 120px;
    padding-bottom: 54px;
  }

  .gp-faq-hero-nav,
  .gp-faq-topic-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gp-faq-hero-nav::-webkit-scrollbar,
  .gp-faq-topic-nav::-webkit-scrollbar {
    display: none;
  }

  .gp-section-head--split,
  .gp-faq-topic__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gp-faq-quick-grid,
  .gp-faq-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gp-faq-sticky {
    top: 88px;
  }

  .gp-faq-topic {
    scroll-margin-top: 132px;
    padding: 66px 0;
  }

  .gp-faq-topic__aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .gp-container {
    width: min(100% - 28px, 1180px);
  }

  .gp-logo {
    font-size: 20px;
  }

  .gp-header__actions {
    margin-left: auto;
  }

  .gp-header__actions .gp-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .gp-hero,
  .gp-hero__content {
    min-height: 720px;
  }

  .gp-hero__image {
    object-position: 36% center;
  }

  .gp-hero__content {
    padding: 72px 0 34px;
  }

  .gp-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .gp-trust {
    margin-top: 30px;
  }

  .gp-booking-widget {
    margin-top: 18px;
    padding: 10px;
  }

  .gp-booking-widget__fields {
    grid-template-columns: 1fr;
  }

  .gp-booking-field {
    padding: 10px 12px;
  }

  .gp-booking-calendar {
    position: static;
    width: 100%;
    max-height: 70vh;
    margin-top: 10px;
    padding: 14px;
    overflow: auto;
  }

  .gp-booking-calendar__top {
    align-items: flex-start;
  }

  .gp-booking-calendar__top strong {
    font-size: 15px;
  }

  .gp-booking-calendar__months {
    grid-template-columns: 1fr;
  }

  .gp-booking-calendar__days button {
    min-height: 40px;
  }

  .gp-section {
    padding: 72px 0;
  }

  .gp-media-card,
  .gp-media-card__body {
    min-height: 340px;
  }

  .gp-h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.04;
  }

  .gp-copy,
  .gp-info-card li,
  .gp-list li {
    font-size: 16px;
  }

  .gp-split {
    gap: 26px;
  }

  .gp-house-card p,
  .gp-info-card p,
  .gp-review-card p,
  .gp-media-card p,
  .gp-ritual p {
    font-size: 15.5px;
  }

  .gp-image-frame {
    height: 360px;
  }

  .gp-check-grid {
    margin-top: 36px;
  }

  .gp-info-card,
  .gp-review-card {
    padding: 26px;
  }

  .gp-reviews-live {
    margin-top: 32px;
  }

  .gp-smartwidgets-wrapper {
    min-height: 280px;
  }

  .gp-review-fallback {
    display: flex;
    gap: 14px;
    margin-right: -14px;
    overflow-x: auto;
    scroll-behavior: auto;
    scroll-snap-type: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .gp-review-fallback::-webkit-scrollbar {
    display: none;
  }

  .gp-review-fallback .gp-review-card {
    flex-basis: 86%;
    min-width: 86%;
    scroll-snap-align: none;
  }

  html body .gp-smartwidgets-wrapper .sw-review-list-body > .sw-review-item.sw-swiper-slide,
  html body .gp-smartwidgets-wrapper .swiper-wrapper > .sw-review-item.sw-swiper-slide {
    width: 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
    flex: 0 0 86% !important;
  }

  html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body {
    display: flex !important;
    grid-template-columns: none !important;
  }

  html body #sw-app-671c5d36b1f6e7fc646bc45a241a4d6c .sw-review-list-body > .sw-review-item.sw-swiper-slide {
    width: 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
    flex: 0 0 86% !important;
  }

  .gp-smartwidgets-wrapper .sw-review-item {
    min-height: 280px !important;
    padding: 26px !important;
  }

  .gp-footer__bottom {
    flex-direction: column;
  }

  .gp-faq-hero__content {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .gp-faq-hero__shade,
  .gp-faq-cta__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
  }

  .gp-faq-quick-grid,
  .gp-faq-related-grid {
    grid-template-columns: 1fr;
  }

  .gp-faq-sticky {
    top: 72px;
  }

  .gp-faq-topic {
    scroll-margin-top: 118px;
    padding: 54px 0;
  }

  .gp-faq-item {
    padding: 22px 0;
  }

  .gp-faq-item dt {
    font-size: 21px;
  }

  .gp-faq-item dd {
    font-size: 14px;
  }

  .gp-faq-cta__content {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 420px) {
  .gp-header__inner {
    gap: 10px;
  }

  .gp-header__actions .gp-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12.5px;
  }

  .gp-hero,
  .gp-hero__content {
    min-height: 760px;
  }

  .gp-hero__image {
    object-position: 32% center;
  }

  .gp-hero__content {
    padding: 54px 0 28px;
  }

  .gp-h1 {
    font-size: 39px;
  }

  .gp-lead {
    margin-top: 22px;
  }
}

.gp-house-page .gp-header {
  background: rgba(246, 242, 234, 0.94);
}

.gp-house-hero {
  position: relative;
  min-height: 680px;
  color: #fffdf8;
  background: var(--gp-forest-deep);
}

.gp-house-hero__image,
.gp-house-hero__shade {
  position: absolute;
  inset: 0;
}

.gp-house-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-house-hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.72), rgba(16, 24, 20, 0.34) 56%, rgba(16, 24, 20, 0.08)),
    linear-gradient(0deg, rgba(16, 24, 20, 0.36), transparent 48%);
}

.gp-house-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 680px;
  padding: 86px 0 76px;
}

.gp-house-hero .gp-lead {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.86);
}

.gp-house-hero__actions,
.gp-house-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gp-house-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.gp-house-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 248, 0.86);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.gp-house-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 54px;
  align-items: start;
}

.gp-house-intro p,
.gp-house-rich p,
.gp-house-card-detail p,
.gp-house-feature-card p {
  color: rgba(28, 29, 26, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.gp-house-note {
  padding: 28px;
  border: 1px solid var(--gp-line);
  background: rgba(255, 253, 248, 0.58);
}

.gp-house-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gp-forest);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gp-house-format-grid,
.gp-house-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.gp-house-list--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-house-list--editorial {
  grid-template-columns: 1fr;
  gap: 34px;
}

.gp-house-format-card,
.gp-house-card-detail,
.gp-house-feature-card {
  overflow: hidden;
  border: 1px solid var(--gp-line);
  background: var(--gp-paper-strong);
  box-shadow: 0 18px 48px rgba(23, 39, 31, 0.08);
}

.gp-house-card-detail {
  display: flex;
  flex-direction: column;
}

.gp-house-list--editorial .gp-house-card-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(246, 242, 234, 0.72)),
    var(--gp-paper-strong);
}

.gp-house-list--editorial .gp-house-card-detail:nth-child(even) .gp-house-card-detail__image {
  order: 2;
}

.gp-house-format-card__image,
.gp-house-card-detail__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d0c2;
}

.gp-house-format-card__image img,
.gp-house-card-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gp-house-format-card:hover img,
.gp-house-card-detail:hover img {
  transform: scale(1.035);
}

.gp-house-list--editorial .gp-house-card-detail__image {
  aspect-ratio: auto;
  min-height: 520px;
}

.gp-house-list--editorial .gp-house-card-detail__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 20, 0.2), transparent 44%);
  pointer-events: none;
}

.gp-house-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--gp-forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gp-house-format-card__body,
.gp-house-card-detail__body,
.gp-house-feature-card {
  padding: 28px;
}

.gp-house-card-detail__body {
  display: grid;
  gap: 14px;
  align-content: start;
  flex: 1;
}

.gp-house-list--editorial .gp-house-card-detail__body {
  padding: clamp(32px, 5vw, 58px);
  align-content: center;
}

.gp-house-card-number {
  display: block;
  color: rgba(170, 111, 69, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.82;
}

.gp-house-card-detail__body .gp-house-card-actions {
  margin-top: auto;
}

.gp-house-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}

.gp-house-specs span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(28, 29, 26, 0.12);
  border-radius: 999px;
  background: rgba(246, 242, 234, 0.72);
  color: rgba(28, 29, 26, 0.64);
  font-size: 12px;
}

.gp-house-secret {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gp-copper);
  background: rgba(170, 111, 69, 0.08);
  color: rgba(28, 29, 26, 0.74);
  font-size: 14px;
  line-height: 1.64;
}

.gp-house-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.gp-house-concept-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.gp-house-concept-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid var(--gp-line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(246, 242, 234, 0.7)),
    var(--gp-paper-strong);
  box-shadow: 0 16px 42px rgba(23, 39, 31, 0.07);
  color: var(--gp-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.18;
}

.gp-house-concept-tag .gp-house-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.gp-house-feature-card h3 {
  margin-bottom: 10px;
}

.gp-house-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(170, 111, 69, 0.18);
  border-radius: 50%;
  background: rgba(170, 111, 69, 0.08);
  color: var(--gp-forest);
}

.gp-house-icon .gp-icon {
  width: 20px;
  height: 20px;
}

.gp-house-fireplace {
  background: rgba(246, 242, 234, 0.58);
}

.gp-house-fireplace .gp-lead {
  color: rgba(28, 29, 26, 0.72);
}

.gp-house-fireplace__grid,
.gp-house-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.gp-house-fireplace__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--gp-line);
  background: #d8d0c2;
}

.gp-house-fireplace__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.gp-house-bullets,
.gp-house-faq {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.gp-house-bullets li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: rgba(28, 29, 26, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.gp-house-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gp-copper);
}

.gp-house-amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.gp-house-amenity-card,
.gp-house-included-card,
.gp-house-extra-card {
  border: 1px solid var(--gp-line);
  background: var(--gp-paper-strong);
  box-shadow: 0 18px 48px rgba(23, 39, 31, 0.07);
}

.gp-house-amenity-card,
.gp-house-included-card {
  padding: 28px;
}

.gp-house-amenity-card p,
.gp-house-included-card p,
.gp-house-extra-card p,
.gp-house-faq p {
  color: rgba(28, 29, 26, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.gp-house-included-grid,
.gp-house-extra-list {
  display: grid;
  gap: 16px;
}

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

.gp-house-extra-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: rgba(246, 242, 234, 0.7);
}

.gp-house-extra-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.gp-house-extra-card__price {
  color: rgba(28, 29, 26, 0.56);
  font-size: 13px;
}

.gp-house-faq {
  max-width: 840px;
  margin: 46px auto 0;
  border-top: 1px solid var(--gp-line);
}

.gp-house-faq details {
  border-bottom: 1px solid var(--gp-line);
}

.gp-house-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--gp-ink);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.24;
  list-style: none;
}

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

.gp-house-faq summary::after {
  content: "+";
  flex: none;
  color: var(--gp-copper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gp-house-faq details[open] summary::after {
  content: "-";
}

.gp-house-faq p {
  max-width: 720px;
  margin: -6px 0 24px;
}

.gp-house-compare {
  width: 100%;
  margin-top: 44px;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--gp-paper-strong);
  box-shadow: 0 18px 48px rgba(23, 39, 31, 0.08);
}

.gp-house-compare th,
.gp-house-compare td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gp-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.gp-house-table-wrap {
  overflow-x: auto;
}

.gp-house-compare th {
  color: var(--gp-forest);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gp-house-cta {
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  background: var(--gp-forest-deep);
}

.gp-house-cta__image,
.gp-house-cta__shade {
  position: absolute;
  inset: 0;
}

.gp-house-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-house-cta__shade {
  background: rgba(20, 34, 27, 0.74);
}

.gp-house-cta__content {
  position: relative;
  padding: 88px 0;
}

.gp-house-cta p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .gp-house-intro,
  .gp-house-format-grid,
  .gp-house-list,
  .gp-house-list--three,
  .gp-house-concept-tags,
  .gp-house-feature-grid,
  .gp-house-list--editorial .gp-house-card-detail,
  .gp-house-fireplace__grid,
  .gp-house-split,
  .gp-house-amenity-grid,
  .gp-house-included-grid {
    grid-template-columns: 1fr;
  }

  .gp-house-list--editorial .gp-house-card-detail,
  .gp-house-fireplace__image,
  .gp-house-fireplace__image img {
    min-height: 0;
  }

  .gp-house-list--editorial .gp-house-card-detail__image {
    min-height: 360px;
    aspect-ratio: 16 / 11;
  }

  .gp-house-list--editorial .gp-house-card-detail:nth-child(even) .gp-house-card-detail__image {
    order: 0;
  }

  .gp-house-hero,
  .gp-house-hero__content {
    min-height: 620px;
  }

  .gp-house-page .gp-section {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .gp-house-hero,
  .gp-house-hero__content {
    min-height: 650px;
  }

  .gp-house-hero__content {
    padding: 64px 0 52px;
  }

  .gp-house-page .gp-h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .gp-house-page .gp-h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .gp-house-page .gp-section {
    padding: 64px 0;
  }

  .gp-house-hero .gp-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .gp-house-hero__actions,
  .gp-house-card-actions {
    flex-direction: column;
  }

  .gp-house-hero__actions .gp-button,
  .gp-house-card-actions .gp-button {
    width: 100%;
  }

  .gp-house-format-card__body,
  .gp-house-card-detail__body,
  .gp-house-feature-card,
  .gp-house-amenity-card,
  .gp-house-included-card,
  .gp-house-extra-card,
  .gp-house-note {
    padding: 22px;
  }

  .gp-house-table-wrap .gp-house-compare {
    min-width: 620px;
  }
}
