/* Treflyn Barn — luxury conversion design */
:root {
  --forest: #0f1c16;
  --forest-mid: #1a2e24;
  --forest-soft: #2d4a3c;
  --ink: #141412;
  --ink-soft: #3a3834;
  --muted: #7a756e;
  --line: rgba(15, 28, 22, 0.09);
  --line-strong: rgba(15, 28, 22, 0.14);
  --ivory: #faf7f2;
  --ivory-2: #f0ebe3;
  --paper: #fffcf8;
  --champagne: #c9a66b;
  --champagne-soft: #e0c49a;
  --champagne-deep: #a8874f;
  --shadow-sm: 0 4px 20px rgba(15, 20, 16, 0.05);
  --shadow: 0 20px 50px rgba(15, 20, 16, 0.1);
  --shadow-lg: 0 32px 80px rgba(15, 20, 16, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --nav-h: 90px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mobile-bar-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

ul {
  list-style: none;
}

::selection {
  background: rgba(201, 166, 107, 0.3);
  color: var(--forest);
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.15rem);
  margin-bottom: 0.95rem;
}

h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne-deep);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 36rem;
  line-height: 1.75;
  font-weight: 400;
}

.lead-inline {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.section {
  padding: clamp(4.25rem, 9vw, 7.5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 38rem;
  margin-inline: auto;
}

.section-head .lead {
  margin-inline: auto;
}

.section-head::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--champagne);
  margin: 1.4rem auto 0;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s,
    border-color 0.25s, box-shadow 0.3s;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 12px 32px rgba(15, 28, 22, 0.28);
}

.btn-primary:hover {
  background: var(--forest-mid);
  box-shadow: 0 16px 40px rgba(15, 28, 22, 0.34);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 252, 248, 0.45);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(255, 252, 248, 0.1);
  border-color: var(--paper);
}

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--paper);
}

.btn-gold {
  background: linear-gradient(135deg, var(--champagne) 0%, #d4b07a 50%, var(--champagne) 100%);
  background-size: 200% 100%;
  color: var(--forest);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(201, 166, 107, 0.35);
}

.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 16px 36px rgba(201, 166, 107, 0.45);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.1rem 2.1rem;
  font-size: 0.86rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  background: var(--forest);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(15, 20, 16, 0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--paper);
  transition: color 0.35s ease, transform 0.35s var(--ease);
  flex-shrink: 0;
}

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

.logo:hover .logo-mark {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(201, 166, 107, 0.35));
}

.site-header.scrolled .logo {
  color: var(--forest);
}

/* —— Premium crest mark —— */
.logo-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}

.logo-mark svg,
.logo-crest {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.crest-outer {
  fill: none;
  stroke: #c9a66b;
  stroke-width: 1.35;
}

.crest-mid {
  fill: none;
  stroke: #c9a66b;
  stroke-width: 0.55;
  opacity: 0.45;
}

.crest-hill-far {
  fill: #1e342a;
}

.crest-hill-near {
  fill: #2a4638;
}

.site-header.scrolled .logo-mark {
  filter: drop-shadow(0 4px 12px rgba(15, 28, 22, 0.12));
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.logo-name em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.logo-rule {
  display: block;
  width: 28px;
  height: 1px;
  margin: 0.28rem 0 0.2rem;
  background: linear-gradient(
    90deg,
    var(--champagne-soft),
    transparent
  );
  opacity: 0.85;
  transition: width 0.35s var(--ease), opacity 0.3s;
}

.logo:hover .logo-rule {
  width: 42px;
}

.site-header.scrolled .logo-rule {
  background: linear-gradient(90deg, var(--champagne-deep), transparent);
}

.logo-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1.2;
}

.site-header.scrolled .logo-tag {
  color: var(--muted);
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.07);
  border: 1px solid rgba(255, 252, 248, 0.14);
  backdrop-filter: blur(10px);
}

.site-header.scrolled .nav-links {
  background: rgba(15, 28, 22, 0.04);
  border-color: var(--line);
}

