/* =========================================================
   RESET
========================================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    background:#ece4d4;
    color:#1f1f1f;
    font-family:'Inter',sans-serif;
    line-height:1.7;

}

/* =========================================================
   FONTS
========================================================= */

@font-face{

    font-family:'Inter';

    src:url('../fonts/Inter_24pt-Regular.ttf') format('truetype');

    font-weight:400;

    font-style:normal;

}

@font-face{

    font-family:'Inter';

    src:url('../fonts/Inter_24pt-SemiBold.ttf') format('truetype');

    font-weight:600;

    font-style:normal;

}

@font-face{

    font-family:'Inter';

    src:url('../fonts/Inter_24pt-Bold.ttf') format('truetype');

    font-weight:700;

    font-style:normal;

}

@font-face{

    font-family:'Cormorant Garamond';

    src:url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');

    font-weight:400;

    font-style:normal;

}

@font-face{

    font-family:'Cormorant Garamond';

    src:url('../fonts/CormorantGaramond-SemiBold.ttf') format('truetype');

    font-weight:600;

    font-style:normal;

}

@font-face{

    font-family:'Cormorant Garamond';

    src:url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');

    font-weight:700;

    font-style:normal;

}

/* =========================================================
   CONTAINER
========================================================= */

.container{

    width:min(1280px,92%);
    margin:auto;

}

/* =========================================================
   HEADER
========================================================= */

.site-header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(247,242,232,0.94);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,0.08);

}

.header-inner{

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

    padding:20px 0;

}

.logo{

    font-family:
    'Cormorant Garamond',
    serif;

    font-size:42px;
    font-weight:700;
    letter-spacing:1px;

    color:#111;

    text-decoration:none;

}

.btn-primary{

    display:inline-block;

    background:#111;
    color:#fff;

    padding:14px 24px;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    border-radius:4px;

    transition:0.25s;

}

.btn-primary:hover{

    background:#333;

}

/* =========================================================
   HERO
========================================================= */

.hero{

    padding:110px 0 80px 0;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.hero-copy h1{

    font-family:
    'Cormorant Garamond',
    serif;

    font-size:82px;
    line-height:0.95;

    margin-bottom:30px;

    color:#111;

}

.hero-copy p{

    font-size:21px;
    color:#444;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.primary-button{

    display:inline-block;

    background:#111;
    color:#fff;

    padding:18px 34px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    border-radius:5px;

    transition:0.25s;

}

.primary-button:hover{

    background:#333;

}

.secondary-button{

    display:inline-block;

    border:2px solid #111;

    color:#111;

    padding:16px 32px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    border-radius:5px;

    transition:0.25s;

}

.secondary-button:hover{

    background:#111;
    color:#fff;

}

.hero-price{

    margin-top:35px;

    font-size:17px;
    color:#666;

}

.hero-price strong{

    color:#111;
    font-size:28px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:10px;

    box-shadow:
    0 40px 70px rgba(0,0,0,0.18);

    transform:
    rotate(-2deg);

}

/* =========================================================
   FEATURES
========================================================= */

.features{

    padding:100px 0;

    background:#f7f2e8;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-family:
    'Cormorant Garamond',
    serif;

    font-size:62px;

    margin-bottom:18px;

}

.section-heading p{

    max-width:760px;
    margin:auto;

    color:#555;
    font-size:20px;

}

.feature-grid{

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:10px;

    box-shadow:
    0 12px 30px rgba(0,0,0,0.05);

}

.feature-card h3{

    font-size:24px;

    margin-bottom:18px;

    font-family:
    'Cormorant Garamond',
    serif;

}

.feature-card p{

    color:#555;

}

/* =========================================================
   SAMPLE SECTION
========================================================= */

.samples{

    padding:110px 0;

}

.sample-grid{

    display:grid;
    grid-template-columns:
    repeat(2,1fr);

    gap:40px;

}

.sample-grid img{

    width:100%;

    border-radius:10px;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.15);

}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works{

    padding:110px 0;

    background:#f7f2e8;

}

.steps{

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:40px;

}

.step{

    text-align:center;

}

.step-number{

    width:80px;
    height:80px;

    margin:auto auto 25px auto;

    border-radius:50%;

    background:#111;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    font-weight:700;

}

.step h3{

    font-size:28px;

    margin-bottom:18px;

    font-family:
    'Cormorant Garamond',
    serif;

}

.step p{

    color:#555;

}

/* =========================================================
   CTA SECTION
========================================================= */

.final-cta{

    padding:120px 0;

    text-align:center;

}

.final-cta h2{

    font-family:
    'Cormorant Garamond',
    serif;

    font-size:72px;

    margin-bottom:30px;

}

