/* ========================================
   Town & Country Cosmetology & Tanning
   Styles — Plum + Amber | Clean Minimalist
   ======================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum-deep: #3D1A33;
    --plum: #6B2D5B;
    --plum-light: #8B4572;
    --plum-pale: #F5EFF3;
    --plum-ghost: #FBF7FA;
    --amber: #C8923C;
    --amber-light: #D4A04A;
    --amber-pale: #FDF6E8;
    --amber-ghost: #FDF9F2;
    --text: #1A1A1A;
    --text-light: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --line: #E8E0E6;
    --line-light: #F0E8EE;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 1px 20px rgba(107, 45, 91, 0.04);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-links a:not(.nav-cta) {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--plum);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--amber) !important;
    border: 1px solid var(--amber);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--amber) !important;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding-bottom: 4rem;
}

.hero-content {
    padding-right: 1rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 2.4rem;
}

.hero-label-line {
    width: 40px;
    height: 1px;
    background: var(--plum);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--plum);
    font-weight: 300;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.8rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.6rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 45, 91, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 2.4rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-light);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-meta-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.hero-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

/* Hero image stack */
.hero-image-col {
    position: relative;
    height: 720px;
}

.hero-image-stack {
    position: relative;
    height: 100%;
}

.hero-img {
    position: absolute;
    overflow: hidden;
}

.hero-img-main {
    top: 0;
    right: 0;
    width: 82%;
    height: 85%;
}

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

.hero-img-accent {
    bottom: 0;
    left: 0;
    width: 55%;
    height: 40%;
    border: 6px solid var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

.hero-img-accent-bg {
    position: absolute;
    top: 6%;
    right: -4%;
    width: 80%;
    height: 75%;
    background: var(--plum-pale);
    z-index: -1;
    border-radius: 2px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--plum);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
}

.section-title-accent {
    font-style: italic;
    color: var(--plum);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.services-header {
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 2.4rem;
    border: 1px solid var(--line-light);
    transition: all 0.4s var(--ease-out);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--plum);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 45, 91, 0.08);
}

.service-card:hover .service-card-line {
    width: 48px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    margin-bottom: 1.6rem;
    color: var(--plum);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.service-card-line {
    height: 1px;
    background: var(--amber);
    width: 0;
    transition: width 0.4s var(--ease-out);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 8rem 0;
    background: var(--plum-ghost);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--plum);
    padding: 2rem 2.4rem;
}

.about-image-accent-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.02em;
}

.about-content-col {
    padding-left: 1rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.4rem;
}

.about-values {
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-value {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
}

.about-value-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--amber);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-value-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.about-value-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 8rem 0;
    background: var(--white);
}

.gallery-header {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 520px;
}

.gallery-item:not(.gallery-item--large) {
    min-height: 248px;
}

.gallery-item--wide {
    grid-column: span 12;
    min-height: 220px;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    padding: 6rem 0;
    background: var(--plum);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-strip-content .section-label {
    color: var(--amber-light);
}

.cta-strip-content .section-label::before {
    background: var(--amber-light);
}

.cta-strip-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-top: 0.6rem;
}

.cta-strip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-strip .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-strip .btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 8rem 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--plum);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-detail-value a {
    transition: color 0.3s ease;
}

.contact-detail-value a:hover {
    color: var(--plum);
}

.contact-map {
    border: 1px solid var(--line-light);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: none;
    filter: grayscale(0.3);
}

/* Contact Form */
.contact-form-col {
    padding-left: 1rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3.2rem;
    border: 1px solid var(--line-light);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--off-white);
    border: 1px solid var(--line);
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.06);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum);
    border-radius: 50%;
    color: var(--plum);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.form-success-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--amber);
    line-height: 1;
}

.footer-logo-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-link-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.2rem;
}

.footer-link-col a,
.footer-link-col span {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-link-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem 0;
}

.footer-copy {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-col {
        height: 480px;
        order: -1;
    }

    .hero-content {
        padding-right: 0;
    }

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

    .about-image-col {
        max-width: 500px;
    }

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

    .contact-form-col {
        padding-left: 0;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

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

    .nav-links a:not(.nav-cta) {
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid {
        padding-bottom: 3rem;
    }

    .hero-image-col {
        height: 360px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-meta-divider {
        display: none;
    }

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

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

    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item:not(.gallery-item--large) {
        min-height: 200px;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-strip .btn {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .nav-inner {
        padding: 0 1.2rem;
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

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