:root {
  --bg: #faf5f1;
  --surface: #fffdfb;
  --surface-soft: #f5ece5;
  --surface-pink: #f7ecef;
  --text: #1f1917;
  --muted: #6e625c;
  --line: #e4d7cd;
  --accent: #d39daf;
  --accent-dark: #b78093;
  --dark: #2b201c;
  --dark-soft: #3a2d29;
  --white: #fffdfb;
  --shadow: 0 18px 50px rgba(37, 24, 20, 0.08);
  --radius: 22px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.utility-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.utility-link {
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 245, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 215, 205, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 0.95;
}

.brand__subtitle {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--accent-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav > a:not(.button) {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav > a[aria-current="page"] {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.8rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
}

.nav-toggle span + span {
  margin-top: 0.3rem;
}

.section {
  padding: 5.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
}

.section--warm {
  background: linear-gradient(180deg, rgba(245, 236, 229, 0.7), rgba(250, 245, 241, 0.95));
}

.section--pink {
  background: var(--surface-pink);
}

.section--dark {
  background: radial-gradient(circle at top, rgba(211, 157, 175, 0.12), transparent 32%), var(--dark);
  color: var(--white);
}

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

.section--dark-compact .section-heading {
  margin-bottom: 2.2rem;
}

.section--dark-compact .value-grid {
  gap: 1rem;
}

.section--page-header {
  padding-bottom: 3rem;
}

.hero {
  padding-top: 7rem;
}

.hero__content,
.section-heading,
.cta-panel {
  text-align: center;
}

.hero__content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 5.75rem);
}

h1 span,
h2 span {
  color: var(--accent-dark);
  font-style: italic;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

h3 {
  font-size: 1.8rem;
}

.lead,
.section-heading p:not(.eyebrow),
.content-stack p,
.cta-panel p:not(.eyebrow) {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto;
}

.hero__actions,
.location-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #201718;
}

.button--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.button--outline {
  border-color: var(--text);
}

.button--outline:hover {
  background: var(--text);
  color: var(--white);
}

.button--dark {
  background: var(--dark);
  color: var(--white);
}

.button--dark:hover {
  background: var(--dark-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading > * + * {
  margin-top: 1rem;
}

.section-heading--light p:not(.eyebrow) {
  color: rgba(255, 253, 251, 0.75);
}

.card-grid,
.value-grid {
  display: grid;
  gap: 1.6rem;
}

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

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(228, 215, 205, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card img {
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
}

.service-card__body {
  padding: 1.75rem;
}

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

.service-card__body ul {
  padding-left: 1.15rem;
  margin: 1rem 0 1.2rem;
  color: var(--muted);
}

.service-card__body a {
  color: var(--accent-dark);
  font-weight: 600;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split--about {
  grid-template-columns: 0.9fr 1.1fr;
}

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

.portrait-card {
  overflow: hidden;
  border-radius: 999px;
  max-width: 24rem;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 8px solid rgba(211, 157, 175, 0.18);
}

.content-stack > * + * {
  margin-top: 1rem;
}

.content-stack p {
  margin-left: 0;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.credentials__label,
.footer-heading {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
}

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

.value-card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.04);
  border: 1px solid rgba(255, 253, 251, 0.12);
}

.value-card h3 {
  font-size: 1.45rem;
}

.value-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.value-card p {
  color: rgba(255, 253, 251, 0.72);
}

.testimonial {
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  text-align: center;
  border-top: 1px solid rgba(255, 253, 251, 0.14);
}

.testimonial blockquote {
  margin: 0 auto 0.8rem;
  max-width: 36rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.testimonial p {
  margin: 0;
  color: rgba(255, 253, 251, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.location-panel,
.map-frame,
.pricing-list,
.cta-panel,
.shop-highlight {
  background: var(--surface);
  border: 1px solid rgba(228, 215, 205, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-panel {
  padding: 2rem;
}

.location-block + .location-block,
.service-area {
  margin-top: 1.8rem;
}

.location-block p,
.location-block a {
  color: var(--muted);
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.35rem 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-list span {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.map-frame {
  overflow: hidden;
  min-height: 28rem;
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center;
}

.shop-highlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem;
}

.shop-highlight__content p {
  color: var(--muted);
}

.shop-highlight__content > * + * {
  margin-top: 0.9rem;
}

.shop-highlight__actions {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.cta-panel {
  padding: 3rem 1.5rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stats div {
  display: grid;
  gap: 0.2rem;
}

.stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.pricing-layout {
  max-width: 860px;
}

.pricing-section + .pricing-section {
  margin-top: 2.5rem;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.pricing-list {
  overflow: hidden;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(228, 215, 205, 0.9);
}

.pricing-item:last-child {
  border-bottom: 0;
}

.pricing-item h3 {
  font-size: 1.35rem;
}

.pricing-item p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.pricing-item strong {
  color: var(--accent-dark);
  white-space: nowrap;
  font-size: 1rem;
}

.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

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

.footer-copy,
.footer-list,
.footer-list a,
.site-footer address {
  color: rgba(255, 253, 251, 0.72);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 0.5rem;
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 253, 251, 0.12);
  color: rgba(255, 253, 251, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .card-grid,
  .value-grid,
  .split--about,
  .split--location,
  .footer-grid,
  .shop-highlight {
    grid-template-columns: 1fr;
  }

  .value-grid {
    gap: 1rem;
  }

  .map-frame {
    min-height: 22rem;
  }
}

@media (max-width: 1150px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-bar__inner,
  .hours-list p,
  .pricing-item {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 251, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 0.35rem 0;
  }

  .hero {
    padding-top: 5rem;
  }

  .section {
    padding: 4.25rem 0;
  }

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