/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Reset
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100%;
}

img,
picture {
	max-width: 100%;
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
}

a {
	text-decoration: none;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
:root {
    --goldenrod: #daa520;
    --goldenrod-dark: #b8860b;
    --goldenrod-dark-transparent: rgba(184, 134, 11, 0.225);
    --sage: #a9c6a0;
    --olive: #acafa0;
    --green: #556b2f;
    --cream-light: #fffcf6;
    --cream: #fdf5e6;
    --cream-dark: #fbf1df;
    --text: #2a2a2a;
    --rust: #b55433;
}

html,
body {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

/* Typography & Colors
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: var(--cream-light); 
}

p {
    line-height: 1.5;
	margin-top: 0;
	margin-bottom: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'PT Serif', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}

/* Helpers
--------------------------------------------- */
.inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    width: 1200px;
}

.flex-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	        clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a,
a:visited {
    color: var(--green);
}

a:active,
a:focus,
a:hover {
    color: var(--goldenrod-dark);
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 1px solid var(--goldenrod);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--goldenrod-dark-transparent);
    padding-top: 15px;
    padding-bottom: 15px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-branding {
    width: 260px;
	max-width: 60%;
}

.site-navigation {
    display: flex;
    gap: 40px;
}

.site-navigation a,
.site-navigation a:visited {
    color: var(--text);
    font-size: 0.875rem;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 3px;   
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-navigation a:hover {
    color: var(--goldenrod-dark);
}

.site-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: var(--goldenrod);
    transition: width 0.3s ease;
}

.site-navigation a:hover::after {
    width: 100%;
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text);
    transition: transform .3s ease, opacity .3s ease;
}

/* Open state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.site-nav-wrapper {
    display: flex;
    align-items: center;
}

/* Mobile Menu Hidden */
@media (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .site-nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--cream);
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid var(--goldenrod-dark-transparent);
        flex-direction: column;
        gap: 12px;
        transform: translateY(-200%);
        opacity: 0;
        pointer-events: none;
        transition: transform .35s ease, opacity .35s ease;
    }

    .site-nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-navigation {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    width: calc(42% - 25px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
    text-wrap: balance;
}

.grow-word {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--green),
        var(--goldenrod-dark),
        var(--green),
        var(--goldenrod)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 100%;
    animation: growShimmer 6s ease-in-out infinite;
    font-weight: bold;
}

@keyframes growShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    text-wrap: balance;
    max-width: 32rem;
}

.hero-images {
    display: flex;
    position: relative;
    width: calc(58% - 25px);
    justify-content: center;
}

