/* Global Styles */
:root {
  --cream: #F5F0E8;
  --dusty-rose: #C9A9A6;
  --sage: #8FAF8A;
  --forest: #2D3B2F;
  --gold: #C8A96E;
  --charcoal: #333333;

  --radius-soft: 28px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #f7f2ea 0%, #f1e6da 40%, #e8dccf 100%);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

body.page-loaded {
  opacity: 1;
}

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

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

main {
  padding-top: 80px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest);
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

p {
  font-size: 0.98rem;
}

.lead {
  font-size: 1.05rem;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1080px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section--alt {
  background: rgba(245, 240, 232, 0.8);
}

.section--about-top {
  padding-top: 2rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading p {
  max-width: 620px;
  margin: 0.75rem auto 0;
}

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color 380ms ease, box-shadow 380ms ease,
    backdrop-filter 380ms ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-circle {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--dusty-rose));
  transition: width 260ms ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-scrolled {
  background: rgba(245, 240, 232, 0.9);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Hero (Home) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(250, 242, 232, 0.85), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(201, 169, 166, 0.5), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(45, 59, 47, 0.75), transparent 60%);
  mix-blend-mode: soft-light;
  opacity: 0.95;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  padding: 4.5rem 1.5rem 5rem;
  border-radius: 38px;
  background: radial-gradient(circle at top left, rgba(255, 250, 244, 0.96), rgba(245, 235, 224, 0.96));
  box-shadow: 0 40px 90px rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(18px);
}

.hero-logo-image {
  width: 180px;
  height: auto;
  max-width: 65%;
  margin: 0 auto 1.4rem;
  background: transparent;
  display: block;
}

.hero-logo-placeholder {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #f9f3ea, #c8a96e, #c9a9a6, #8faf8a, #f9f3ea);
  position: relative;
  box-shadow: 0 0 36px rgba(200, 169, 110, 0.8);
}

.hero-logo-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fdf7ef, #f0dfc8);
}

.hero-logo-moon {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(250, 244, 233, 0.95);
  box-shadow: -6px 0 0 rgba(200, 169, 110, 0.7);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.69rem;
  margin-bottom: 0.7rem;
  color: rgba(51, 51, 51, 0.8);
}

.hero h1 {
  margin: 0.1rem 0 0.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: rgba(64, 64, 64, 0.9);
}

.hero p {
  margin: 0 auto 1.8rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

.hero-secondary-link {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-secondary-link span {
  border-bottom: 1px dotted rgba(51, 51, 51, 0.4);
}

.hero-wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
}

.hero-wave-divider svg {
  display: block;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease,
    color 220ms ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.btn--sage {
  background: linear-gradient(135deg, var(--sage), #a9c6a3);
  color: #fdfaf3;
}

.btn--rose {
  background: linear-gradient(135deg, var(--dusty-rose), #d9b7b4);
  color: #fefaf6;
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(47, 69, 51, 0.4);
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  outline: none;
}

.btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

/* Booking Modal */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 59, 47, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--cream);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal-overlay.is-visible .booking-modal {
  transform: translateY(0);
}

.booking-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--forest);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
}

.booking-modal__close:hover {
  opacity: 0.7;
}

.booking-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.booking-modal__subtitle {
  font-size: 0.95rem;
  color: var(--forest);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.booking-modal__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-modal__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--sage), #a9c6a3);
  color: #fdfaf3;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-modal__card:hover,
.booking-modal__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.booking-modal__card-name {
  font-size: 0.95rem;
}

.booking-modal__card-price {
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Cards / content */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.98), #fdf8f1);
  border-radius: var(--radius-soft);
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(200, 169, 110, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-tag {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.4rem;
}

.card h3 {
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
}

.card-list {
  padding-left: 1.1rem;
}

.card-list li {
  margin-bottom: 0.25rem;
}

.card-image-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 28px;
  margin-bottom: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
}

.card-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Breathing Widget */
.breath-widget {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.breath-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(51, 51, 51, 0.7);
}

.breath-circle-wrapper {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 20% 0%, rgba(249, 241, 234, 0.9), rgba(201, 169, 166, 0.7));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.breath-circle-orbit {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(250, 244, 236, 0.7);
}

.breath-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, #fffaf3, #f1ddc6);
  box-shadow: 0 0 40px rgba(200, 169, 110, 0.7);
  display: grid;
  place-items: center;
  color: #4a493f;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.breath-note {
  font-size: 0.86rem;
  opacity: 0.8;
  max-width: 320px;
  text-align: center;
}

/* About page */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.about-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.about-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(250, 244, 235, 0.85);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-glow {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.5);
  filter: blur(3px);
}

.about-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  color: rgba(51, 51, 51, 0.8);
}

.certificate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  background: linear-gradient(120deg, rgba(200, 169, 110, 0.2), rgba(201, 169, 166, 0.15));
  border: 1px solid var(--gold);
  border-radius: 20px;
  transition: background 300ms ease, box-shadow 300ms ease;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}

