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

body {
    margin: 0;
    background: var(--bg);
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--selection);
}

:root {
    --bg: #f4eee4;
    --bg-alt: #efe7d8;
    --surface: #faf6ee;
    --white: #ffffff;
    --ink: #2c2823;
    --ink-soft: #4a4339;
    --muted: #6f665a;
    --muted-2: #897e6a;
    --faint: #a89d89;
    --line: #e6dcc9;
    --line-2: #e0d6c4;
    --sage: #8a9a7b;
    --sage-deep: #5f6e52;
    --sage-deep-hover: #4c5940;
    --clay: #b5713f;
    --clay-text: #8a4520;
    --clay-soft: #c98a5e;
    --btn-outline-border: #cabfac;
    --btn-outline-hover: #ece3d3;
    --footer-bg: #2c2823;
    --footer-text: #cfc6b6;
    --footer-muted: #a59c8c;
    --footer-legal: #7d7565;
    --footer-divider: #463f35;
    --placeholder-light: #e9dfcd;
    --placeholder-dark: #e2d7c2;
    --selection: #d8c4a8;
    --header-bg: rgba(244, 238, 228, 0.86);
}

@keyframes qf-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes qf-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

main {
    width: 100%;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

header .container {
    height: 74px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

nav a:hover {
    color: var(--clay);
}

nav a.active {
    color: var(--clay);
    border-bottom-color: var(--clay);
}

.nav-book-btn {
    background-color: var(--sage-deep);
    color: var(--white) !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none !important;
}

.nav-book-btn:hover {
    background: var(--sage-deep-hover);
}

.page-section {
    padding: 74px 0 90px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-ring {
    position: absolute;
    animation: qf-spin 80s linear infinite;
    opacity: 0.55;
    z-index: 0;
}

.hero-portrait {
    z-index: 1;
    position: relative;
    width: 300px;
    height: 380px;
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    background: repeating-linear-gradient(48deg, var(--placeholder-light), var(--placeholder-light) 11px, var(--placeholder-dark) 11px, var(--placeholder-dark) 22px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 24px 60px -28px rgba(63, 55, 40, 0.5);
    font-size: 11px;
    color: var(--muted-2);
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clay-text);
    margin-bottom: 22px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 1.02;
    margin: 0 0 26px;
    letter-spacing: -0.5px;
}

.hero-italic {
    font-style: italic;
    color: var(--sage-deep);
}

.hero-body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin: 0 0 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--sage-deep);
    color: var(--white);
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    padding: 1rem;
}

.btn-primary:hover {
    background: var(--sage-deep-hover);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 15px 30px;
    border-radius: 999px;
    border: 1px solid var(--btn-outline-border);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--btn-outline-hover);
}

.modalities {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 74px 0;
}

.modalities-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 42px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
}

.hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.modalities-all {
    color: var(--sage-deep-hover);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--clay);
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage-deep);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
}

.service-short {
    font-size: 14.5px;
    line-height: 16px;
    color: var(--muted);
}

.service-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.service-price {
    color: var(--clay-text);
    font-weight: 600;
}

.meet-practitioner {
    padding: 90px 0;
}

.meet-practitioner .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.meet-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    background: repeating-linear-gradient(48deg, var(--placeholder-light), var(--placeholder-light) 11px, var(--placeholder-dark) 11px, var(--placeholder-dark) 22px);
}

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

.section-inner {
    display: flex;
}

.testimonial-band {
    background: var(--sage-deep);
    padding: 80px 0;
}

.testimonial-band .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--surface);
    margin: 0;
}

.testimonial-band p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--surface);
    margin: 0;
}

.testimonial-service {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--surface);
    margin: 0;
}

.closing-cta {
    padding: 90px 0;
}

.closing-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
}

footer {
    background: var(--ink);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--footer-divider);
}

.footer-brand p,
.footer-explore a,
.footer-contact a,
.footer-contact p {
    color: var(--footer-text);
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    display: block;
    margin: 0;
}

.footer-brand .logo span {
    color: var(--surface);
}

.footer-explore p,
.footer-contact p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--footer-muted);
    margin-bottom: 16px;
}

.footer-explore {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact a:first-of-type {
    color: var(--clay-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--footer-divider);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--footer-muted);
    margin: 0;
}

.about-flex {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.about-img {
    position: sticky;
    top: 90px;
    width: 340px;
    flex-shrink: 0;
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    background: repeating-linear-gradient(48deg, var(--placeholder-light), var(--placeholder-light) 11px, var(--placeholder-dark) 11px, var(--placeholder-dark) 22px);
}

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

.about-bio p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 20px;
}

.about-training ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.about-training li {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-training li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clay);
    flex-shrink: 0;
}

.about-promise {
    margin-top: 32px;
    padding: 28px;
    background: var(--bg-alt);
    border-radius: 14px;
}

.about-promise h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 12px;
}

.about-promise p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.service {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service:hover {
    transform: translateY(-4px);
    border-color: var(--clay);
}

.service-body .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service .eyebrow {
    color: var(--sage);
}

.service-description .hero-text {
    max-width: 65%;
}

.service-description {
    flex: 1;
}

.service-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.service-duration {
    color: var(--muted);
    margin: 0;
}

.service-details .btn-primary {
    padding: 10px 24px;
}

.stories-hero .hero-text {
    max-width: 45%;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 0px;
}

.testimonial {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    margin-top: 24px;
}


.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
}

