* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep:    #2d6a4f;
    --green-primary: #40916c;
    --green-light:   #74c69d;
    --green-pale:    #d8f3dc;
    --rose-deep:     #a0445a;
    --rose-primary:  #c2687a;
    --rose-medium:   #e8a0b0;
    --rose-light:    #fce8ed;
    --gold:          #c9952a;
    --gold-light:    #f2d48a;
    --cream:         #faf8f4;
    --white:         #ffffff;
    --text-dark:     #2c2828;
    --text-medium:   #5a5252;
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg:  0 15px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
   HEADER
======================== */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rose-medium);
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--green-primary); }
.nav-links a:hover::after { width: 100%; }

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cta-button {
    background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
    color: var(--white);
    padding: 11px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64,145,108,0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(64,145,108,0.5);
}

/* ========================
   SECTION COMMON
======================== */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--green-deep);
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-primary), var(--gold));
    margin: 12px auto 0;
}

.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    font-style: italic;
    margin-top: 0.8rem;
    margin-bottom: 3rem;
}

/* ========================
   HERO
======================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--rose-light) 0%, var(--cream) 50%, var(--green-pale) 100%);
    padding: 130px 0 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose-medium), transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-light), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text { text-align: left; }

.hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose-primary);
    margin-bottom: 0.8rem;
    font-family: sans-serif;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--green-deep);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--rose-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(194,104,122,0.2), 0 0 0 16px rgba(194,104,122,0.07);
    animation: floating 6s ease-in-out infinite;
    overflow: hidden;
    border: 4px solid rgba(194,104,122,0.25);
}

.hero-logo img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 50%;
}

/* ========================
   SERVICES (Espacios de Transformación)
======================== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.service-card h3 {
    color: var(--green-deep);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card p { color: var(--text-medium); line-height: 1.75; }

/* ========================
   LIBERATION THERAPIES
======================== */
.liberation-therapies {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--green-deep) 0%, #1a4a33 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.liberation-therapies::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="40"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="15"/></svg>') center / 400px no-repeat;
    pointer-events: none;
}

.liberation-therapies .section-title { color: var(--white); }
.liberation-therapies .section-title::after {
    background: linear-gradient(90deg, var(--gold-light), var(--rose-medium));
}

.therapy-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.therapy-intro p {
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.9;
}

.therapies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.therapy-card {
    background: rgba(255,255,255,0.07);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.therapy-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.therapy-card h4 {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.therapy-card p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 0.97rem;
}

.therapy-final-note {
    margin: 3rem auto 0;
    max-width: 680px;
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(201,149,42,0.12);
    border-radius: 12px;
    border: 1px solid rgba(201,149,42,0.3);
    position: relative;
    z-index: 2;
}

.therapy-final-note p {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.02rem;
}

/* ========================
   INDIVIDUAL SERVICES
======================== */
.individual-services {
    padding: 100px 0;
    background: var(--cream);
}

.reiki-angelical {
    background: var(--white);
    padding: 3rem;
    margin: 0 0 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--rose-light);
    position: relative;
    overflow: hidden;
}

.reiki-angelical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-primary), var(--gold), var(--green-primary));
}

.reiki-title {
    color: var(--rose-deep);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.reiki-description {
    color: var(--text-medium);
    font-size: 1.02rem;
    text-align: center;
    margin: 0 auto 2.5rem;
    font-style: italic;
    max-width: 640px;
    line-height: 1.8;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.protocol-card {
    background: var(--cream);
    padding: 1.8rem;
    border-radius: 16px;
    border-left: 3px solid var(--rose-primary);
    transition: all 0.3s ease;
}

.protocol-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
}

.protocol-title {
    color: var(--green-deep);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.protocol-card > p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.protocol-list {
    list-style: none;
    padding: 0;
    margin-top: 0.6rem;
}

.protocol-list li {
    color: var(--text-medium);
    padding: 0.2rem 0 0.2rem 1.4rem;
    position: relative;
    font-size: 0.93rem;
}

.protocol-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rose-primary);
    font-size: 0.7rem;
    top: 0.38rem;
}

