css
/* ==========================================================
   GROW RIPE
   Premium Launch Page
   Style Sheet - Part 1
========================================================== */

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#F7F3EC;

    color:#4B4B4B;

    overflow-x:hidden;

    line-height:1.7;

    position:relative;

    min-height:100vh;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root{

    --bg:#F7F3EC;

    --white:#ffffff;

    --forest:#1F3A2E;

    --gold:#B08D57;

    --text:#565656;

    --light:#FAF8F4;

    --border:#E6DDD2;

    --shadow:0 20px 60px rgba(0,0,0,.08);

}

/* ==========================================================
   BACKGROUND
========================================================== */

.background-wrapper{

    position:fixed;

    inset:0;

    z-index:-10;

    overflow:hidden;

    background:

    radial-gradient(circle at top left,
    rgba(255,249,224,.95),
    transparent 38%),

    radial-gradient(circle at bottom right,
    rgba(176,141,87,.12),
    transparent 50%),

    linear-gradient(
    180deg,
    #FCFBF8,
    #F8F4ED,
    #F3EEE6);

}

.light-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    120deg,

    transparent 0%,

    rgba(255,248,220,.20) 40%,

    rgba(255,244,205,.30) 50%,

    transparent 60%);

    animation:sunlightMove 18s linear infinite;

}

.grain-overlay{

    position:absolute;

    inset:0;

    opacity:.035;

    background-image:url("https://www.transparenttextures.com/patterns/paper-fibers.png");

}

/* ==========================================================
   MAIN WRAPPER
========================================================== */

.page-wrapper{

    width:100%;

    max-width:1440px;

    margin:auto;

    padding:70px 70px 40px;

}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero-section{

    display:grid;

    grid-template-columns:58% 42%;

    align-items:center;

    gap:80px;

    min-height:92vh;

    position:relative;

}
.hero-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-right:30px;

    z-index:2;

}

.logo-wrapper{

    margin-bottom:65px;

}

.logo{

    width:100%;

    max-width:470px;

    height:auto;

    object-fit:contain;

    display:block;

    transition:all .45s ease;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.08));

}

.logo:hover{

    transform:translateY(-3px);

}

/* ==========================================================
   CONTENT
========================================================== */

.category{

    display:inline-block;

    text-transform:uppercase;

    font-size:.88rem;

    letter-spacing:5px;

    color:var(--forest);

    font-weight:700;

    margin-bottom:35px;

}

.dot{

    margin:0 12px;

    color:var(--gold);

}

h1{

    font-family:'Cormorant Garamond',serif;

    font-size:88px;

    font-weight:600;

    color:var(--forest);

    line-height:.92;

    letter-spacing:1px;

    margin-bottom:22px;

}

.gold-line{

    width:110px;

    height:2px;

    margin:28px 0 35px;

    background:linear-gradient(
    to right,
    var(--gold),
    rgba(176,141,87,.15));

    border-radius:100px;

}

.intro{

    font-size:24px;

    font-weight:500;

    color:var(--gold);

    margin-bottom:24px;

    font-family:'Cormorant Garamond',serif;

}

.content-wrapper p{

    max-width:640px;

    font-size:18px;

    line-height:1.95;

    color:#555;

    margin-bottom:18px;

}

/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-visual{

    position:relative;

    width:100%;

    max-width:560px;

}

.hero-image{

    width:88%;

    margin-left:auto;

    display:block;

    border-radius:26px;

    box-shadow:

    0 40px 90px rgba(0,0,0,.10),

    0 10px 25px rgba(176,141,87,.15);

    transition:.45s ease;

}

.hero-image:hover{

    transform:translateY(-6px);

}
css
/* ==========================================================
   CONTACT SECTION
========================================================== */

.contact-section{

    margin-top:40px;

    display:flex;

    justify-content:flex-start;

}

.contact-card{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px 40px;

    width:100%;

    max-width:560px;

    box-shadow:var(--shadow);

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-4px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.contact-card h2{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:var(--forest);

    margin-bottom:15px;

}

.contact-description{

    color:var(--text);

    margin-bottom:25px;

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    color:var(--forest);

    font-weight:600;

    font-size:18px;

    transition:.30s;

}

.contact-item:hover{

    color:var(--gold);

    transform:translateX(8px);

}

.contact-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffffff;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    font-size:18px;

}

.business-note{

    margin-top:30px;

    color:var(--gold);

    font-weight:600;

    letter-spacing:.5px;

}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer{

    max-width:1440px;

    margin:120px auto 40px;

    padding:0 70px;

    text-align:center;

}

.footer-divider{

    width:120px;

    height:2px;

    margin:0 auto 25px;

    background:linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent);

}

.footer-tagline{

    color:var(--forest);

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:14px;

}

.footer-tagline span{

    color:var(--gold);

    margin:0 10px;

}

.copyright{

    color:#8c8c8c;

    font-size:.95rem;

}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes sunlightMove{

    0%{

        transform:translateX(-35%);

        opacity:.55;

    }

    50%{

        transform:translateX(0);

        opacity:.8;

    }

    100%{

        transform:translateX(35%);

        opacity:.55;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-left,
.hero-right,
.contact-card{

    animation:fadeUp 1s ease both;

}

.hero-right{

    animation-delay:.2s;

}

.contact-card{

    animation-delay:.35s;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

.page-wrapper{

padding:50px 35px;

}

.hero-section{

grid-template-columns:1fr;

gap:50px;

text-align:center;

min-height:auto;

}

.hero-left{

align-items:center;

}

.content-wrapper p{

max-width:100%;

}

.contact-section{

justify-content:center;

}

.hero-image{

max-width:500px;

margin:auto;

}

}

@media(max-width:768px){

.page-wrapper{

padding:35px 22px;

}

.logo{

max-width:230px;

margin:auto;

}

h1{

font-size:52px;

}

.category{

font-size:.82rem;

line-height:1.8;

}

.intro{

font-size:20px;

}

.content-wrapper p{

font-size:16px;

}

.contact-card{

padding:28px;

}

.contact-card h2{

font-size:34px;

}

.footer-tagline{

font-size:14px;

line-height:1.8;

}

.site-footer{

padding:0 25px;

}

}

@media(max-width:480px){

h1{

font-size:42px;

}

.logo{

max-width:190px;

}

.contact-item{

font-size:15px;

word-break:break-word;

}

.contact-icon{

width:36px;

height:36px;

font-size:16px;

}

.business-note{

font-size:14px;

line-height:1.8;

}

}

/* ==========================================================
   END OF STYLESHEET
========================================================== */
```