.testimonial cite {
    color: var(--clay);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    display: block;
    margin-top: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    color: var(--clay);
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-item.open .faq-answer {
    display: block;
}

.contact-content {
    margin: 0;
    font-size: 15px;
}

.contact-text {
    max-width: 420px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}

.contact-section .container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.contact-section .hero-text {
    padding-bottom: 16px;
}

.contact-text {
    flex: 1;
}

.contact-section .contact-label {
    text-transform: uppercase;
    color: var(--sage-deep);
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 0;
}

.contact-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 24px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.contact-hours dt {
    font-weight: 500;
    color: var(--ink);
}

.contact-form-fields {
    flex: 1.5;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#contact-form {
    flex: 2;
    min-width: 0;
    padding-top: 230px;
}

.contact-form {
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 24px;
    flex: 2;
    flex-shrink: 0;
}

.contact-form .btn-primary {
    border-radius: 8px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #c0392b
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
}

.form-group textarea {
    resize: vertical;
}

.appointment-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.appointment-bottom-steps {
    display: flex;
    gap: 24px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sage-deep);
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.appointment-label {
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 12px;
}

.appointment-calendar {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

#cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
}

.cal-day.selected {
    background: var(--sage-deep);
    color: white;
}

.cal-day:hover {
    background: var(--bg-alt);
}

.cal-day.empty {
    cursor: default;
    pointer-events: none;
}

.cal-month {
    font-weight: 600;
    font-size: 15px;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--ink);
    padding: 4px 8px;
}

.cal-nav button:hover {
    color: var(--clay);
}

.appointment-step-2 {
    flex: 1;
    min-width: 0;
}

.email-phone {
    display: flex;
    gap: 12px;
}

#time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.time-slot {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    white-space: nowrap;
}

.time-slot:hover {
    border-color: var(--sage);
}

.time-slot.active {
    background: var(--sage-deep);
    color: white;
    border-color: var(--sage-deep);
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.service-pill {
    padding: 8px 20px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--surface);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
}

.service-pill.active {
    background: var(--sage-deep);
    color: white;
    border-color: var(--sage-deep);
}

.service-pill:hover {
    border-color: var(--sage);
}

.booking-summary {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.summary-row span:first-child {
    color: var(--muted);
}

.summary-row span:last-child {
    font-weight: 500;
    color: var(--ink);
}

.optional-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

#sum-service,
#sum-date,
#sum-time {
    color: var(--muted);
    font-weight: 400;
}

#sum-service.has-value,
#sum-date.has-value,
#sum-time.has-value {
    color: var(--ink);
    font-weight: 500;
}

.appointment-step-3 .contact-form {
    margin-top: 0;
}

.confirmation {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.confirmation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 560px;
}

.confirm-logo {
    animation: confirm-spin 2s ease-out forwards;
}

.confirmation .btn-primary {
    margin-top: 8px;
}

@keyframes confirm-spin {
    from {
        transform: rotate(-90deg) scale(0.8);
        opacity: 0;
    }

    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.form-error {
    background: #fdf0ee;
    border: 1px solid #e8b4a8;
    color: #8a2a1a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.form-success {
    background: #edf3e8;
    border: 1px solid #b4d4a8;
    color: #2a5a1a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}
}

@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; } 
}

.img-loading {
      background: linear-gradient(90deg, #ede7dc 25%, #f5f0e8 50%, #ede7dc 75%);
      background-size: 800px 100%;
      animation: shimmer 1.4s infinite linear;
}

.img-loading img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 24px 32px;
        gap: 20px;
    }

    nav.open {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-body {
        max-width: 100%;
    }

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

    .about-flex {
        flex-direction: column;
        gap: 32px;
    }

    .about-img {
        width: 100%;
        position: static;
    }

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

    .contact-section .container {
        flex-direction: column;
        gap: 24px;
    }

    .contact-details {
        margin-top: 16px;
    }

    .contact-text {
        width: 100%;
        max-width: 100%;
    }

    #contact-form {
        width: 100%;
        padding-top: 0;
    }

    .contact-form {
        width: 100%;
        margin-top: 0;
        flex-shrink: 1;
    }

    .contact-form-fields {
        width: 100%;
    }

    .appointment-bottom-steps {
        flex-direction: column;
    }

    .appointment-step-2,
    .appointment-step-3 {
        width: 100%;
    }

    .appointment-step-2 {
        order: 1;
    }

    .appointment-step-3 {
        order: 2;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .meet-practitioner .container {
        grid-template-columns: 1fr;
    }

    .service {
        flex-direction: column;
        gap: 20px;
    }

    .service-description .hero-text {
        max-width: 100%;
    }

    .service-details {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .stories-hero .hero-text {
        max-width: 100%;
    }

    .email-phone {
        flex-direction: column;
    }

    .cal-day.selected {
        background: var(--sage-deep) !important;
        color: white !important;
    }

    .meet-image {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact .btn-primary {
        width: auto;
        align-self: flex-start;
    }
}