@font-face {
  font-family: 'Futura PT';
  src: url('./Assets/futura-pt/FuturaCyrillicBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Futura PT';
  src: url('./Assets/futura-pt/FuturaCyrillicMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Futura PT';
  src: url('./Assets/futura-pt/FuturaCyrillicDemi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Futura PT';
  src: url('./Assets/futura-pt/FuturaCyrillicHeavy.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

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

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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    background-color: #ffffff;
    color: #414141;
    font-family: 'Inter', sans-serif;
}

.container{
    width:  42rem;
    margin: 0 auto;
}


/* ── MOBILE HEADER ───────────────────────────── */
.nav-desktop {
    display: none;
}

.header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 2rem;
    background-color: #EDF2F1;
}

.hamburger {
    background: none;
    border: none;
    font-size: 3.2rem;
    cursor: pointer;
    color: #414141;
    line-height: 1;
    padding: 0 0 0 4rem;

}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-name {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 2.8rem;
    color: #414141;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #666;
    text-transform: uppercase;
    margin-top: -.5rem;
}

.header-spacer {
    width: 2.4rem;
}

/* ── HERO SECTION ────────────────────────────── */
.hero {
    background-color: #EDF2F1;
    padding: 0 0 3.6rem 3rem ;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

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

.hero-image {
    width: 100%;
    height: 90%;
    display: block;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 5rem 0 2rem;
}

.hero-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    letter-spacing: 1.2px;
}

.hero-desc {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.hero-specialties {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.4rem;
}

.btn-inquiry {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: #434746;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-family: 'Futura PT', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    cursor: pointer;
}

/* ── MEET LUCY SECTION ───────────────────────── */
.meet-lucy {
    background-color: #ffffff;
    padding: 4rem 0 3.6rem;
}

.meet-lucy-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 0 2.4rem;
}

.meet-lucy-image-col {
    display: flex;
    justify-content: center;
    order: -1;
}

.about-image {
    width: 100%;
    display: block;
}

.meet-lucy-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.meet-lucy-quote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #4347468f;
    margin-bottom: 2.4rem;
    line-height: 1.6;
}

.meet-lucy-subheading {
    font-family: 'Futura PT', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.meet-lucy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.4rem;
}

.meet-lucy-list li {
    font-size: 1.35rem;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.meet-lucy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.meet-lucy-para {
    font-size: 1.35rem;
    line-height: 1.75;
}

/* ── SLIDE NAV DRAWER ────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    max-width: 280px;
    background-color: #ffffff;
    z-index: 101;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2.4rem 2rem;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

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

.nav-drawer-close {
    background: none;
    border: none;
    font-size: 3rem;
    line-height: 1;
    color: #1a1a1a;
    cursor: pointer;
    align-self: flex-end;
    padding: 0;
    margin-bottom: 2.4rem;
}

.nav-drawer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-drawer-logo .logo-name {
    font-family: 'Futura PT', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: #1a1a1a;
}

.nav-drawer-logo .logo-subtitle {
    font-family: 'Futura PT', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: #888;
    text-transform: uppercase;
}

.nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-drawer-links li a {
    display: block;
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-drawer-links li a:hover {
    color: #888;
}

/* ── SERVICES SECTION ───────────────────────── */
.services {
    background-color: #ffffff;
    padding: 4rem 3rem 2.4rem 3rem;
}

.services-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-label {
    font-family: 'Futura PT', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.services-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.services-desc {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2.8rem;
    max-width: 38rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 1.6rem;
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 22rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 11px;
}

.service-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
   
}

.service-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #888;
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* ── WHAT TO EXPECT SECTION ─────────────────── */
.what-to-expect {
    background-color: #ffffff;
    padding: 0;
    padding: 0rem 4rem 0rem 4rem;
}

.wte-inner {
    display: flex;
    flex-direction: column;
}

.wte-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.wte-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.wte-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #5c7a6e;
    margin-bottom: 1.8rem;
}

.wte-intro {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.65;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

.wte-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.8rem;
}

.wte-list li {
    font-size: 1.4rem;
    color: #333;
    padding-left: 2.2rem;
    position: relative;
}

.wte-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    background-image: url('./Assets/checkmark-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wte-btn {
    display: inline-block;
    width: auto;
    align-self: stretch;
    padding: 1.4rem 2.8rem;
    font-size: 1.5rem;
    border-radius: 6px;
}

.wte-image-col {
    width: 100%;
    order: -1;
}

.wte-image {
    width: 100%;
    display: block;
}

.wte-image-desktop {
    display: none;
}

.wte-image-mobile {
    display: block;
}
/* -- CLIENT EXPERIENCES SECTION --------------- */
.reviews {
    background-color: #ffffff;
    padding: 3.6rem 6rem 3.6rem 6rem;
}

.reviews-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2.4rem;
    text-align: center;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
}

.review-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0ddd8;
    border-radius: 8px;
    padding: 2rem 1.8rem;
    background-color: #ffffff;
}

.review-stars {
    width: 8rem;
    height: auto;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.review-name {
    font-family: 'Futura PT', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

/* -- CONTACT / FORM SECTION ------------------- */
.contact {
    background-color: #FBF5F5;
    padding: 3rem 6rem 3rem 6rem;
}

.contact-inner {
    display: flex;
    flex-direction: column;
}

.contact-image-col {
    display: block;
    width: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 11px;
    display: block;
}

.contact-form-col {
    padding: 2.4rem 0 0;
}

.contact-label {
    font-family: 'Futura PT', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    text-align: center;
}

.contact-heading {
    font-family: 'Futura PT', sans-serif;
    font-size: 3.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.1;
}

.contact-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.4rem;
    text-align: center;
}

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

.form-row-full {
    width: 100%;
}

.form-row-half {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #ffffff;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
    background-size: 1.2rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 10rem;
}

.contact-btn {
    width: 100%;
    padding: 1.4rem 2rem;
    font-family: 'Futura PT', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
}

.contact-note {
    font-size: 1rem;
    color: #999;
    line-height: 1.5;
    text-align: center;
}

/* -- FOOTER ----------------------------------- */
.footer {
    padding: 4rem 2.4rem;
        color: #414141;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-name {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 2.4rem;
    letter-spacing: 2px;

}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
  
    text-transform: uppercase;
    margin-top: -0.2rem;
}

.footer-address {
    font-size: 1.3rem;
    line-height: 1.5;

}

.footer-directions {
    font-size: 1.1rem;
    color: #7FC8A9;
    text-decoration: underline;
    margin-bottom: 0.4rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
  
}

.footer-icon {
    width: 1.8rem;
    height: 1.8rem;
}