.wounds-list li::before {
    content: '◆';
    color: var(--rose-deep);
}

.final-note {
    background: linear-gradient(135deg, var(--rose-light), #fff5f7);
    padding: 1.4rem 1.8rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid var(--rose-medium);
}

.final-note p {
    color: var(--rose-deep);
    font-style: italic;
    font-size: 0.98rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.service-item {
    background: var(--white);
    padding: 1.4rem 1.5rem;
    border-radius: 14px;
    border-left: 3px solid var(--rose-medium);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    border-left-color: var(--green-primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.service-item h4 {
    color: var(--green-deep);
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.service-item p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================
   EVENTS CAROUSEL
======================== */
.events-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--rose-light) 0%, var(--cream) 100%);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.carousel {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item { min-width: 100%; position: relative; }

.carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18,18,18,0.72));
    color: white;
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.carousel-caption p { opacity: 0.85; font-size: 0.95rem; }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--green-deep);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(194,104,122,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background: var(--rose-primary);
    width: 24px;
    border-radius: 4px;
}

/* ========================
   ABOUT
======================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.03rem;
    margin-bottom: 1.2rem;
}

.about-text strong { color: var(--green-deep); }

.about-image { display: flex; justify-content: center; }

.profile-frame { position: relative; display: inline-block; }

.profile-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--rose-light), var(--green-pale));
    z-index: 0;
}

.profile-image {
    width: 290px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--rose-medium);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

.profile-image:hover {
    transform: translate(-4px, -4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

/* ========================
   CONTACT
======================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--green-deep) 0%, #1e5c42 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,149,42,0.15), transparent 70%);
    pointer-events: none;
}

.contact .section-title { color: var(--white); }
.contact .section-title::after {
    background: linear-gradient(90deg, var(--gold-light), var(--rose-medium));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover { background: rgba(255,255,255,0.12); }

.contact-item i { width: 20px; text-align: center; color: var(--gold-light); }

.contact-item a { color: var(--white); text-decoration: none; }
.contact-item a:hover { color: var(--gold-light); }

.contact-form {
    background: rgba(255,255,255,0.08);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-form h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    opacity: 0.85;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.97rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }

.form-group select option { background: var(--green-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
    color: var(--white);
    padding: 13px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194,104,122,0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(194,104,122,0.6);
}

/* ========================
   FOOTER
======================== */
footer {
    background: #181818;
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-section h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.footer-section p {
    line-height: 1.95;
    font-size: 0.92rem;
    opacity: 0.72;
}

.footer-section p i {
    margin-right: 0.45rem;
    color: var(--rose-medium);
}

.footer-bottom { text-align: center; }

.footer-bottom p {
    font-size: 0.87rem;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.footer-bottom em { color: var(--rose-medium); opacity: 0.85; }

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-links a {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    text-decoration: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--rose-primary);
    color: var(--white);
    border-color: var(--rose-primary);
    transform: translateY(-3px);
}

/* ========================
   WHATSAPP FLOAT
======================== */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    background: #1ead58;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ========================
   ANIMATIONS
======================== */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .nav-links {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav-links.open { transform: translateY(0); }

    .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--cream);
    }

    .cta-button.header-cta { display: none; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text { text-align: center; }
    .hero-description { margin: 0 auto 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-image { order: -1; }

    .hero-logo {
        width: 230px;
        height: 230px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title.left { text-align: center; }
    .section-title.left::after { margin-left: auto; }

    .profile-frame::after { display: none; }
    .profile-image { width: 240px; height: 290px; }

    .carousel-item img { height: 280px; }

    .carousel-nav { width: 38px; height: 38px; font-size: 16px; }
    .carousel-nav.prev { left: 10px; }
    .carousel-nav.next { right: 10px; }

    .section-title { font-size: 2rem; }

    .reiki-angelical { padding: 1.8rem 1.2rem; }
    .contact-form { padding: 1.8rem 1.2rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}