.nav-links a {
  padding: 0.55rem 0.88rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 252, 248, 0.86);
  border-radius: 999px;
  transition: 0.2s;
  white-space: nowrap;
}

.site-header.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--paper);
  background: rgba(255, 252, 248, 0.1);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--forest);
  background: rgba(15, 28, 22, 0.06);
}

.nav-links a.active:not(.nav-cta) {
  color: var(--paper);
  background: rgba(255, 252, 248, 0.14);
}

.site-header.scrolled .nav-links a.active:not(.nav-cta) {
  color: var(--forest);
  background: rgba(15, 28, 22, 0.08);
  font-weight: 600;
}

.nav-cta {
  padding: 0.6rem 1.3rem !important;
  margin-left: 0.15rem;
  background: linear-gradient(135deg, var(--champagne), #d4b07a) !important;
  color: var(--forest) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  font-size: 0.72rem !important;
  box-shadow: 0 6px 18px rgba(201, 166, 107, 0.3);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--forest) !important;
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne)) !important;
}

.site-header.scrolled .nav-cta {
  background: var(--forest) !important;
  color: var(--paper) !important;
  box-shadow: 0 6px 18px rgba(15, 28, 22, 0.2);
}

.site-header.scrolled .nav-cta:hover {
  background: var(--forest-mid) !important;
  color: var(--paper) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 252, 248, 0.28);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.08);
  cursor: pointer;
  z-index: 110;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--paper);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.site-header.scrolled .nav-toggle {
  border-color: var(--line-strong);
  background: rgba(15, 28, 22, 0.04);
}

.site-header.scrolled .nav-toggle span,
body.nav-open .nav-toggle span {
  background: var(--forest);
}

body.nav-open .nav-toggle {
  background: var(--ivory);
  border-color: var(--line-strong);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 5.5rem;
  color: var(--paper);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.1);
  transition: transform 10s ease-out;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 20% 50%, rgba(8, 14, 11, 0.55), transparent 70%),
    linear-gradient(105deg, rgba(8, 14, 11, 0.82) 0%, rgba(8, 14, 11, 0.45) 45%, rgba(8, 14, 11, 0.25) 70%, rgba(8, 14, 11, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 14, 11, 0.55) 0%, transparent 30%, transparent 50%, rgba(8, 14, 11, 0.75) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  animation: heroIn 1.15s var(--ease) both;
  max-width: 620px;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 252, 248, 0.1);
  border: 1px solid rgba(255, 252, 248, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(12px);
  color: rgba(255, 252, 248, 0.9);
}

.trust-stars {
  color: var(--champagne-soft);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-trust strong {
  color: var(--champagne-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.hero h1 {
  font-size: clamp(2.85rem, 6.8vw, 4.75rem);
  color: var(--paper);
  margin-bottom: 1.2rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: italic;
  color: var(--champagne-soft);
}

.hero .lead {
  color: rgba(255, 252, 248, 0.82);
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.85rem;
}

.hero-meta span {
  padding: 0.42rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.9);
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(255, 252, 248, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

/* Hero booking card */
.hero-card {
  background: rgba(255, 252, 248, 0.1);
  border: 1px solid rgba(255, 252, 248, 0.18);
  border-radius: 20px;
  padding: 1.65rem 1.55rem;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: heroIn 1.15s 0.15s var(--ease) both;
  color: var(--paper);
}

.hero-card-top {
  margin-bottom: 1.25rem;
}

.hc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--champagne);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hc-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.3rem;
  line-height: 1.15;
}

.hc-sub {
  font-size: 0.88rem;
  color: rgba(255, 252, 248, 0.7);
}

.hc-list {
  display: grid;
  gap: 0;
  margin-bottom: 1.35rem;
  border-top: 1px solid rgba(255, 252, 248, 0.12);
}

.hc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 252, 248, 0.1);
  font-size: 0.88rem;
}

.hc-list li span {
  color: rgba(255, 252, 248, 0.6);
}

