:root {
  --ink: #17211d;
  --muted: #68706a;
  --paper: #fbfaf6;
  --mist: #eef4f0;
  --sage: #24483a;
  --sage-soft: #d9e7df;
  --orchid: #7c3f66;
  --coral: #de7662;
  --sky: #cfe8ec;
  --line: rgba(23, 33, 29, 0.13);
  --shadow: 0 26px 70px rgba(23, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(207, 232, 236, 0.42), transparent 540px),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.82);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(23, 33, 29, 0.75);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--coral);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--sage);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
  background: #101814;
  color: #fff;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  animation: settleImage 1200ms ease forwards;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 24, 20, 0.05), rgba(16, 24, 20, 0.44) 48%, rgba(16, 24, 20, 0.9));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px max(32px, calc((100vw - 1120px) / 2)) 78px 56px;
}

.hero-copy > * {
  animation: riseIn 700ms ease both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 150ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 220ms;
}

.hero-card {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  width: min(340px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.82);
  box-shadow: var(--shadow);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.hero-card span,
.form-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.detail-panel h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(58px, 8vw, 112px);
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: var(--coral);
  color: #190f0c;
  box-shadow: 0 16px 34px rgba(222, 118, 98, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button:hover,
.header-cta:hover,
.quick-chip:hover,
.mood-button:hover,
.schedule-list button:hover {
  transform: translateY(-2px);
}

.quick-book {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 610px;
  margin-top: 24px;
}

.quick-chip {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.quick-chip.is-active {
  background: #fff;
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.detail-panel h2,
.booking-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: stretch;
}

.intro-text {
  display: grid;
  align-content: center;
  padding: 44px;
  border-left: 5px solid var(--sage);
  background: linear-gradient(135deg, var(--mist), rgba(207, 232, 236, 0.55));
}

.intro-text p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.intro-text p + p {
  margin-top: 20px;
}

.mood-player {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.mood-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mood-button span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--sage), var(--sky), var(--coral), var(--sage));
  box-shadow: inset 0 0 0 7px #fff;
}

.mood-button.is-active {
  border-color: rgba(36, 72, 58, 0.55);
  background: #fff;
}

.mood-player p {
  min-height: 28px;
  margin-top: 8px;
  font-size: 15px;
}

.portrait-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.portrait-card img {
  height: 440px;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.services-section {
  padding-top: 28px;
}

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

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  outline: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card.featured {
  background: var(--sage);
  color: #fff;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-selected {
  transform: translateY(-6px);
  border-color: rgba(222, 118, 98, 0.72);
  box-shadow: 0 22px 48px rgba(23, 33, 29, 0.13);
}

.service-card.is-selected {
  outline: 3px solid rgba(222, 118, 98, 0.2);
}

.service-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orchid);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .service-label {
  color: var(--coral);
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.featured .service-meta {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-meta span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.featured .service-meta span {
  color: rgba(255, 255, 255, 0.64);
}

.service-meta strong {
  font-size: 26px;
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.media-panel img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.detail-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 26px;
}

.schedule-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: padding 180ms ease, transform 180ms ease;
}

.schedule-list button:hover {
  padding-right: 8px;
  padding-left: 8px;
}

.schedule-list span {
  color: rgba(255, 255, 255, 0.62);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.policy-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.payment-box {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(36, 72, 58, 0.18);
  border-radius: 8px;
  background: #fff;
}

.payment-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-box strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  line-height: 1.25;
}

.payment-box p {
  margin: 5px 0 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-summary {
  padding: 18px;
  border: 1px solid rgba(36, 72, 58, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mist), #fff);
}

.form-summary strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.25;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  text-transform: none;
}

.booking-form input[type="file"] {
  display: grid;
  align-content: center;
  padding: 13px 14px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft);
}

.form-button {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
}

.booking-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.admin-section {
  padding-top: 28px;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.admin-toolbar span,
.admin-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-toolbar strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.dark-button {
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.admin-empty {
  padding: 34px 22px;
  color: var(--muted);
  font-weight: 800;
}

.admin-list {
  display: grid;
}

.admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.admin-card:first-child {
  border-top: 0;
}

.admin-card h3 {
  margin: 4px 0 8px;
  font-size: 21px;
}

.admin-card p {
  margin: 0;
  color: var(--muted);
}

.admin-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.admin-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-actions {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.admin-actions a,
.admin-actions button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.admin-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials-section {
  padding-top: 28px;
}

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

.social-grid a {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-grid a:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(222, 118, 98, 0.55);
}

.social-grid span {
  color: var(--orchid);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-grid strong {
  display: block;
  margin-top: 44px;
  font-size: 20px;
  line-height: 1.2;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--sage);
  font-weight: 800;
}

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

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settleImage {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.nav-open {
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .site-header.nav-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 18px 0 4px;
  }

  .site-header.nav-open .nav-links a {
    padding: 10px 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(16, 24, 20, 0.08), rgba(16, 24, 20, 0.84) 58%, #101814);
  }

  .hero-media {
    min-height: 55vh;
  }

  .hero-card {
    right: 24px;
    bottom: 18px;
    left: 24px;
    width: auto;
  }

  .hero-copy {
    margin-top: -120px;
    padding: 0 24px 46px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section,
  .split-section,
  .site-footer {
    width: min(100% - 24px, 680px);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading,
  .intro-grid,
  .services-grid,
  .split-section,
  .booking-section,
  .admin-card,
  .social-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .media-panel img {
    min-height: 340px;
  }

  .detail-panel {
    padding: 34px 24px;
  }

  .footer-links {
    justify-items: start;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-media {
    min-height: 61vh;
  }

  .hero-copy {
    margin-top: -160px;
  }

  .hero-actions {
    display: grid;
  }

  .quick-book {
    display: grid;
  }

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

  .intro-text,
  .service-card,
  .booking-form {
    padding: 22px;
  }

  .portrait-card img {
    height: 390px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-meta {
    display: grid;
    align-items: start;
  }

  .schedule-list button {
    display: grid;
  }
}
