:root {
  --paper: #ffffff;
  --ink: #111316;
  --muted: #6f737b;
  --line: #e4e1dc;
  --panel: #f6f4f1;
  --sand: #e8dfd2;
  --stone: #c8c1b8;
  --glow: rgba(184, 151, 104, 0.28);
  --charcoal: #24262b;
  --focus: rgba(17, 19, 22, 0.18);
  --shadow: 0 24px 70px rgba(17, 19, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 9%, rgba(232, 223, 210, 0.72), transparent 27vw),
    radial-gradient(circle at 88% 18%, rgba(200, 193, 184, 0.35), transparent 22vw),
    var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3f4248;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.photo-lead {
  position: relative;
  padding: clamp(34px, 5vw, 66px) clamp(16px, 4vw, 56px) clamp(48px, 8vw, 92px);
}

.photo-lead::before {
  position: absolute;
  inset: 9% 7% auto auto;
  z-index: -1;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  content: "";
  background: radial-gradient(circle, var(--glow), transparent 68%);
  filter: blur(10px);
}

.photo-title {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #806747;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8.7vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.portfolio-grid {
  column-count: 3;
  column-gap: clamp(14px, 1.6vw, 22px);
}

.portfolio-photo {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  background: white;
  break-inside: avoid;
  box-shadow: 0 18px 56px rgba(17, 19, 22, 0.09), 0 0 48px rgba(184, 151, 104, 0.18);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.portfolio-photo::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 70% 16%, rgba(255, 246, 230, 0.28), transparent 30%);
  opacity: 0.78;
  transition: opacity 260ms ease;
}

.portfolio-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 84px rgba(17, 19, 22, 0.14), 0 0 72px rgba(184, 151, 104, 0.32);
}

.portfolio-photo:hover::before {
  opacity: 1;
}

.portfolio-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.04) contrast(1.03) saturate(1.02);
  transition: transform 680ms ease, filter 680ms ease;
}

.portfolio-photo:hover img {
  transform: scale(1.04);
  filter: brightness(1.08) contrast(1.05) saturate(1.04);
}

.portfolio-photo.is-visible img {
  animation: imageSettle 760ms ease both;
}

.portfolio-photo:nth-child(1) img {
  object-position: center center;
}

.portfolio-photo:nth-child(2) img,
.portfolio-photo:nth-child(3) img {
  object-position: center center;
}

.portfolio-photo:nth-child(4) img,
.portfolio-photo:nth-child(6) img,
.portfolio-photo:nth-child(8) img {
  object-position: center center;
}

figcaption {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 16px;
  background: white;
  z-index: 3;
}

figcaption span {
  color: var(--muted);
  font-weight: 900;
}

figcaption strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-align: right;
}

.portfolio-info {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(24px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--line);
}

.portfolio-info p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.intro-section,
.profile-section,
.literature-section,
.contact-hero,
.booking-flow,
.booking-section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 4vw, 56px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 244, 241, 0.96)),
    var(--panel);
}

.intro-copy {
  max-width: 900px;
}

.intro-copy p,
.booking-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.quick-stats {
  display: grid;
  align-content: center;
  gap: 14px;
}

.quick-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #d8d2ca;
}

.quick-stats strong {
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.9;
}

.quick-stats span {
  max-width: 160px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-card {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.detail-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card strong {
  display: block;
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  line-height: 1.12;
}

.literature-section {
  background: white;
}

.literature-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  padding-bottom: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}

.literature-header h2 {
  margin-bottom: 0;
}

.literature-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
}

.literature-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(30px, 5vw, 58px);
}

.literature-body article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.literature-body h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  line-height: 1;
}

.literature-body p,
.availability-list {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.availability-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  min-height: calc(78vh - 74px);
}

.contact-hero-copy {
  max-width: 880px;
}

.contact-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 56px rgba(17, 19, 22, 0.09), 0 0 48px rgba(184, 151, 104, 0.18);
  backdrop-filter: blur(14px);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-card div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.booking-flow {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(246, 244, 241, 0.97)),
    var(--panel);
}

.booking-flow-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.booking-flow-heading p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-step {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 16px 44px rgba(17, 19, 22, 0.06);
}

.step-label {
  display: grid;
  align-content: start;
  gap: 12px;
}

.step-label span {
  color: #9b7a4e;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
}

.step-label strong {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
}

.form-grid,
.calendar-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span,
.option-grid legend {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
  padding: 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  outline: 4px solid var(--focus);
}

.calendar-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8c3a6;
  background: linear-gradient(135deg, rgba(184, 151, 104, 0.15), rgba(255, 255, 255, 0.92));
}

.calendar-summary strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-summary span {
  color: var(--muted);
  font-weight: 800;
}

.preview-step {
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 151, 104, 0.18), transparent 28vw),
    white;
}

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

.booking-preview div {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.booking-preview span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-preview strong {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  line-height: 1.35;
}

.preview-message {
  grid-column: 1 / -1;
}

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

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.option-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fbfaf8;
  font-weight: 800;
}

.option-grid input {
  width: auto;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--ink);
  color: white;
}

.form-submit-row p {
  max-width: 620px;
  margin: 0;
  color: #d9d9d9;
  line-height: 1.6;
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(circle at 82% 24%, rgba(184, 151, 104, 0.28), transparent 24vw),
    var(--ink);
  color: white;
}

.booking-copy {
  max-width: 850px;
}

.booking-copy .eyebrow {
  color: var(--sand);
}

.booking-copy p {
  color: #d9d9d9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid white;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  outline: none;
}

.button.primary {
  background: white;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #5f6268;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer span {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes imageSettle {
  from {
    transform: scale(1.035);
    filter: brightness(0.98) contrast(0.98) saturate(0.98);
  }

  to {
    transform: scale(1);
    filter: brightness(1.04) contrast(1.03) saturate(1.02);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .portfolio-grid {
    column-count: 2;
  }

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

  .literature-header,
  .literature-body,
  .contact-hero,
  .form-step {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .photo-title {
    display: block;
  }

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

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

  .portfolio-grid {
    column-count: 1;
  }

  .booking-section,
  .form-submit-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-stats span {
    text-align: left;
  }

}

@media (max-width: 520px) {
  .brand-mark strong {
    max-width: 150px;
    line-height: 1.05;
  }

  h1 {
    font-size: 3.1rem;
  }

  figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  figcaption strong {
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .calendar-panel,
  .option-grid,
  .booking-preview {
    grid-template-columns: 1fr;
  }

}