.hc-list li strong {
  font-weight: 600;
  color: var(--paper);
}

.hc-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 252, 248, 0.55);
  margin-top: 0.9rem;
  letter-spacing: 0.04em;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding-bottom: 1.5rem;
}

.hero-bottom-inner {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-progress {
  flex: 1;
  max-width: 300px;
  display: flex;
  gap: 0.4rem;
}

.hero-progress button {
  flex: 1;
  height: 2px;
  border: none;
  padding: 0;
  background: rgba(255, 252, 248, 0.22);
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  min-width: 28px;
}

.hero-progress button.active::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--champagne-soft);
  animation: progressFill 5.5s linear forwards;
}

@keyframes progressFill {
  to {
    width: 100%;
  }
}

.hero-nav-btns {
  display: flex;
  gap: 0.5rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 252, 248, 0.3);
  background: rgba(8, 14, 11, 0.3);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: 0.25s;
}

.hero-arrow:hover {
  background: rgba(255, 252, 248, 0.12);
  border-color: rgba(255, 252, 248, 0.55);
}

/* Trust bar */
.trust-bar {
  background: var(--forest);
  color: var(--paper);
  padding: 1.85rem 0;
  position: relative;
  z-index: 2;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 0.5rem;
}

.tb-item {
  text-align: center;
  padding: 0.25rem 1.5rem;
  min-width: 140px;
}

.tb-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--champagne-soft);
  line-height: 1.15;
}

.tb-item span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}

.tb-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 252, 248, 0.12);
}

/* Promise */
.promise {
  padding: 0;
  background: var(--ivory);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.promise-card {
  padding: 1.85rem 1.45rem;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}

.promise-card:last-child {
  border-right: none;
}

.promise-card:hover {
  background: var(--ivory);
}

.p-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--champagne-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.promise-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.promise-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-images .main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
  position: relative;
}

.about-images .main figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(15, 28, 22, 0.7);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.about-images .side {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.94);
}

.about-images figure:hover img {
  transform: scale(1.04);
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* feature check icons in polish.css */

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.floor-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.floor-plan > div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.floor-plan strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.floor-plan span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Full amenity categories from Airbnb */
.amenity-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.amenity-cat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.4rem;
}

.amenity-cat h3 {
  font-size: 1.15rem;
  margin: 0;
}

.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.amenity-chips li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.amenity-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.6;
}

.star-split {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.review-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2.25rem;
  max-width: 100%;
}

.review-topics .topic {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.review-topics .topic strong {
  color: var(--champagne-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

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

.host-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--champagne-soft);
  box-shadow: 0 8px 24px rgba(15, 28, 22, 0.15);
}

/* Pull quote */
.pull-quote {
  padding: 4.5rem 0;
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(201, 166, 107, 0.12);
  line-height: 1;
  pointer-events: none;
}

.pull-quote blockquote {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.pull-quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  font-weight: 500;
}

/* Gallery */
.gallery-section {
  background: var(--ivory-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #d4ccc0;
  aspect-ratio: 1;
  border: none;
  padding: 0;
  font: inherit;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: saturate(0.92);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.02);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0);
  transition: 0.35s;
}

.gallery-item:hover::after {
  background: rgba(8, 14, 11, 0.2);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  background: linear-gradient(transparent, rgba(8, 14, 11, 0.75));
  opacity: 0;
  transform: translateY(6px);
  transition: 0.35s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: none;
}

.gallery-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.92);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.gallery-cta,
.reviews-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 12, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.28s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox img {
  max-height: min(84vh, 900px);
  max-width: min(92vw, 1200px);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 252, 248, 0.18);
  background: rgba(255, 252, 248, 0.08);
  color: var(--paper);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  transition: 0.2s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 252, 248, 0.16);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 252, 248, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Sleep */
.sleep-section {
  background: var(--forest);
  color: var(--paper);
}