.final-cta p{

    max-width:760px;
    margin:auto auto 40px auto;

    color:#555;
    font-size:21px;

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{

    background:#111;
    color:#ddd;

    padding:50px 0;

    text-align:center;

}

.site-footer a{

    color:#fff;
    text-decoration:none;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1024px){

    .hero-grid,
    .feature-grid,
    .sample-grid,
    .steps{

        grid-template-columns:1fr;

    }

    .hero-copy h1{

        font-size:64px;

    }

    .section-heading h2{

        font-size:48px;

    }

    .final-cta h2{

        font-size:54px;

    }

}

@media(max-width:640px){

    .hero{

        padding:70px 0;

    }

    .hero-copy h1{

        font-size:52px;

    }

    .hero-copy p{

        font-size:18px;

    }

    .logo{

        font-size:32px;

    }

    .header-inner{

        flex-direction:column;
        gap:20px;

    }

}

/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav{

    display:flex;
    gap:30px;
    align-items:center;

}

.main-nav a{

    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.2s;

}

.main-nav a:hover{

    color:#000;

}

@media(max-width:1024px){

    .main-nav{

        display:none;

    }

}

/* =========================================================
   CMS PAGES
========================================================= */

.page-content{

    padding:60px 0 100px;

}

.page-hero{

    max-width:900px;

    margin:0 auto 50px;

}

.page-hero img{

    width:100%;

    max-height:380px;

    object-fit:cover;

    border-radius:14px;

}

.page-article{

    max-width:900px;

    margin:0 auto;

}

.page-article h1{

    margin:0 0 30px;

    font-size:56px;

    line-height:1.1;

}

.page-article h2{

    margin:60px 0 20px;

    font-size:40px;

    line-height:1.2;

}

.page-article h3{

    margin:40px 0 15px;

    font-size:30px;

}

.page-article p{

    margin:0 0 24px;

    font-size:22px;

    line-height:1.8;

}

.page-article ul,
.page-article ol{

    margin:0 0 30px 30px;

}

.page-article li{

    margin-bottom:12px;

    font-size:22px;

    line-height:1.7;

}

.page-article img{

    max-width:100%;

    height:auto;

}

.page-article blockquote{

    margin:40px 0;

    padding-left:25px;

    border-left:5px solid #b68b4c;

    font-style:italic;

}

/* =========================================================
   PAGE CALL TO ACTION
========================================================= */

.page-cta{

    margin-top:80px;

    padding:50px;

    background:#f8f5ef;

    border:1px solid #e4d9c7;

    border-radius:16px;

    text-align:center;

}

.page-cta h2{

    margin-top:0;

    margin-bottom:20px;

}

.page-cta p{

    max-width:700px;

    margin:0 auto 35px;

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{

    margin-top:100px;

    background:#262626;

    color:#d8d8d8;

    border-top:1px solid #3b3b3b;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:50px;

    padding:55px 0 40px;

}

.footer-links h3{

    margin:0 0 18px;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    font-weight:600;

    color:#ffffff;

}

.footer-links ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links a{

    color:#c9c9c9;

    text-decoration:none;

    font-size:14px;

    line-height:1.7;

    transition:0.2s;

}

.footer-links a:hover{

    color:#ffffff;

}

.footer-bottom{

    border-top:1px solid #3b3b3b;

    text-align:center;

    padding:22px 0;

    font-size:13px;

    color:#9a9a9a;

}

.footer-bottom span{

    margin:0 12px;

    color:#555;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

    .footer-links{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

}

@media(max-width:600px){

    .footer-links{

        grid-template-columns:1fr;

        gap:30px;

    }

}

/* =========================================================
   BIRTHDAY TOOLS
========================================================= */

.tool-form{

    margin:40px 0;

}

.tool-form label{

    display:block;

    font-size:22px;

    font-weight:600;

    margin-bottom:12px;

}

.tool-form input[type="date"]{

    width:100%;
    max-width:320px;

    padding:16px;

    font-size:18px;

    border:1px solid #d5c8b5;

    border-radius:8px;

    background:#fff;

    margin-bottom:20px;

}

.tool-form button{

    display:inline-block;

    background:#111;
    color:#fff;

    border:none;

    padding:16px 34px;

    font-size:18px;

    font-weight:700;

    border-radius:5px;

    cursor:pointer;

    transition:.25s;

}

.tool-form button:hover{

    background:#333;

}

.tool-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin:40px 0;

}

.tool-grid .tool-card{

    display:block;

    text-decoration:none;

    color:inherit;

    transition:.25s;

}

.tool-grid .tool-card:hover{

    transform:translateY(-4px);

    box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.tool-grid .tool-card h3{

    margin-bottom:15px;

}

.tool-grid .tool-card p{

    margin:0;

    color:#555;

    line-height:1.6;

}

.tool-results{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:50px;

}

.tool-card{

    background:#fff;

    padding:30px;

    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    text-align:center;

}

.tool-card h3{

    margin:0 0 15px;

    font-size:24px;

}

.tool-card .number{

    font-size:clamp(34px,4vw,40px);
    line-height:1.2;
    word-break:break-word;

}

.tool-card small{

    display:block;

    margin-top:10px;

    color:#777;

}

/* =========================================================
   MOON HERO
========================================================= */

.moon-hero{

    text-align:center;

    max-width:900px;

    margin:0 auto;

}

.moon-canvas{

    margin:50px auto;

}

.moon-hero h2{

    font-size:52px;

    margin-bottom:10px;

    letter-spacing:2px;

}

.moon-date{

    font-size:22px;

    color:#666;

}

.moon-illumination{

    font-size:26px;

    font-weight:700;

    margin:30px 0;

}

.moon-description{

    max-width:700px;

    margin:40px auto;

    font-size:22px;

    line-height:1.8;

}