:root {
  --bg: #f6f2eb;
  --surface: #fffdf8;
  --surface-2: #f1e7d6;
  --text: #1d1c19;
  --muted: #5f5b52;
  --brand: #3a6b5d;
  --brand-dark: #2b5147;
  --border: #d8cdbb;
  --radius: 14px;
  --shadow: 0 10px 26px rgba(32, 30, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, #f0dfc4 0%, transparent 24%),
    radial-gradient(circle at 96% 15%, #e3ecd6 0%, transparent 26%),
    var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92vw);
}

.gift-section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(140deg, #e9f1e3, #fffdf8);
}

.gift-section h2 {
  margin-bottom: 0.45rem;
}

.gift-section p {
  max-width: 54ch;
  margin: 0 auto 1rem;
  color: var(--muted);
}

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

.brand-address {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.info-bar {
  background: var(--text);
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.info-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.info-content a {
  color: #fff;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(246, 242, 235, 0.88);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-family: "Fraunces", serif;
  text-decoration: none;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.menu a:hover {
  color: var(--text);
}

.menu-cta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  border: 1px solid transparent;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 150ms ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline,
.btn-light {
  border-color: var(--border);
  background: var(--surface);
}

.btn-outline:hover,
.btn-light:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-center .eyebrow {
  align-self: center;
}

.hero-center h1 {
  max-width: 16ch;
}

.hero-center .lead {
  max-width: 60ch;
  margin: 0 auto 1.35rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 14ch;
}

.lead {
  color: var(--muted);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
  justify-content: center;
}

.appointment-banner {
  padding: 0 0 2.4rem;
}

.appointment-banner .container {
  background: linear-gradient(135deg, #f8e3df, #fff7f4);
  border: 1px solid rgba(185, 57, 57, 0.22);
  border-radius: var(--radius);
  text-align: center;
  padding: 0.95rem 1rem;
}

.appointment-banner-label {
  margin: 0 0 0.35rem;
  color: #8f1717;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.appointment-banner-text {
  margin: 0;
  color: #a61f1f;
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 58ch;
  margin: 0 auto;
}

.section {
  padding: 3.2rem 0;
}

#about h2 {
  text-align: center;
}

.section-alt {
  background: linear-gradient(180deg, rgba(241, 231, 214, 0.56), rgba(241, 231, 214, 0.25));
}

.section-note {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.services-discount-note {
  margin: 0.4rem auto 1rem;
  text-align: center;
  max-width: 70ch;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-pricing {
  align-items: stretch;
}

.price-card {
  position: relative;
  text-align: center;
  padding: 1.25rem;
}

.price-card.popular-card {
  border: 3px solid #e0b21a;
}

.popular-badge {
  position: absolute;
  top: -0.72rem;
  right: 0.95rem;
  margin: 0;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: #c8342d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.popular-card .price-tag {
  font-weight: 700;
}

.price-card h3 {
  margin-bottom: 0.35rem;
}

.price-tag {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4.2vw, 2.8rem);
  line-height: 1;
  color: var(--brand-dark);
}

.options-label {
  margin: 0.85rem 0 0;
  color: var(--text);
}

.service-options {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid #ece2d1;
  color: var(--muted);
}

.service-options li {
  padding: 0.22rem 0;
}

.services-cta {
  margin-top: 1.1rem;
  text-align: center;
}

.service-addons {
  margin-top: 1rem;
  text-align: center;
  background: linear-gradient(140deg, #fff8ea, #fffdf8);
}

.service-addons h3 {
  margin-bottom: 0.7rem;
}

.service-addons h3 span {
  color: var(--brand-dark);
  font-size: 0.9em;
}

.addon-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.addon-pills li {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.card-soft {
  background: linear-gradient(140deg, var(--surface), #fbf3e6);
}

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

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid #ece2d1;
}

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

.quote p {
  margin-bottom: 0.7rem;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
}

.contact {
  text-align: center;
}

.contact p {
  margin: 0 auto 1rem;
  max-width: 50ch;
  color: var(--muted);
}

.business-hours {
  max-width: 560px;
  margin: 0.8rem auto 0;
  text-align: left;
}

.business-hours h3 {
  margin-bottom: 0.65rem;
}

.business-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-hours li {
  display: grid;
  grid-template-columns: 170px 170px;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.8rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid #ece2d1;
}

.business-hours li:last-child {
  border-bottom: 0;
}

.business-hours li.is-today {
  background: #efe4cf;
  border-bottom-color: transparent;
  border-radius: 10px;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.business-hours span {
  font-weight: 700;
  color: var(--text);
  justify-self: end;
  text-align: right;
}

.business-hours strong {
  color: var(--text);
  justify-self: start;
  text-align: left;
}

.business-hours p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: none;
}

.social-follow {
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
}

.social-follow h3 {
  margin-bottom: 0.45rem;
}

.social-follow p {
  max-width: 54ch;
  margin: 0 auto 1rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 1.7rem;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0.2rem 0;
}

.copyright {
  font-size: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.copyright p {
  margin: 0;
}

.copyright a {
  color: var(--brand);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.profile-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 1.5rem auto;
  box-shadow: 0 8px 20px rgba(32, 30, 24, 0.15);
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .menu,
  .menu-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-grid,
  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .business-hours li {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}