.certificate-badge:hover {
  background: linear-gradient(120deg, rgba(200, 169, 110, 0.35), rgba(201, 169, 166, 0.25));
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}

.certificate-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease, opacity 400ms ease;
  opacity: 0;
  margin-top: 0;
}

.certificate-panel.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 1rem;
}

.certificate-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-story p {
  margin-bottom: 1rem;
}

.about-quote-block {
  margin-top: 2.4rem;
  border-radius: var(--radius-soft);
  padding: 1.9rem 1.8rem 2.1rem;
  background: linear-gradient(120deg, rgba(200, 169, 110, 0.25), rgba(201, 169, 166, 0.2));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

.about-quote-line {
  display: block;
  margin: 0.3rem 0;
}

.about-mission-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(185, 162, 150, 0.35);
}

.about-mission-block h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.about-mission-block h2:first-child {
  margin-top: 0;
}

.about-mission-block p {
  margin-bottom: 1rem;
}

.about-list {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1.25rem;
  list-style: none;
}

.about-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.about-list li::before {
  content: "—";
  position: absolute;
  left: -1.25rem;
  color: var(--dusty-rose);
  font-weight: 400;
}

.about-pullquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
  margin: 1.5rem 0 !important;
  color: var(--forest);
}

/* Our Clients - logos only, no boxes */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3rem;
  margin-top: 1.5rem;
}

.clients-logos img {
  max-height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.clients-logos img:hover {
  opacity: 0.85;
}

/* Services page */
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: center;
  margin-bottom: 3.2rem;
}

.service-block:nth-child(even) {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
}

.service-text h3 {
  margin-top: 0;
}

.service-text p {
  margin-bottom: 0.9rem;
}

.service-options {
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.service-options strong {
  font-weight: 600;
}

.service-list {
  padding-left: 1.1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}

/* FAQ accordion */
.faq {
  margin-top: 2.5rem;
}

.faq-item {
  border-radius: 18px;
  background: rgba(245, 240, 232, 0.96);
  margin-bottom: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(185, 162, 150, 0.4);
}

.faq-header {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.2rem;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 260ms ease, padding-bottom 260ms ease;
}

.faq-body p {
  margin: 0.7rem 0 1.1rem;
  font-size: 0.94rem;
}

.faq-item.open .faq-body {
  padding-bottom: 1.1rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-note {
  font-size: 0.95rem;
}

form {
  margin-top: 0.8rem;
}

.form-field {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.8);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(151, 134, 122, 0.6);
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  font-size: 0.96rem;
  background: rgba(253, 249, 242, 0.96);
  transition: border-color 200ms ease, box-shadow 200ms ease,
    background 200ms ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(200, 169, 110, 0.9);
  box-shadow: 0 0 0 1px rgba(200, 169, 110, 0.6),
    0 18px 40px rgba(0, 0, 0, 0.28);
  background: rgba(255, 252, 247, 0.98);
}

.form-disclaimer {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.7rem;
}

/* Legal pages */
.legal {
  max-width: 780px;
  margin: 0 auto;
}

.legal h2 {
  margin-top: 0;
}

.legal h3 {
  margin-top: 2rem;
}

.legal p,
.legal li {
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.2rem;
}

/* Waves & decorative elements */
.wave-divider {
  position: relative;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.celestial-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.4rem 0 0.2rem;
  opacity: 0.9;
}

.celestial-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.9);
  position: relative;
}

.celestial-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border-right: 3px solid rgba(200, 169, 110, 0.9);
}

.celestial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.9);
  box-shadow: 0 0 12px rgba(200, 169, 110, 0.9);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 10%, #f9f3eb, #c9a9a6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.36);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: 900;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Footer */
footer {
  background: radial-gradient(circle at top, #3b4b3e, #222d23);
  color: #f7f2e9;
  padding: 2.5rem 0 1.8rem;
  margin-top: 3.5rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  font-size: 0.9rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #f7f2e9;
}

.footer-bottom {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Utilities */
.text-center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.75);
}

.mt-sm {
  margin-top: 0.9rem;
}

.mt-md {
  margin-top: 1.6rem;
}

.mt-lg {
  margin-top: 2.4rem;
}

/* Responsive */
@media (max-width: 880px) {
  .nav-inner {
    padding-inline: 1.1rem;
  }

  .nav-links {
    position: absolute;
    inset: 70px 0 auto 0;
    background: rgba(245, 240, 232, 0.97);
    padding: 1rem 1.5rem 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding-inline: 1.5rem;
  }

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

  .about-layout,
  .service-block,
  .contact-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-block:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-photo {
    width: 230px;
    height: 230px;
  }

  footer {
    margin-top: 3rem;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    border-radius: 26px;
  }

  .breath-circle-wrapper {
    width: 190px;
    height: 190px;
  }

  .breath-circle {
    width: 120px;
    height: 120px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

