:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #fff6f3;
  --ink: #2b1720;
  --muted: #7d6770;
  --rose: #c77f96;
  --rose-dark: #6d0f2b;
  --gold: #d8b56d;
  --line: rgba(58, 6, 21, 0.12);
  --shadow: 0 24px 60px rgba(58, 6, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 181, 109, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(109, 15, 43, 0.1), transparent 28rem),
    linear-gradient(180deg, #fffaf6 0%, #fff6f3 48%, #fffaf6 100%);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}

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

.brand strong {
  color: #3a0615;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #6d0f2b;
  background: rgba(109, 15, 43, 0.09);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

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

.hero,
.contact,
.story-grid {
  display: grid;
  gap: 48px;
}

.hero {
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
}

.hero-home {
  padding-top: 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6d0f2b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #2b1720;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 2rem;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-actions.centered-actions {
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(58, 6, 21, 0.06);
}

.hero-stats strong {
  color: #6d0f2b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3a0615, #6d0f2b);
  box-shadow: 0 14px 28px rgba(109, 15, 43, 0.28);
}

.btn-secondary {
  color: #6d0f2b;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(216, 181, 109, 0.42);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(216, 181, 109, 0.5);
}

.hero-visual {
  position: relative;
}

.luxury-image {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 243, 0.92));
  border: 1px solid rgba(216, 181, 109, 0.22);
  box-shadow: var(--shadow);
}

.luxury-image img {
  width: 100%;
  object-fit: cover;
}

.hero-image {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
  background:
    radial-gradient(circle at top right, rgba(216, 181, 109, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(58, 6, 21, 0.98), rgba(109, 15, 43, 0.82));
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 270px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 181, 109, 0.34);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(58, 6, 21, 0.16);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.floating-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro > p,
.section-heading p:last-child,
.page-hero p,
.story-content p,
.cta-panel p,
.contact-info p,
.pricing-card p,
.card-body p,
.space-card p,
.services-hero p,
.services-booking-panel p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.feature-grid,
.pricing-grid,
.gallery-grid,
.space-grid,
.contact-cards,
.service-showcase-grid,
.pricing-menu-grid {
  display: grid;
  gap: 20px;
}

.three-columns,
.pricing-grid,
.service-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.space-card,
.contact-cards article,
.service-showcase-card,
.menu-category {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(58, 6, 21, 0.08);
}

.feature-card,
.service-showcase-card {
  overflow: hidden;
}

.card-image img,
.space-card img,
.service-showcase-card img {
  width: 100%;
  object-fit: cover;
}

.card-image img,
.service-showcase-card img {
  aspect-ratio: 4 / 3;
}

.card-body,
.service-showcase-card div {
  padding: 24px 24px 28px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: #d8b56d;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.card-body h3,
.pricing-card h2,
.space-card h3,
.service-showcase-card h3 {
  margin-bottom: 8px;
}

.service-showcase-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: #6d0f2b;
  font-weight: 700;
}

.story-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.story-content {
  max-width: 560px;
}

.check-list {
  margin: 24px 0 0;
  padding-left: 20px;
}

.check-list li + li {
  margin-top: 10px;
}

.story-images {
  position: relative;
  min-height: 700px;
}

.image-large {
  width: min(100%, 460px);
}

.image-large img {
  aspect-ratio: 13 / 16;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 240px;
  border-radius: 28px;
  border: 10px solid rgba(255, 250, 246, 0.92);
  box-shadow: 0 18px 42px rgba(58, 6, 21, 0.16);
}

.image-small img {
  aspect-ratio: 1 / 1;
}

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

.space-card {
  overflow: hidden;
}

.space-card img {
  aspect-ratio: 16 / 10;
}

.space-card div {
  padding: 22px;
}

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

.wide-space-card {
  grid-column: 1 / -1;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(58, 6, 21, 0.08);
}

.cta-panel,
.services-booking-panel {
  padding: clamp(32px, 7vw, 72px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(58, 6, 21, 0.96), rgba(109, 15, 43, 0.9)),
    radial-gradient(circle at top right, rgba(216, 181, 109, 0.38), transparent 28rem);
  border: 1px solid rgba(216, 181, 109, 0.28);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.services-booking-panel h2 {
  color: #fff;
}

.cta-panel .eyebrow,
.services-booking-panel .eyebrow {
  color: #f3dcae;
}

.contact-info {
  min-width: 0;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-cards article {
  padding: 22px;
}

.contact-cards span {
  display: block;
  margin-bottom: 8px;
  color: #6d0f2b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6d0f2b;
  box-shadow: 0 0 0 4px rgba(109, 15, 43, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #6d0f2b;
  font-weight: 700;
}

.page-hero,
.services-hero {
  padding-top: 72px;
  padding-bottom: 36px;
  max-width: 900px;
}

.page-hero h1,
.services-hero h1 {
  max-width: 100%;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.services-hero {
  text-align: center;
}

.services-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.services-hero .hero-actions {
  justify-content: center;
}

.pricing-card {
  padding: 28px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 243, 0.96));
  border-color: rgba(216, 181, 109, 0.36);
  box-shadow: 0 20px 48px rgba(109, 15, 43, 0.12);
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.price {
  color: #6d0f2b;
  font-weight: 700;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.menu-category {
  padding: clamp(22px, 3vw, 32px);
}

.menu-category h3 {
  padding-bottom: 14px;
  margin-bottom: 8px;
  color: #6d0f2b;
  border-bottom: 1px solid rgba(216, 181, 109, 0.38);
}

.wide-menu-category {
  grid-row: span 2;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(58, 6, 21, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  min-width: 0;
}

.price-row strong {
  flex: 0 0 auto;
  color: #2b1720;
  text-align: right;
}

.booking-phone {
  display: inline-flex;
  margin-top: 8px;
  color: #f3dcae;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.map-section {
  padding-top: 72px;
}

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

.map-card,
.map-frame {
  border: 1px solid rgba(216, 181, 109, 0.28);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(58, 6, 21, 0.1);
}

.map-card {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 243, 0.92)),
    radial-gradient(circle at top right, rgba(216, 181, 109, 0.18), transparent 18rem);
}

.map-card h3 {
  margin-bottom: 16px;
  color: #6d0f2b;
}

.map-card p {
  color: var(--muted);
}

.map-card a:not(.btn) {
  color: #6d0f2b;
  font-weight: 700;
}

.hours-block {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
}

.hours-block strong {
  color: #2b1720;
}

.hours-block span {
  display: block;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-frame {
  overflow: hidden;
  min-height: 450px;
  background: #fff6f3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.site-footer {
  padding: 30px 16px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

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

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

@media (max-width: 1100px) {
  .three-columns,
  .pricing-grid,
  .gallery-grid,
  .service-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .intro,
  .story-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-images {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    order: -1;
  }
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    grid-template-columns: 1fr;
  }

  .floating-card {
    right: 18px;
  }

  .contact-cards,
  .space-grid,
  .pricing-menu-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .wide-menu-category {
    grid-row: auto;
  }

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

@media (max-width: 620px) {
  .hero-visual {
    order: -1;
    width: 100%;
  }
  .navbar,
  .section {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo,
  .footer-logo {
    height: 45px;
  }

  .brand strong {
    font-size: 1.32rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 56px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .three-columns,
  .pricing-grid,
  .gallery-grid,
  .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  .story-images {
    min-height: auto;
  }

  .image-large {
    width: 100%;
  }

  .image-small {
    position: static;
    width: 68%;
    margin-top: 18px;
    border-width: 8px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin: 14px 10px 0;
  }

  .price-row {
    align-items: flex-start;
  }
}
