/* ============================================
   All About Her Beauty Salon & Boutique
   Clean Minimalist — Emerald & Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --cream-50:   #fefdf8;
    --cream-100:  #fdf9ef;
    --cream-200:  #faf3e0;
    --cream-300:  #f5e9cc;
    --cream-400:  #eddbb0;
    --cream-500:  #e0c488;

    --stone-50:   #fafaf9;
    --stone-100:  #f5f5f4;
    --stone-200:  #e7e5e4;
    --stone-300:  #d6d3d1;
    --stone-400:  #a8a29e;
    --stone-500:  #78716c;
    --stone-600:  #57534e;
    --stone-700:  #44403c;
    --stone-800:  #292524;
    --stone-900:  #1c1917;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

address {
    font-style: normal;
}

::selection {
    background: var(--emerald-200);
    color: var(--emerald-900);
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--emerald-800);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    transition: top var(--transition);
}
.skip-link:focus {
    top: var(--space-sm);
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--emerald-400);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--stone-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--stone-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: #fff;
    border: 1.5px solid var(--emerald-700);
}
.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--stone-700);
    border: 1.5px solid var(--stone-300);
}
.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--emerald-600);
    color: var(--emerald-700);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--stone-900);
    color: #fff;
    border: 1.5px solid var(--stone-900);
}
.btn-dark:hover,
.btn-dark:focus-visible {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.25);
}

.btn-outline-light {
    background: transparent;
    color: var(--emerald-100);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    border-bottom-color: var(--stone-200);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--emerald-700);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--emerald-300);
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-line1 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--stone-900);
    letter-spacing: 0.01em;
}
.logo-line2 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone-500);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-600);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-600);
    transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--emerald-700);
}
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.btn-nav {
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    color: var(--emerald-700) !important;
    border: 1.5px solid var(--emerald-300) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    transition: all var(--transition) !important;
}
.btn-nav:hover,
.btn-nav:focus-visible {
    background: var(--emerald-700) !important;
    color: #fff !important;
    border-color: var(--emerald-700) !important;
}
.btn-nav::after { display: none !important; }

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--stone-700);
    position: relative;
    transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--stone-700);
    left: 0;
    transition: all var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--cream-50);
    overflow: hidden;
}

.hero-content {
    padding: var(--space-2xl) 0;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.greeting-line {
    width: 48px;
    height: 1px;
    background: var(--emerald-400);
    flex-shrink: 0;
}
.greeting-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--emerald-700);
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.08;
    color: var(--stone-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--stone-600);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}
.hero-subtitle strong {
    color: var(--stone-800);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--stone-500);
    letter-spacing: 0.04em;
}
.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--emerald-500);
    flex-shrink: 0;
}

.hero-image-wrap {
    position: relative;
    height: 100%;
    min-height: 520px;
}
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-image--main {
    height: 520px;
    width: 100%;
}
.hero-image--accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--cream-50);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.hero-accent-line {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--emerald-200);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--cream-50);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    border-color: var(--emerald-200);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(4, 120, 87, 0.08);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--emerald-600);
    margin-bottom: var(--space-md);
}
.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--stone-600);
}

/* ============================================
   BOUTIQUE
   ============================================ */
.boutique {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.boutique-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.boutique-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.boutique-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.boutique-content {
    padding: var(--space-lg) 0;
}

.boutique-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--stone-600);
    margin-bottom: var(--space-lg);
}

.boutique-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}
.boutique-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--stone-700);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--stone-200);
}
.boutique-features li:last-child {
    border-bottom: none;
}
.boutique-features svg {
    width: 18px;
    height: 18px;
    color: var(--emerald-500);
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--stone-600);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--emerald-300);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 0.25rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--stone-500);
    line-height: 1.6;
}

.about-images {
    position: relative;
    padding-bottom: var(--space-lg);
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--cream-100);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border: 1px solid var(--emerald-200);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   VISIT / CTA
   ============================================ */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--emerald-900);
    color: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit .section-label {
    color: var(--emerald-300);
}
.visit .section-label::before {
    background: var(--emerald-500);
}

.visit .section-title {
    color: #fff;
}

.visit-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--emerald-200);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    list-style: none;
}

.detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-item svg {
    width: 22px;
    height: 22px;
    color: var(--emerald-400);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.detail-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.2rem;
}

.detail-item p,
.detail-item a {
    font-size: 0.92rem;
    color: var(--emerald-200);
    line-height: 1.6;
}
.detail-item a:hover,
.detail-item a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.visit-map {
    position: relative;
}

.map-placeholder {
    background: var(--emerald-800);
    border: 1px solid var(--emerald-700);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.map-icon {
    width: 48px;
    height: 48px;
    color: var(--emerald-400);
    margin: 0 auto var(--space-md);
}

.map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--emerald-100);
    margin-bottom: 0.25rem;
}
.map-placeholder p:last-of-type {
    font-size: 1rem;
    color: var(--emerald-300);
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--stone-900);
    color: var(--stone-400);
    padding: var(--space-xl) 0;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    border-color: var(--emerald-700);
    color: var(--emerald-400);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--stone-200);
    line-height: 1.3;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--stone-500);
    max-width: 280px;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: var(--stone-800);
    margin-bottom: var(--space-lg);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--stone-500);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--stone-600);
}
.footer-address a {
    color: var(--emerald-400);
    transition: color var(--transition);
}
.footer-address a:hover,
.footer-address a:focus-visible {
    color: #fff;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Start below fold elements in visible state for no-JS */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container-split {
        grid-template-columns: 1fr;
    }
    .hero-image-wrap {
        min-height: 400px;
        max-width: 480px;
    }
    .hero-image--accent {
        width: 150px;
        height: 150px;
        left: -20px;
        bottom: -20px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .boutique-split,
    .about-split,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .boutique-image img,
    .about-img-main img {
        height: 400px;
    }
    .about-img-secondary {
        width: 140px;
        height: 140px;
        right: -16px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-lg);
        gap: 0;
        border-bottom: 1px solid var(--stone-200);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 99;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu li {
        border-bottom: 1px solid var(--stone-200);
    }
    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: var(--space-sm);
    }
    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
        font-size: 0.85rem;
    }
    .nav-menu a::after { display: none; }
    .btn-nav {
        text-align: center;
        margin-top: var(--space-sm);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }
    .hero-image-wrap {
        min-height: 320px;
        order: -1;
    }
    .hero-image--main {
        height: 320px;
    }
    .hero-image--accent {
        width: 120px;
        height: 120px;
        left: -10px;
        bottom: -10px;
    }
    .hero-accent-line { display: none; }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

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

    .boutique-image img,
    .about-img-main img {
        height: 300px;
    }
    .about-img-secondary { display: none; }
    .about-accent { display: none; }

    .footer-top {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        justify-content: center;
        width: 100%;
    }
    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .greeting-line {
        width: 32px;
    }
}
