
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
--cream: #FDF8F3;
--warm-white: #FEFAF6;
--deep-green: #267C93;
--mid-green: #4eada9;
--light-green: #D5EEED;
--saffron: #F6AA41;
--saffron-light: #FEF0D5;
--saffron-dark: #E98840;
--text-dark: #1A1A1A;
--text-mid: #4A4A4A;
--text-light: #897C69;
--border: rgba(38,124,147,0.14);
--blue-green: #4eada9;
--gradient: #267C93;
--grey: #897C69;
--Ayellow: #F6AA41;
--Aorange: #E98840;
--Adarkorange: #e16a3f;
}

html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--text-dark);
font-size: 17px;
line-height: 1.7;
overflow-x: hidden;
}

nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
background: rgba(253,248,243,0.94);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}

.nav-logo {
display: flex;
align-items: center;
cursor: pointer;
text-decoration: none;
}

.nav-logo img {
height: 44px;
width: auto;
object-fit: contain;
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}

.nav-links a {
color: var(--text-mid);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.02em;
transition: color 0.2s;
cursor: pointer;
}

.nav-links a:hover, .nav-links a.active { color: var(--deep-green); }

.page {min-height: 100vh; padding-top: 64px; }
.page.active { display: block; }

/* HERO */
.hero {
background: var(--deep-green);
position: relative;
overflow: hidden;
padding: 7rem 2rem 3rem;
text-align: center;
}

.hero::before {
content: '';
position: absolute;
inset: 0;
background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(246,170,65,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(78,173,169,0.35) 0%, transparent 60%);
pointer-events: none;
}

.hero-dots {
position: absolute;
inset: 0;
opacity: 0.04;
background-image: radial-gradient(circle, #fff 1px, transparent 1px);
background-size: 30px 30px;
pointer-events: none;
}

.hero-tagline {
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--saffron);
margin-bottom: 1.5rem;
position: relative;
}

.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.4rem, 5vw, 4.2rem);
font-weight: 700;
color: #fff;
line-height: 1.15;
margin-bottom: 1.25rem;
position: relative;
}

.hero h1 em {color: var(--saffron);font-style: normal; }

.hero-sub {
font-size: 1.05rem;
color: rgba(255,255,255,0.7);
max-width: 540px;
margin: 0 auto 2.5rem;
position: relative;
line-height: 1.85;
}

.btn-group {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
position: relative;
}

.btn-primary {
background: var(--saffron);
color: #fff;
border: none;
padding: 0.85rem 1.75rem;
border-radius: 100px;
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem;
font-weight: 500;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }

.btn-secondary {
background: transparent;
color: rgba(255,255,255,0.82);
border: 1.5px solid rgba(255,255,255,0.28);
padding: 0.85rem 1.75rem;
border-radius: 100px;
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem;
font-weight: 500;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.65); color: #fff; transform: translateY(-2px); }

.hero-fruits {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-top: 4rem;
position: relative;
}

.fruit-badge {
width: 68px;
height: 68px;
border-radius: 50%;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.14);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
backdrop-filter: blur(4px);
animation: float 4s ease-in-out infinite;
}

.fruit-badge:nth-child(2) { animation-delay: 1s; }
.fruit-badge:nth-child(3) { animation-delay: 2s; }
.fruit-badge:nth-child(4) { animation-delay: 0.5s; }

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}

.wave { display: block; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; height: 70px; }

/* FEATURES */
.features-wrap {
background: var(--warm-white);
padding: 4.5rem 2rem 5rem;
}

.section-label {
font-size: 0.72rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--saffron);
font-weight: 500;
margin-bottom: 0.6rem;
}

.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(1.7rem, 3vw, 2.5rem);
font-weight: 700;
color: var(--deep-green);
margin-bottom: 3rem;
line-height: 1.25;
max-width: 1100px;
}

.features-grid {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}

.feature-card {
background: var(--cream);
border: 1px solid var(--border);
border-radius: 20px;
padding: 2rem;
transition: transform 0.22s, box-shadow 0.22s;
}

.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(38,124,147,0.12);
}

.feature-icon {
width: 52px;
height: 52px;
border-radius: 14px;
background: var(--light-green);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.25rem;
}

.feature-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.18rem;
font-weight: 600;
color: var(--deep-green);
margin-bottom: 0.6rem;
}

.feature-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; }

/* CHECKOUT */
.checkout-section {
background: var(--deep-green);
padding: 5.5rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}

.checkout-section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 70% 55% at 50% 110%, rgba(246,170,65,0.22) 0%, transparent 70%);
pointer-events: none;
}

.checkout-section h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 3vw, 2.7rem);
color: #fff;
margin-bottom: 1rem;
position: relative;
}

.checkout-section > p {
color: rgba(255,255,255,0.68);
max-width: 520px;
margin: 0 auto 2.5rem;
line-height: 1.85;
position: relative;
}