.sleep-section .eyebrow {
  color: var(--champagne-soft);
}
.sleep-section h2 {
  color: var(--paper);
}
.sleep-section .lead {
  color: rgba(255, 252, 248, 0.65);
}
.sleep-section .section-head::after {
  background: var(--champagne);
}

.sleep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.sleep-card {
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid rgba(255, 252, 248, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.35s var(--ease);
}

.sleep-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 252, 248, 0.07);
  border-color: rgba(201, 166, 107, 0.3);
}

.sleep-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.sleep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.92);
}

.sleep-card:hover .sleep-img img {
  transform: scale(1.05);
}

.sleep-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.sleep-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  margin-bottom: 0.35rem;
  display: block;
}

.sleep-card h3 {
  color: var(--paper);
  margin-bottom: 0.3rem;
}

.sleep-card p {
  font-size: 0.88rem;
  color: rgba(255, 252, 248, 0.55);
}

/* Experience */
.experience-section {
  background: var(--ivory);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.exp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: 0.35s var(--ease);
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.exp-visual {
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.exp-card:hover .exp-visual {
  transform: scale(1.04);
  filter: saturate(1);
}

.exp-body {
  padding: 1.35rem 1.4rem 1.55rem;
}

.exp-body span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}

.exp-body h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.35rem;
}

.exp-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-card {
  background: var(--paper);
  padding: 1.65rem 1.4rem;
  transition: background 0.25s;
}

.amenity-card:hover {
  background: var(--ivory);
}

.amenity-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--forest-soft);
}

.amenity-icon svg {
  width: 16px;
  height: 16px;
}

.amenity-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.amenity-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Location */
.location-section {
  background: var(--ivory-2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  aspect-ratio: 4 / 3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
  filter: grayscale(0.2) saturate(0.85);
}

.location-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.location-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: 0.25s;
}

.location-point:hover {
  border-color: rgba(201, 166, 107, 0.4);
  box-shadow: var(--shadow-sm);
}

.location-point .num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--champagne-deep);
  font-weight: 500;
}

.location-point h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.location-point p {
  font-size: 0.88rem;
  color: var(--muted);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.season-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
}

.season-card .s-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 0.5rem;
}

.season-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.season-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Reviews */
.reviews-section {
  background: var(--ivory);
}

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.75rem;
  margin-bottom: 2.5rem;
  padding: 1.85rem 2rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin-inline: auto;
}

.score-big {
  text-align: center;
}

.score-big .num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}

.score-big .stars {
  color: var(--champagne);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  margin: 0.4rem 0;
}

.score-big .label {
  font-size: 0.8rem;
  color: var(--muted);
}

.score-bars {
  flex: 1;
  min-width: 200px;
  display: grid;
  gap: 0.5rem;
}

.score-row {
  display: grid;
  grid-template-columns: 100px 1fr 32px;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.bar {
  height: 3px;
  background: var(--ivory-2);
  border-radius: 99px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--forest-soft), var(--champagne-deep));
  border-radius: 99px;
  transform-origin: left;
  animation: barGrow 1.1s var(--ease) both;
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.review-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.review-card:hover {
  border-color: rgba(201, 166, 107, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.review-card .stars {
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-style: italic;
  flex: 1;
}

.review-card footer {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.95rem;
}

.review-card footer strong {
  display: block;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.rule-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
}

/* rule icons styled in polish.css */

.rule-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.rule-card ul {
  display: grid;
  gap: 0.5rem;
}

.rule-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 0.95rem;
  position: relative;
}

.rule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
}

/* FAQ */
.faq-section {
  background: var(--ivory-2);
}

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.25s;
}

.faq-item.open {
  border-color: rgba(15, 28, 22, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--forest);
}

.faq-q:hover {
  background: rgba(15, 28, 22, 0.02);
}

.faq-q .chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  transition: 0.3s var(--ease);
  color: var(--forest);
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Booking */
.booking-section {
  background: var(--ivory);
}

