:root {
  --color-bg: #f4f2ee;
  --color-text: #2e2b29;
  --color-text-muted: #5d5956;
  --color-primary: #d8d2cb;
  --color-primary-strong: #5b5550;
  --color-surface-soft: #e8e2db;
  --color-grid-dots: rgba(91, 85, 80, 0.12);
  --color-accent-dark: #424749;
  --color-accent-dark-soft: #52585a;
  --color-accent-light: #f5f1ea;
  --color-booking-bg: #8e8077;
  --color-section-soft: #efebe4;
  --color-section-warm: #e6ddd2;
  --layout-max-width: 78rem;
  --layout-gutter: 2rem;
}

/* :root {
  --color-bg: #f5f4fb;
  --color-text: #2f2e36;
  --color-text-muted: #5b5b5f;
  --color-primary: #9fc4f2;
  --color-primary-strong: #2f6fd6;
  --color-surface-soft: #d9e9fb;
  --color-grid-dots: rgba(47, 111, 214, 0.14);
  --layout-max-width: 78rem;
  --layout-gutter: 2rem;
} */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(
    circle at center,
    var(--color-grid-dots) 1.2px,
    transparent 1px
  );
  background-size: 20px 20px;
}

.site-header,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content,
.site-footer {
  animation: hero-content-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  transform-origin: center center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--layout-max-width), calc(100% - (2 * var(--layout-gutter))));
  margin-inline: auto;
  padding: 1.75rem 0 0;
}

.brand,
.nav a {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.brand-icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  gap: 4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 760px);
  align-items: center;
  gap: 1rem;
  width: min(var(--layout-max-width), calc(100% - (2 * var(--layout-gutter))));
  margin-inline: auto;
  padding: 3rem 0 4rem;
  flex: 1;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(var(--layout-max-width), calc(100% - (2 * var(--layout-gutter))));
  margin-inline: auto;
  padding: 0 0 1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.booking-section {
  padding-bottom: 4rem;
}

.booking-section.landing-section-dark {
  background: var(--color-booking-bg);
}

.booking-shell {
  max-width: 48rem;
}

.booking-section.landing-section-dark .section-kicker,
.booking-section.landing-section-dark .section-heading h2,
.booking-section.landing-section-dark .booking-description,
.booking-section.landing-section-dark .form-field span {
  color: #231f1c;
}

.booking-heading {
  margin-inline: auto;
  text-align: center;
}

