:root {
  --ink: #171313;
  --muted: #6d6260;
  --paper: #fbf8f6;
  --panel: #ffffff;
  --line: #e8ded9;
  --blush: #f5dbe0;
  --rose: #d65371;
  --rose-dark: #9f2e4a;
  --mint: #d7eee5;
  --sage: #5f756c;
  --chrome: #ebe9e6;
  --shadow: 0 24px 70px rgba(40, 24, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(232, 222, 217, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 222, 217, 0.48) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(232, 222, 217, 0.8);
  background: rgba(251, 248, 246, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(23, 19, 19, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--blush), var(--mint));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: stretch;
  padding: clamp(18px, 3vw, 40px);
  gap: clamp(18px, 3vw, 34px);
}

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

.hero-image {
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(23, 19, 19, 0.08), rgba(23, 19, 19, 0.12)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1500&q=85") center / cover;
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  max-width: 310px;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 44px rgba(23, 19, 19, 0.18);
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(214, 83, 113, 0.16);
}

.status-panel strong,
.status-panel small {
  display: block;
}

.status-panel small {
  color: var(--muted);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 219, 224, 0.82), rgba(215, 238, 229, 0.74)),
    var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 9px;
  font-size: 19px;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4c403d;
  font-size: 19px;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.secondary {
  border: 1px solid rgba(23, 19, 19, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.quick-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.quick-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(23, 19, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 4vw, 56px);
}

.intro,
.social-proof,
.visit,
.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro p:last-child,
.proof-copy p,
.reviews p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.social-proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(214, 83, 113, 0.18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(215, 238, 229, 0.9), transparent 34%),
    rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--rose-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.review-stack {
  display: grid;
  gap: 14px;
  perspective: 1200px;
}

.review-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(232, 222, 217, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(40, 24, 21, 0.1);
  transform: rotate(-1deg);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.review-card:first-child {
  transform: rotate(-1.4deg) translateX(-3px);
}

.review-card:nth-child(even) {
  transform: rotate(1deg);
}

.review-card:hover {
  z-index: 1;
  background: #fff;
  box-shadow: 0 26px 70px rgba(40, 24, 21, 0.16);
  transform: translateY(-4px) rotate(0deg);
}

.review-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

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

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.services {
  background: rgba(255, 255, 255, 0.48);
}

.concept-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 219, 224, 0.64), transparent 30%),
    rgba(255, 255, 255, 0.58);
}

.concept-intro {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.travel-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.travel-panel,
.concept-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(40, 24, 21, 0.1);
}

.travel-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(245, 219, 224, 0.9), rgba(215, 238, 229, 0.76)),
    #fff;
}

.travel-panel h3,
.concept-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.travel-panel p,
.concept-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.travel-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.travel-panel li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.travel-panel li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose);
  content: "";
}

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

.concept-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.travel-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.travel-note strong,
.travel-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.travel-note strong {
  margin-right: 4px;
}

.travel-note span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(245, 219, 224, 0.64);
  font-weight: 800;
}

.service-studio {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-picker {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(40, 24, 21, 0.08);
}

.service-tab {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-tab:hover {
  transform: translateX(4px);
  color: var(--ink);
  background: rgba(245, 219, 224, 0.45);
}

.service-tab.active {
  color: #fff;
  background: var(--ink);
  border-color: rgba(23, 19, 19, 0.1);
  box-shadow: 0 14px 30px rgba(23, 19, 19, 0.18);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  min-height: 520px;
}

.service-visual,
.service-detail {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--chrome);
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease, filter 600ms ease;
}

.service-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 219, 224, 0.38), transparent 34%),
    linear-gradient(to top, rgba(23, 19, 19, 0.54), transparent 52%);
  pointer-events: none;
}

.service-visual span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.service-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 219, 224, 0.7)),
    #fff;
}

.service-detail h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.service-detail p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 24px;
  color: #493d3a;
  font-weight: 800;
}

.service-detail li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
  content: "";
}

.service-detail .button {
  align-self: flex-start;
  margin-top: 28px;
}

.pop-in {
  animation: pop-in 360ms ease both;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

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

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 7vw, 98px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
}

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

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

.booking-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.booking-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.booking-card-header strong {
  color: #fff;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.slot-list button,
.request-button,
select {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  font: inherit;
}

.slot-list button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.booking-card label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

select {
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.request-button {
  margin-top: 12px;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
}

.fine-print {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 42px rgba(40, 24, 21, 0.1);
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(23, 19, 19, 0.64), rgba(23, 19, 19, 0.04));
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-weight: 900;
}

.gallery-item.one,
.gallery-item.five {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.two,
.gallery-item.three,
.gallery-item.four,
.gallery-item.six {
  grid-column: span 2;
}

.gallery-item.one {
  background-image: url("https://images.unsplash.com/photo-1610992015732-2449b76344bc?auto=format&fit=crop&w=900&q=85");
}

.gallery-item.two {
  background-image: url("https://images.unsplash.com/photo-1607779097040-26e80aa78e66?auto=format&fit=crop&w=900&q=85");
}

.gallery-item.three {
  background-image: url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=900&q=85");
}

.gallery-item.four {
  background-image: url("https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=900&q=85");
}

.gallery-item.five {
  background-image: url("https://images.unsplash.com/photo-1599948128020-9a44505b0d1b?auto=format&fit=crop&w=900&q=85");
}

.gallery-item.six {
  background-image: url("https://images.unsplash.com/photo-1604654894611-6973b376cbde?auto=format&fit=crop&w=900&q=85");
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews {
  align-items: center;
  color: var(--ink);
  background: var(--mint);
}

.reviews .button.primary {
  justify-self: start;
  background: var(--ink);
}

.visit {
  background: rgba(255, 255, 255, 0.68);
}

.visit-details p {
  color: var(--muted);
  font-size: 19px;
}

.hours {
  margin-top: 26px;
}

.hours p {
  margin: 4px 0;
}

.visit-note {
  display: inline-flex;
  margin-top: 14px !important;
  padding: 10px 13px;
  border: 1px solid rgba(214, 83, 113, 0.2);
  border-radius: 999px;
  color: var(--rose-dark) !important;
  background: rgba(245, 219, 224, 0.58);
  font-size: 14px !important;
  font-weight: 900;
}

.map-card {
  display: grid;
  min-height: 380px;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(214, 83, 113, 0.16), rgba(215, 238, 229, 0.82)),
    var(--panel);
  text-align: center;
  box-shadow: var(--shadow);
}

.map-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .hero,
  .intro,
  .social-proof,
  .booking-band,
  .visit,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .service-studio,
  .service-showcase,
  .travel-layout,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .service-picker {
    display: flex;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .service-tab {
    min-width: max-content;
    scroll-snap-align: start;
  }

  .service-visual,
  .service-visual img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
  }

  .header-call {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    padding: 12px;
  }

  .hero-media,
  .hero-image {
    min-height: 360px;
  }

  .status-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .hero-content {
    padding: 34px 20px;
  }

  h1 {
    font-size: 46px;
  }

  .slot-list {
    grid-template-columns: 1fr;
  }

  .service-visual,
  .service-visual img {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.one,
  .gallery-item.two,
  .gallery-item.three,
  .gallery-item.four,
  .gallery-item.five,
  .gallery-item.six {
    grid-column: auto;
    grid-row: auto;
  }
}
