:root {
  --ink: #0f1713;
  --ink-soft: #17231d;
  --gold: #c8a96b;
  --cream: #f5f1ea;
  --stone: #b89b73;
  --white: #ffffff;
  --line: rgba(200, 169, 107, 0.32);
  color-scheme: dark;
}

@font-face {
  font-family: TafelbergSans;
  src: local("Segoe UI");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: TafelbergSans, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
  background: rgba(15, 23, 19, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1;
}

.brand-text span {
  color: var(--gold);
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(245, 241, 234, 0.82);
  text-decoration: none;
}

.button,
button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, var(--gold), #a87b35);
  color: #101510;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
}

.button.ghost {
  background: transparent;
  color: var(--cream);
}

.hero {
  background: var(--ink);
  padding-top: 76px;
  overflow: hidden;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  width: min(100%, 1440px);
  max-width: 1440px;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(460px, 48%) minmax(0, 52%);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 3vw, 4rem);
  background: var(--ink);
}

.hero-copy > .button {
  align-self: flex-start;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 19, 0.88) 0%,
    rgba(15, 23, 19, 0.55) 22%,
    rgba(15, 23, 19, 0.16) 48%,
    rgba(15, 23, 19, 0) 75%
  );
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.9rem, 4.45vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  max-width: 880px;
  font-size: clamp(2.75rem, 3.35vw, 4.2rem);
  line-height: 0.96;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.hero-title span {
  display: block;
  color: var(--cream);
  white-space: nowrap;
}

.hero-title .gold {
  color: var(--gold);
}

h1 span,
h2 span {
  color: var(--gold);
}

.hero-title span {
  color: var(--cream);
}

.hero-title .gold {
  color: var(--gold);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
  line-height: 1.1;
  color: #17140f;
}

h3 {
  font-size: 1.45rem;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 34px;
  color: rgba(245, 241, 234, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin: 0 0 38px;
}

.hero .hero-facts {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.fact {
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: rgba(245, 241, 234, 0.82);
}

.fact strong {
  display: block;
  color: var(--white);
}

.cream {
  background: var(--cream);
  color: #221c14;
}

.dark {
  background:
    radial-gradient(circle at 85% 0, rgba(200, 169, 107, 0.14), transparent 38%),
    var(--ink);
  color: var(--cream);
}

.section {
  padding: clamp(58px, 7vw, 96px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.split > *,
.package-grid > *,
.calendar-layout > *,
.inquiry-wrap > * {
  min-width: 0;
}

.split img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.intro-mark {
  position: absolute;
  right: 7%;
  width: min(220px, 30vw);
  opacity: 0.17;
}

.section-copy {
  position: relative;
}

.section-copy p {
  max-width: 560px;
  color: rgba(34, 28, 20, 0.78);
}

.section-copy h2 {
  max-width: 560px;
}

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

.feature,
.addon,
.calendar,
.form-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature {
  min-height: 142px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.feature .icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border: 1px solid rgba(200, 169, 107, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.feature h3 {
  font-size: 1.08rem;
  line-height: 1.18;
}

.feature p {
  margin-bottom: 0;
  color: rgba(245, 241, 234, 0.74);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 1px;
  background: rgba(200, 169, 107, 0.42);
  z-index: 0;
}

.time {
  position: relative;
  z-index: 1;
  padding-top: 58px;
  color: #2a2118;
}

.time::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200, 169, 107, 0.16);
  transform: translateY(-50%);
}

.time strong {
  display: block;
  margin-bottom: 8px;
  color: #17140f;
}

.package-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
}

.package-panel {
  padding: clamp(30px, 5vw, 56px);
  background: var(--ink);
  color: var(--cream);
}

.price {
  margin: 18px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.25vw, 2.65rem);
  line-height: 1.1;
  white-space: nowrap;
}

.price small {
  font-size: 0.48em;
  white-space: nowrap;
}

.check-list,
.addon-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
}

.addon-panel {
  padding: clamp(30px, 5vw, 56px);
  background: #f0e7db;
}

.addon-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.addon {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.42);
  color: #201810;
}

.booking-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.booking-types article {
  border-top: 1px solid var(--gold);
  padding-top: 18px;
}

.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  align-items: start;
}

.calendar {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day,
.weekday {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-align: center;
}

.weekday {
  min-height: 24px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.day {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 241, 234, 0.82);
}

.day.available {
  border-color: rgba(200, 169, 107, 0.78);
  color: var(--white);
  cursor: pointer;
}

.day.requested {
  color: #e0c98e;
}

.day.booked,
.day.blocked,
.day.inactive {
  opacity: 0.38;
}

.day.selected {
  background: var(--gold);
  color: #111611;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(245, 241, 234, 0.78);
  font-size: 0.9rem;
}

.legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}

.legend .available::before { background: var(--gold); }
.legend .requested::before { background: #e0c98e; }
.legend .booked::before { background: #7d8580; }
.legend .blocked::before { background: #5b4038; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery img:nth-child(1),
.gallery img:nth-child(6) {
  grid-column: span 2;
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.inquiry-copy {
  max-width: 520px;
}

.inquiry-copy h2 {
  max-width: 500px;
  font-size: clamp(1.85rem, 2.55vw, 2.45rem);
  line-height: 1.12;
}

.inquiry-copy p:not(.kicker) {
  max-width: 460px;
  color: rgba(245, 241, 234, 0.78);
}

.form-panel {
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.045);
}

.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.step-dot.active {
  background: var(--gold);
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(245, 241, 234, 0.82);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: inherit;
  padding: 12px 13px;
}

select option {
  color: #111611;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

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

.checkboxes label,
.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkboxes input,
.privacy input {
  width: auto;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.hint {
  color: var(--gold);
  font-size: 0.9rem;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #0a0f0c;
  color: rgba(245, 241, 234, 0.72);
}

.footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: var(--cream);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

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

  .hero-media {
    order: -1;
    min-height: 44vh;
  }

  .hero-copy {
    padding: 3rem 1.5rem;
  }

  .split,
  .package-grid,
  .calendar-layout,
  .inquiry-wrap {
    grid-template-columns: 1fr;
  }

  .features,
  .booking-types {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .nav > .button {
    display: none;
  }

  .brand-text {
    letter-spacing: 0.08em;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-inner {
    width: 100%;
    min-height: 0;
  }

  .hero-media {
    min-height: 340px;
    height: 44vh;
  }

  .hero-media::before {
    background: linear-gradient(0deg, rgba(15, 23, 19, 0.72) 0%, rgba(15, 23, 19, 0.08) 62%);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 3rem 1rem;
  }

  .hero-title,
  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3.4rem);
    line-height: 1.04;
  }

  .hero-title span {
    white-space: normal;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    line-height: 1.12;
  }

  .inquiry-copy h2 {
    font-size: clamp(1.45rem, 6.3vw, 1.68rem);
    line-height: 1.14;
  }

  .intro-mark {
    display: none;
  }

  .hero-text {
    max-width: 360px;
    font-size: 1rem;
    margin: 26px 0 34px;
  }

  .hero-facts {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
  }

  .features,
  .timeline,
  .addon-list,
  .booking-types,
  .field-grid,
  .checkboxes {
    grid-template-columns: 1fr;
  }

  .price {
    white-space: normal;
  }

  .gallery img,
  .gallery img:nth-child(1),
  .gallery img:nth-child(6) {
    grid-column: span 1;
    height: 220px;
  }

  .footer .section-inner {
    display: grid;
  }
}