.checkout-btns {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
position: relative;
}

.text-link {
color: rgba(255,255,255,0.5);
font-size: 0.88rem;
text-decoration: underline;
cursor: pointer;
background: none;
border: none;
font-family: 'DM Sans', sans-serif;
transition: color 0.2s;
}

.text-link:hover { color: rgba(255,255,255,0.8); }

/* ABOUT */
.about-hero {
background: var(--deep-green);
padding: 5rem 2rem 3.5rem;
text-align: center;
position: relative;
overflow: hidden;
}

.about-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(78,173,169,0.3) 0%, transparent 60%);
pointer-events: none;
}

.about-hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 4vw, 3.2rem);
color: #fff;
line-height: 1.2;
position: relative;
}

.about-body {
max-width: 760px;
margin: 0 auto;
padding: 4rem 2rem;
background: var(--warm-white);
}

.about-body p {
margin-bottom: 1.5rem;
color: var(--text-mid);
font-size: 1.03rem;
line-height: 1.9;
}

.about-body strong { color: var(--deep-green); font-weight: 500; }

.pull-quote {
background: var(--deep-green);
color: #fff;
padding: 3rem 2.5rem 2.5rem;
border-radius: 20px;
margin: 3rem 0 0;
position: relative;
overflow: hidden;
}

.pull-quote::before {
content: '\201C';
font-family: 'Playfair Display', serif;
font-size: 9rem;
color: rgba(246,170,65,0.3);
position: absolute;
top: -1.5rem;
left: 1.5rem;
line-height: 1;
pointer-events: none;
}

.pull-quote p {
font-family: 'Playfair Display', serif;
font-size: clamp(1.1rem, 2vw, 1.4rem);
line-height: 1.65;
color: rgba(255,255,255,0.9);
margin: 0;
position: relative;
z-index: 1;
}

/* CONTACT */
.contact-hero {
background: var(--deep-green);
padding: 5rem 2rem 3.5rem;
text-align: center;
position: relative;
overflow: hidden;
}

.contact-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(78,173,169,0.3) 0%, transparent 60%);
pointer-events: none;
}

.contact-hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 3.5vw, 3rem);
color: #fff;
position: relative;
}

.contact-hero p {
color: rgba(255,255,255,0.62);
margin-top: 1rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
font-size: 0.97rem;
line-height: 1.8;
position: relative;
}

.contact-wrap {
background: var(--warm-white);
padding: 4rem 2rem 5rem;
}

.contact-grid {
max-width: 880px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}

@media (max-width: 660px) {
.contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.form-label {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
color: var(--deep-green);
margin-bottom: 1.5rem;
}

.form-field { margin-bottom: 1.2rem; }

.form-field label {
display: block;
font-size: 0.82rem;
font-weight: 500;
color: var(--text-light);
margin-bottom: 0.4rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.form-field input,
.form-field textarea {
width: 100%;
padding: 0.75rem 1rem;
border: 1.5px solid var(--border);
border-radius: 10px;
font-family: 'DM Sans', sans-serif;
font-size: 1rem;
background: var(--cream);
color: var(--text-dark);
transition: border-color 0.2s;
outline: none;
resize: none;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--mid-green); }

.form-field textarea { height: 130px; }

.btn-submit {
background: var(--deep-green);
color: #fff;
border: none;
padding: 0.85rem 2rem;
border-radius: 100px;
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem;
font-weight: 500;
cursor: pointer;
transition: background 0.2s;
}

.btn-submit:hover { background: var(--mid-green); }

.faq-label {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
color: var(--deep-green);
margin-bottom: 1.5rem;
}

.faq-item { border-top: 1px solid var(--border); padding: 1.2rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
font-weight: 500;
color: var(--deep-green);
font-size: 0.93rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
background: none;
border: none;
width: 100%;
text-align: left;
font-family: 'DM Sans', sans-serif;
padding: 0;
line-height: 1.5;
}

.faq-toggle {
font-size: 1.2rem;
color: var(--saffron);
flex-shrink: 0;
line-height: 1.4;
transition: transform 0.2s;
font-weight: 300;
}

.faq-answer {
font-size: 0.9rem;
color: var(--text-mid);
line-height: 1.8;
margin-top: 0.85rem;
display: none;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

footer {
background: var(--deep-green);
color: rgba(255,255,255,0.45);
text-align: center;
padding: 1.75rem 2rem;
font-size: 0.85rem;
letter-spacing: 0.02em;
}

footer span { color: var(--saffron); }

@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-tagline { animation: fadeUp 0.55s ease both; }
.hero h1 { animation: fadeUp 0.55s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.55s 0.2s ease both; }
.btn-group { animation: fadeUp 0.55s 0.3s ease both; }
.hero-fruits { animation: fadeUp 0.55s 0.42s ease both; }