.hero-image {
    aspect-ratio: 2.25/3;
    border: 1px solid var(--goldenrod-dark-transparent);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.6s ease;
    will-change: transform;
    min-width: 350px;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.hero-col-1 {
    margin-top: 80px;
    margin-right: -20px;
    z-index: 5;
}

.hero-col-2 {
    margin-bottom: 80px;
    margin-left: -20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-container {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.about-container:before {
    background: var(--olive);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    content: "";
    min-width: calc(50vw - 300px);
    position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
    width: 35%;
}

.about-plant-parallax {
    position: absolute;
    left: 33%;
    bottom: -5%;
    width: 150px;
    height: 300px;
    background: url('../img/plant1.png') no-repeat center/contain;
    opacity: 0.5;
    z-index: 5;
    pointer-events: none;
}

.about-container .inner {
    position: relative;
    z-index: 2;
}

.about-image {
    aspect-ratio: 1/1;
    position: relative;
    width: calc(40% - 35px);
}

.about-image img {
    border: 1px solid var(--cream);
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

.about-content {
    width: calc(60% - 35px);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.5;
}

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

.tooltip,
.tooltip-img {
    border-bottom: 2px dotted var(--goldenrod);
    cursor: help;
    position: relative;
}

.tooltip::after {
    content: attr(data-tip);
    font-weight: 400;
    position: absolute;
    left: 0;
    bottom: 130%;
    background: var(--cream);
    border: 1px solid var(--goldenrod-dark-transparent);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.4;
    width: 240px;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 100;
}

.tooltip-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 130%;
    width: 140px;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-image: url('../img/sunny-avatar.jpg');
    border-radius: 12px;
    border: 2px solid var(--goldenrod-dark-transparent);
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 100;
}

.tooltip:hover::after,
.tooltip-img:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
# Differentiators
--------------------------------------------------------------*/
.diff-container {
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
}

.cards {
    align-items: stretch;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.card {
    background: #ffffff;
    border: 1px solid var(--goldenrod-dark-transparent);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    flex-basis: calc(33.3% - 12.5px);
    padding: 25px;
    transform: translateY(0);
    transition: 0.2s;
}

.card i {
    color: var(--green);
    font-size: 1.5rem;
}

.card h3 {
    font-weight: 700;
    margin: 1.5rem 0;
}

.card p {
    margin: 0;
}

.card:hover {
    border: 1px solid var(--goldenrod);
    transform: translateY(-8px);
    transition: 0.2s;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    position: relative;
    padding: 50px 0;
}

.services::before {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 600px;
    width: 72.5%;
    background: var(--olive);
    z-index: 1;
}

.services .inner {
    position: relative;
    z-index: 2;
}

.services-box {
    background: var(--cream-light);
    border: 1px solid var(--goldenrod-dark-transparent);
    border-radius: 14px;
    padding: 50px 50px 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.services-plant-parallax {
    background: transparent url('../img/plant7.png') no-repeat center center / contain;
    content: "";
    position: absolute;
    bottom: -200px;
    right: -70px;
    width: 130px;
    height: 230px;
    opacity: 0.5;
    pointer-events: none;
}

.services-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-accordion {
    margin-top: 20px;
}

.acc-item + .acc-item {
	margin-top: 8px;
}

.acc-btn {
    width: 100%;
    padding: 18px 22px;
    background: white;
    border: 1px solid var(--goldenrod-dark-transparent);
    border-radius: 8px;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.acc-btn:hover {
    border: 1px solid var(--goldenrod);
}

.acc-btn i {
    transition: transform 0.3s ease;
}

.acc-item.active .acc-btn i {
    transform: rotate(180deg);
}

.acc-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.acc-item.active .acc-panel {
    max-height: 700px;
    padding-top: 18px;
    padding-bottom: 36px;
}

.acc-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding: 60px 0 120px 0;
}

.contact-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    width: 42%;
}

.contact-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 90%;
}

.contact-form-two-col {
    width: 58%;
    background: var(--cream-light);
    border: 1px solid var(--goldenrod-dark-transparent);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form-two-col label {
    display: block;
    margin-bottom: 20px;
}

.contact-form-two-col label span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-form-two-col input,
.contact-form-two-col textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid var(--goldenrod-dark-transparent);
    background: white;
}

.contact-form-two-col textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-two-col button {
    width: 100%;
    padding: 14px 18px;
    background: var(--green);
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form-two-col button:hover {
    background: var(--goldenrod-dark);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: #1f1f1f;
    padding-top: 60px;
    color: white;
}

.site-footer a,
.site-footer a:visited {
    color: var(--cream);
}

.site-footer a:active,
.site-footer a:focus,
.site-footer a:hover {
    color: var(--goldenrod);
}

.footer-insta {
    text-align: center;
    margin-bottom: 40px;
}

.footer-insta h3 {
    font-family: 'PT Serif', serif;
    margin-bottom: 20px;
}

.eapps-instagram-feed-posts-grid .eapps-instagram-feed-posts-item {
    border-radius: 12px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--green);
    gap: 20px;
    flex-wrap: wrap;
}

.footer-main p {
	margin-bottom: 0;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-social a {
    color: white;
    font-size: 1.3rem;
}

.footer-social a:hover i {
    color: var(--goldenrod);
}

.footer-credits {
    padding: 0 0 20px 0;
}

.footer-credits p {
    font-size: 0.75rem;
}

.footer-credits a,
.footer-credits a:visited {
    border-bottom: 1px dotted var(--goldenrod);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1300px) {
    .about-plant-parallax {
        left: 29%;
    }
}

@media (max-width: 1200px) {
	.hero-content h1 {
		font-size: 3.75rem;
	}

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

    .about-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

	.services::before {
		height: 520px;
		width: 78%;
	}

    .diff-container {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .cards {
        margin-top: 40px;
    }
}

@media (max-width: 960px) {
	.flex-container {
		flex-wrap: wrap;
	}

	.site-branding {
		width: 220px;
	}

	.site-navigation {
		gap: 24px;
	}

	.hero {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.hero-content,
	.hero-images {
		width: 100%;
	}

    .hero-image {
        /* min-width: 250px; */
        width: 40%;
    }

	.hero-content {
		order: 1;
		text-align: center;
		margin-bottom: 20px;
	}

	.hero-content p {
        font-size: 1.25rem;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-images {
		order: 2;
	}

	.about-container {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.about-container:before {
		min-width: 40%;
	}

    .about-plant-parallax {
        left: 40%;
        width: 100px;
        height: 250px;
    }

    .about-image,
	.about-content {
		width: 47%;
	}

	.cards {
		gap: 16px;
        margin-top: 30px;
	}

	.card {
		padding: 22px;
	}

    .services {
        padding: 40px 0;
    }

    .services-plant-parallax {
        opacity: 0.25;
        height: 170px;
        width: 100px;
        right: -50px;
    }

    .contact {
		padding: 40px 0;
	}

    .contact-columns {
        gap: 40px;
    }
}

@media (max-width: 800px) {
	.site-header .flex-container {
		gap: 20px;
	}

	.site-navigation {
		font-size: 0.8rem;
	}

	.about-container:before {
		display: none;
	}

    .about-plant-parallax {
        left: auto;
        right: 0;
        bottom: -15%;
    }

	.about-image,
	.about-content {
		width: 100%;
	}

    .about-content {
        order: 1;
    }

	.about-image {
		margin-bottom: 0;
        order: 2;
        aspect-ratio: 16/9;
        position: relative;
    }

    .about-image img {
        border: 1px solid var(--cream);
        border-radius: 12px;
        height: 100%;
        object-fit: cover;
        object-position: bottom center;
        width: 100%;
    }

    .diff-container {
        padding-top: 60px;
        padding-bottom: 80px;
    }

	.cards {
		flex-direction: column;
	}

	.card {
		flex-basis: 100%;
	}

	.services::before {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
		width: 100%;
		height: 480px;
	}

	.services-box {
		padding: 40px 30px 50px;
	}

	.contact-columns {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info,
    .contact-form-two-col {
        width: 100%;
    }

	.contact-info p {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.site-header {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.site-header .flex-container {
		align-items: center;
		gap: 10px;
	}

	.site-branding {
		width: 200px;
		max-width: 100%;
	}

	.site-navigation {
		width: 100%;
		justify-content: flex-start;
		gap: 20px;
		flex-wrap: wrap;
	}

    .site-navigation a:after {
        display: none;
    }

    .hero-image {
        min-width: 200px;
        width: 45%;
    }

	.hero-content h1 {
		font-size: 3rem;
	}

	.hero-content p {
		font-size: 1.125rem;
	}

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

	.services-box {
		padding: 32px 22px 44px;
	}

	.services-intro {
		font-size: 1rem;
	}

	.acc-btn {
		font-size: 0.8rem;
		letter-spacing: 1.5px;
	}

	.contact-form-two-col {
		padding: 30px 24px;
	}

	.footer-main {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hero {
		padding-top: 50px;
		padding-bottom: 20px;
	}

	.hero-content h1 {
		font-size: 2.6rem;
	}

	.hero-image {
		max-width: 100%;
        min-width: 200px;
	}

	.about-container {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	.about-container:after {
		display: none;
	}

	.card {
		padding: 20px 18px;
	}

	.services::before {
		height: 420px;
	}

	.contact {
		padding: 20px 0 60px 0;
	}

	.contact-form-two-col button {
		font-size: 0.95rem;
	}

	.footer-insta {
		margin-bottom: 24px;
	}
}
