:root {
  --bg: #faf6f8;
  --bg-soft: #f3ebf2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #2b2330;
  --muted: #6f6476;
  --border: rgba(186, 164, 183, 0.34);
  --primary: #b96aa0;
  --primary-strong: #a14d88;
  --primary-soft: rgba(185, 106, 160, 0.12);
  --accent: #e5d7eb;
  --shadow: 0 28px 70px rgba(49, 28, 45, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(185, 106, 160, 0.16), transparent 36rem),
    var(--bg);
}

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

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

.page {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(210, 196, 208, 0.5);
  background: rgba(250, 246, 248, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(49, 28, 45, 0.06);
}

.page main {
  padding-top: 94px;
}

.header-inner {
  padding: 10px 0;
}

.header-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.86rem;
  color: var(--muted);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header .button {
  min-height: 42px;
  padding: 0 18px;
  gap: 8px;
  font-size: 0.9rem;
}

.nav-link:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
}

.section {
  padding: 84px 0;
}

#experience {
  display: none;
}

.section-soft {
  background: rgba(237, 226, 239, 0.44);
}

.section-muted {
  border-top: 1px solid rgba(210, 196, 208, 0.45);
  border-bottom: 1px solid rgba(210, 196, 208, 0.45);
  background: rgba(255, 255, 255, 0.24);
}

.section[id] {
  scroll-margin-top: 112px;
}

.hero {
  padding-top: 36px;
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  gap: 58px;
  align-items: center;
}

.hero-copy,
.section-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  order: 2;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  max-width: 100%;
  flex-wrap: wrap;
  border: 1px solid rgba(185, 106, 160, 0.2);
  border-radius: 999px;
  background: rgba(185, 106, 160, 0.1);
  padding: 9px 15px;
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.eyebrow span {
  min-width: 0;
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.booking-copy h2,
.location-card h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.65rem);
  text-wrap: balance;
}

.section-copy h2,
.booking-copy h2,
.location-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
}

.hero-copy p,
.section-copy p,
.booking-copy p,
.location-card p,
.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.button,
.button-secondary,
.service-button,
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button,
.service-button--primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}

.button:hover,
.service-button--primary:hover {
  background: var(--primary-strong);
}

.button,
.button-secondary {
  min-height: 48px;
  padding: 0 22px;
}

.button-secondary,
.service-button {
  border: 1px solid rgba(204, 190, 201, 0.8);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.button-secondary:hover,
.service-button:hover {
  border-color: rgba(185, 106, 160, 0.28);
  background: rgba(243, 235, 242, 0.95);
}

.trust-card,
.stat-pill,
.service-card,
.feature-card,
.flow-card,
.location-pill,
.signature-card,
.booking-panel,
.location-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.trust-card {
  border-color: rgba(210, 196, 208, 0.65);
  border-radius: 18px;
  box-shadow: none;
  padding: 12px 14px;
  width: 100%;
  max-width: 100%;
}

.trust-grid {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.trust-icon,
.feature-icon,
.location-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.trust-title {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.trust-copy p,
.feature-copy p,
.location-pill p,
.service-card p,
.portfolio-copy p,
.footer-copy p {
  margin: 0;
  color: var(--muted);
}

.section-label {
  margin: 0 0 4px;
  color: var(--primary-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stat-grid,
.portfolio-grid,
.services-grid,
.features-grid,
.location-grid {
  display: grid;
  gap: 12px;
}

.trust-tag,
.stat-pill {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-tag {
  padding: 8px 10px;
  font-size: 0.74rem;
  line-height: 1.4;
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  width: 100%;
  max-width: 470px;
  gap: 14px;
  margin: 0 auto;
}

.stat-pill {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(61, 35, 56, 0.04);
}

.hero-visual {
  position: relative;
  width: min(100%, 384px);
  margin: 0 auto 214px;
  order: 1;
}

.hero-photo-glow {
  position: absolute;
  inset: 24px;
  border-radius: var(--radius-lg);
  background: rgba(185, 106, 160, 0.12);
  filter: blur(44px);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 4.8;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.signature-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -178px;
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.94);
}

.signature-card ul,
.service-points,
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signature-card ul {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.signature-card li,
.service-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.signature-card li span,
.service-points li span {
  line-height: 1.55;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 18px;
}

.section-head .section-label {
  margin-bottom: 14px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}

.service-card {
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(61, 35, 56, 0.05);
}

.service-card.featured {
  position: relative;
  border-color: rgba(185, 106, 160, 0.34);
  background: rgba(185, 106, 160, 0.08);
}

.service-card.featured .service-top {
  display: block;
}

.service-card.featured .service-title {
  max-width: calc(100% - 150px);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-title {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.service-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 24px 0 18px;
}

.service-price strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.service-price span {
  white-space: nowrap;
  line-height: 1.2;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  padding: 7px 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card.featured .badge {
  position: absolute;
  top: 28px;
  right: 28px;
}

.service-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.service-button {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(223, 211, 226, 0.7);
  background: linear-gradient(135deg, rgba(246, 238, 248, 0.96), rgba(236, 223, 240, 0.9));
  aspect-ratio: 3 / 4;
}

.portfolio-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.portfolio-placeholder-badge {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(185, 106, 160, 0.12);
  color: rgba(185, 106, 160, 0.78);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(40, 32, 45, 0.88), rgba(40, 32, 45, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-copy {
  padding: 16px;
}

.portfolio-copy strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 0.96rem;
}

.portfolio-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-cta {
  text-align: center;
  margin-top: 36px;
}

.instagram-link {
  color: var(--primary-strong);
}

.two-col {
  display: grid;
  gap: 28px;
}

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

.feature-card {
  border-radius: 24px;
  padding: 20px;
}

.feature-row {
  display: flex;
  gap: 16px;
}

.feature-copy h3,
.location-pill h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.flow-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(234, 224, 238, 0.55);
  padding: 28px;
}

.flow-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.flow-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 24px;
  padding: 16px;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.location-shell {
  display: grid;
  gap: 24px;
}

.location-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 14px 40px rgba(61, 35, 56, 0.04);
}

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

.location-pill {
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(61, 35, 56, 0.05);
}

.booking-panel {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: linear-gradient(135deg, rgba(185, 106, 160, 0.12), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid rgba(210, 196, 208, 0.5);
  background: rgba(255, 255, 255, 0.36);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.icon-sm {
  width: 16px;
  height: 16px;
}

@media (min-width: 700px) {
  .cta-row,
  .booking-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer-copy {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .container {
    width: min(1220px, calc(100% - 64px));
  }

  .page main {
    padding-top: 102px;
  }

  .section {
    padding: 108px 0;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 138px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 560px) minmax(320px, 384px);
    justify-content: space-between;
    gap: 96px;
  }

  .hero-copy,
  .hero-visual {
    order: 0;
  }

  .hero-copy {
    margin: 0;
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
    align-self: flex-start;
    text-align: left;
  }

  .cta-row {
    max-width: none;
    margin: 0;
  }

  .trust-grid {
    justify-content: flex-start;
  }

  .trust-title {
    text-align: left;
  }

  .stat-grid {
    margin: 0;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .signature-card {
    left: auto;
    right: -28px;
    width: 264px;
    bottom: -154px;
  }

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

  .two-col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 56px;
  }

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

  .location-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