.booking-head {
  margin-bottom: 2.5rem;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.booking-aside {
  background: linear-gradient(165deg, rgba(8, 14, 11, 0.78), rgba(8, 14, 11, 0.9)),
    url("../images/p2.jpg") center / cover no-repeat;
  color: var(--paper);
  padding: clamp(1.9rem, 4vw, 2.85rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}

.aside-eye {
  color: var(--champagne-soft) !important;
}

.booking-aside h2 {
  color: var(--paper);
  margin-bottom: 0.65rem;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
}

.booking-aside > p {
  color: rgba(255, 252, 248, 0.78);
  margin-bottom: 1.35rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

.booking-rules {
  display: grid;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 1.35rem;
}

.booking-rules li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.booking-rules li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne-soft);
  flex-shrink: 0;
}

.stay-summary {
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(255, 252, 248, 0.12);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.stay-summary strong {
  color: var(--champagne-soft);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.stay-summary .muted {
  opacity: 0.65;
  font-size: 0.8rem;
}

.aside-trust {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 252, 248, 0.7);
}

.aside-trust strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--champagne-soft);
  font-weight: 500;
}

.booking-form-panel {
  padding: clamp(1.9rem, 4vw, 2.85rem);
}

.form-intro {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.form-intro h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.form-intro p {
  font-size: 0.92rem;
  color: var(--muted);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--ivory);
  transition: 0.2s;
  font-size: 0.95rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne-deep);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15);
}

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

.field .hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #a05a5a;
}

.field .error-msg {
  font-size: 0.74rem;
  color: #a05a5a;
  display: none;
}

.field.error .error-msg {
  display: block;
}

.form-actions {
  margin-top: 0.4rem;
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.95rem;
  text-align: center;
  line-height: 1.5;
}

.form-note code {
  font-size: 0.7rem;
  background: var(--ivory-2);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.25rem 1rem;
}

.form-success.show {
  display: block;
  animation: heroIn 0.45s var(--ease);
}

.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  color: var(--champagne-deep);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 1.15rem;
  background: rgba(201, 166, 107, 0.1);
}

.booking-flow-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.booking-flow-steps li {
  position: relative;
  padding: 0.45rem 0 0.45rem 0;
  border-bottom: 1px solid rgba(15, 28, 22, 0.08);
  font-size: 0.92rem;
  line-height: 1.4;
}
.booking-flow-steps li:last-child {
  border-bottom: 0;
}
.booking-flow-steps li::before {
  display: none !important;
}
.booking-rules-meta {
  opacity: 0.92;
  font-size: 0.9rem;
}
.hint-inline {
  font-weight: 400;
  color: var(--muted, #6b7a72);
  font-size: 0.85em;
}
.success-next-steps {
  text-align: left;
  margin: 1rem auto 1.25rem;
  max-width: 28rem;
  padding: 0.85rem 1rem 0.85rem 1.4rem;
  background: rgba(15, 28, 22, 0.04);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.success-next-steps li {
  margin: 0.35rem 0;
}
.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  text-align: center;
  color: var(--paper);
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.45);
  transform: scale(1.05);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.55), rgba(8, 14, 11, 0.78));
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}

.final-cta h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.final-cta h2 em {
  color: var(--champagne-soft);
  font-style: italic;
}

.final-cta p {
  color: rgba(255, 252, 248, 0.78);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* Host */
.host-band {
  background: var(--ivory-2);
  padding: 2.75rem 0;
}

.host-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem 1.85rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.85rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.host-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), var(--forest-soft));
  color: var(--champagne-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(15, 28, 22, 0.2);
}

.host-info h3 {
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}

.host-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

.host-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-left: auto;
}

.pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0c1712 0%, var(--forest) 50%);
  color: rgba(255, 252, 248, 0.72);
  padding: 4.5rem 0 1.85rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(140px, 35%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.6;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 252, 248, 0.1);
}

.footer-brand-block {
  max-width: 22rem;
}

.footer-logo {
  margin-bottom: 1.25rem;
  color: var(--paper);
}