.booking-description {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  color: rgba(245, 241, 234, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
}

.booking-description a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.booking-form {
  margin-top: 2rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.form-field span {
  color: var(--color-accent-light);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(35, 31, 28, 0.16);
  border-radius: 1rem;
  background: rgba(244, 242, 238, 0.42);
  color: #231f1c;
  padding: 1rem 1.05rem;
  font: inherit;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(35, 31, 28, 0.52);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(35, 31, 28, 0.28);
  background: rgba(244, 242, 238, 0.62);
}

.form-field-full {
  margin-top: 1rem;
}

.booking-submit {
  margin: 1.5rem auto 0;
  display: flex;
}

.landing-section {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.landing-section-dark {
  background: var(--color-accent-dark);
  color: var(--color-accent-light);
}

.landing-section-soft {
  background: var(--color-section-soft);
}

.landing-section-dark .section-kicker,
.landing-section-dark .intro-grid p,
.landing-section-dark .feature-card p,
.landing-section-dark .practical-panel p,
.landing-section-dark .info-list {
  color: rgba(245, 241, 234, 0.78);
}

.landing-section-dark .section-heading h2,
.landing-section-dark .feature-card h3,
.landing-section-dark .practical-panel h3,
.landing-section-dark .feature-card-label {
  color: var(--color-accent-light);
}

.landing-section-dark .feature-card,
.landing-section-dark .practical-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-shell {
  width: min(var(--layout-max-width), calc(100% - (2 * var(--layout-gutter))));
  margin-inline: auto;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-section-intro .section-kicker {
  color: #d55240;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 26rem);
  gap: 2.5rem;
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.intro-grid,
.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.2rem;
}

.intro-grid p,
.feature-card p,
.practical-panel p,
.info-list {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.2rem;
}

.intro-collage {
  position: relative;
  min-height: 28rem;
}

.intro-collage figure,
.floating-shot,
.photo-band-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(91, 85, 80, 0.1);
  box-shadow: 0 20px 44px rgba(46, 43, 41, 0.09);
  background: rgba(255, 255, 255, 0.4);
}

.intro-collage-main,
.intro-collage-side,
.floating-shot img,
.photo-band-card img {
  display: block;
}

.intro-collage-main {
  position: absolute;
  inset: 2.2rem 3.8rem 0 0;
  transform: rotate(-4deg);
}

.intro-collage-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 11rem;
  height: 13rem;
  transform: rotate(7deg);
}

.intro-collage img,
.floating-shot img,
.photo-band-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card {
  margin: 0;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(91, 85, 80, 0.1);
  box-shadow: 0 18px 40px rgba(46, 43, 41, 0.06);
}

.gallery-card-large {
  grid-column: span 1;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card,
.practical-panel {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(91, 85, 80, 0.1);
  border-radius: 1.5rem;
  padding: 1.6rem;
  backdrop-filter: blur(6px);
}

.feature-card-label {
  margin: 0 0 1.25rem;
  color: var(--color-primary-strong);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.feature-card h3,
.practical-panel h3 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
}

.feature-inline-image {
  margin: 1.1rem 0 0;
  height: 9.5rem;
  overflow: hidden;
  border-radius: 1rem;
}

.feature-inline-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practical-panel-accent {
  background: var(--color-surface-soft);
}

.practical-panel-accent .button {
  margin-top: 1.5rem;
}

.location-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.location-strip-card {
  margin: 0;
  overflow: hidden;
  min-height: 12rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(91, 85, 80, 0.1);
  box-shadow: 0 18px 40px rgba(46, 43, 41, 0.06);
}

.location-strip-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  padding-left: 1.2rem;
}

.info-list li + li {
  margin-top: 0.35rem;
}

.copy {
  max-width: 40rem;
  padding-top: 2.5rem;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: #e87361;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 1.2rem;
  color: var(--color-text);
  z-index: 1;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: min(100%, 36rem);
  height: 0.9rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 18' preserveAspectRatio='none'%3E%3Cpath d='M4 12.5C68 4.5 138 15.5 203 12.2C263 9.2 330 7.3 392 9.8C453 12.2 521 8.8 596 11.4' fill='none' stroke='%232e2b29' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

h1 span {
  display: inline;
  background: transparent;
  color: var(--color-text);
  padding: 0;
  line-height: 1.22;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.description {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: var(--color-text-muted);
  font-size: 1.25rem;
  line-height: 1.95;
  position: relative;
  z-index: 1;
}

.actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  height: 3.6rem;
  padding: 0 1.75rem;
  border-radius: 0.8rem;
  border: 2px solid var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}

.button-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover .button-content {
  transform: scale(1.035);
}

.button svg {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-primary {
  background: var(--color-primary);
  border-color: transparent;
}

.button-secondary {
  background: transparent;
}

.visual {
  position: relative;
  min-height: 38rem;
}

.portrait-card {
  --frame-padding: 1.15rem;
  --frame-radius: 2.75rem;
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 34rem;
  aspect-ratio: 1;
}

.floating-shot {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.55rem;
}

.floating-shot-top {
  right: 1rem;
  top: -1.4rem;
  width: 9rem;
  height: 11rem;
  transform: rotate(7deg);
}

.floating-shot-bottom {
  left: -2rem;
  bottom: 0.2rem;
  width: 10rem;
  height: 7.4rem;
  transform: rotate(-8deg);
}

.portrait-interaction {
  position: absolute;
  inset: 0;
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.portrait-card:hover .portrait-interaction {
  transform: scale(1.025);
}

.portrait-square {
  position: absolute;
  inset: 0;
  border-radius: var(--frame-radius);
  background: var(--color-accent-dark-soft);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 14px rgba(255, 255, 255, 0.18);
  padding: var(--frame-padding);
  transform: rotate(4deg);
  transform-origin: center;
  animation: portrait-float 12s ease-in-out infinite;
}

.portrait-square img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--frame-radius) - var(--frame-padding));
}

.photo-band {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 1.4rem;
  align-items: end;
}

.landing-section-gallery-band {
  padding: 0;
  min-height: 23rem;
  overflow: hidden;
}

.full-band-image {
  display: block;
  width: 100%;
  height: 23rem;
  object-fit: cover;
}

.photo-band-card {
  min-height: 15rem;
}

.photo-band-card-left {
  transform: rotate(-5deg);
}

.photo-band-card-center {
  min-height: 21rem;
  transform: translateY(1rem);
}

.photo-band-card-right {
  transform: rotate(5deg);
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes portrait-float {
  0%,
  100% {
    transform: rotate(4deg) scale(0.98);
  }

  50% {
    transform: rotate(4deg) scale(1.025);
  }
}

@media (max-width: 1180px) {
  .site-header {
    width: min(
      var(--layout-max-width),
      calc(100% - (2 * var(--layout-gutter)))
    );
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 2rem;
    width: min(
      var(--layout-max-width),
      calc(100% - (2 * var(--layout-gutter)))
    );
    padding: 2rem 0 4rem;
  }

  .landing-section-dark {
    padding: 4rem 0;
  }

  .site-footer {
    width: min(
      var(--layout-max-width),
      calc(100% - (2 * var(--layout-gutter)))
    );
  }

  .copy {
    max-width: 38rem;
    padding-top: 1rem;
  }

  .feature-grid,
  .intro-grid,
  .practical-grid,
  .gallery-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .intro-layout,
  .photo-band,
  .location-strip {
    grid-template-columns: 1fr;
  }

  .visual {
    order: -1;
    min-height: 30rem;
  }

  .portrait-card {
    --frame-padding: 1rem;
    --frame-radius: 2.25rem;
    right: 50%;
    top: 0;
    width: 28rem;
    transform: translateX(50%);
  }

  .intro-collage {
    min-height: 22rem;
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .site-footer,
  .portrait-square {
    animation: none;
    transform: none;
  }

  .portrait-interaction {
    transition: none;
  }

  .portrait-card:hover .portrait-interaction {
    transform: none;
  }

  .button-content {
    transition: none;
  }

  .button:hover .button-content {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-content {
    gap: 3rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  h1 {
    font-size: 3rem;
    padding-bottom: 1rem;
  }

  h1 span {
    line-height: 1.28;
  }

  h1::after {
    bottom: 0.1rem;
    height: 0.75rem;
  }

  .description {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .landing-section {
    padding: 3.5rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .feature-card,
  .practical-panel {
    border-radius: 1.2rem;
    padding: 1.25rem;
  }

  .feature-inline-image,
  .location-strip-card {
    min-height: 11rem;
  }

  .landing-section-gallery-band {
    min-height: 16rem;
  }

  .full-band-image {
    height: 16rem;
  }

  .actions {
    flex-wrap: wrap;
  }

  .button {
    min-width: 9rem;
  }

  .visual {
    min-height: 0;
    display: flex;
    justify-content: center;
  }

  .floating-shot {
    display: none;
  }

  .copy {
    padding-top: 0;
  }

  .portrait-card {
    --frame-padding: 0.8rem;
    --frame-radius: 1.5rem;
    position: relative;
    right: auto;
    top: auto;
    width: 17rem;
    transform: none;
  }

  .intro-collage {
    min-height: 18rem;
  }

  .intro-collage-main {
    inset: 1.5rem 2.2rem 0 0;
  }

  .intro-collage-side {
    width: 7.5rem;
    height: 9rem;
  }

  .photo-band-card,
  .photo-band-card-center {
    min-height: 14rem;
    transform: none;
  }

  .photo-band-single {
    min-height: 16rem;
  }
}