.footer-logo:hover {
  opacity: 0.95;
}

.footer-logo .logo-mark {
  width: 60px;
  height: 60px;
}

.footer-logo .logo-name {
  font-size: 1.9rem;
  color: var(--paper);
}

.footer-logo .logo-tag {
  color: var(--champagne-soft);
  opacity: 0.95;
}

.footer-logo .logo-rule {
  background: linear-gradient(90deg, var(--champagne-soft), transparent);
  width: 36px;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
  color: rgba(255, 252, 248, 0.68);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 252, 248, 0.1);
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 252, 248, 0.62);
}

.footer-col a {
  color: rgba(255, 252, 248, 0.8);
  transition: 0.2s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--paper);
  padding-left: 3px;
}

.footer-contact .fc-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.4);
  margin-bottom: 0.2rem;
}

.footer-contact li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 252, 248, 0.06);
}

.footer-contact li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 252, 248, 0.45);
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-bottom-links a {
  color: rgba(255, 252, 248, 0.55);
  transition: 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--champagne-soft);
}

.footer-bottom-links .sep {
  opacity: 0.35;
}

/* Mobile bar */
.mobile-book-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(15, 20, 16, 0.1);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.mobile-book-bar.show {
  transform: translateY(0);
}

.mobile-book-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
}

.mobile-book-bar .info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 700;
}

.mobile-book-bar .info span {
  font-size: 0.74rem;
  color: var(--muted);
}

.back-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 85;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--forest);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 981px) {
  .nav-links a {
    padding: 0.5rem 0.6rem;
    font-size: 0.76rem;
  }
  .logo-name {
    font-size: 1.55rem;
  }
  .logo-mark {
    width: 48px;
    height: 48px;
  }
  .hero-inner {
    gap: 1.5rem;
  }
}

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

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 90vw);
    height: 100dvh;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + 1rem) 1.35rem 2rem;
    gap: 0.2rem;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 56px rgba(0, 0, 0, 0.14);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    z-index: 105;
    backdrop-filter: none;
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links a {
    color: var(--ink-soft) !important;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(15, 28, 22, 0.06) !important;
    color: var(--forest) !important;
  }

  .nav-cta {
    text-align: center;
    margin-top: 1rem !important;
    margin-left: 0 !important;
    background: var(--forest) !important;
    color: var(--paper) !important;
    box-shadow: none !important;
    padding: 1rem !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 10, 0.45);
    z-index: 99;
    backdrop-filter: blur(3px);
  }

  .nav-overlay.open {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-card {
    max-width: 420px;
  }

  .promise-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: -1.25rem;
  }

  .promise-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .promise-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .promise-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .about-grid,
  .location-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }

  .amenities-grid,
  .amenity-cats,
  .rules-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .sleep-grid,
  .reviews-grid,
  .rules-grid,
  .exp-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .host-badges {
    margin-left: 0;
    width: 100%;
  }

  .mobile-book-bar {
    display: block;
  }

  .back-top {
    bottom: calc(var(--mobile-bar-h) + 0.85rem);
  }

  .tb-div {
    display: none;
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 72px;
  }

  .container,
  .hero-inner,
  .hero-bottom-inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }
  .logo-name {
    font-size: 1.45rem;
  }
  .logo-tag {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }
  .logo-rule {
    width: 22px;
    margin: 0.2rem 0 0.15rem;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 1.25rem) 0 4.75rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .hero .lead {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-card {
    max-width: none;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .promise-card {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .promise-card:last-child {
    border-bottom: none;
  }

  .section {
    padding: 3.35rem 0;
  }

  .amenities-grid,
  .amenity-cats,
  .rules-grid-4,
  .season-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

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

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
  }

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

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

  .exp-visual {
    height: 180px;
  }
}

@media (max-width: 380px) {
  .logo-tag {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-meta span:nth-child(n + 3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-slide img {
    transform: none !important;
  }
  .hero-progress button.active::after {
    animation: none;
    width: 100%;
  }
}
