/* Terra Wellness Design - Japanese Bakery London Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --terra: #c65d3b;
    --terra-dark: #a64b2e;
    --terra-light: #e07a5f;
    --sand: #f4f1de;
    --sand-dark: #e9e5c8;
    --cream: #fefae0;
    --charcoal: #3d405b;
    --charcoal-light: #5a5d7a;
    --white: #ffffff;
    --accent: #81b29a;
    --accent-light: #a8d5ba;

    --shadow-sm: 0 2px 4px rgba(61, 64, 91, 0.05);
    --shadow: 0 4px 12px rgba(61, 64, 91, 0.1);
    --shadow-lg: 0 12px 24px rgba(61, 64, 91, 0.15);
    --shadow-xl: 0 20px 40px rgba(61, 64, 91, 0.2);
}

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--sand);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Info Bar */
.info-bar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 3px solid var(--terra);
}

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

.info-left {
    display: flex;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item strong {
    color: var(--terra-light);
}

/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(198, 93, 59, 0.3);
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-info {
    text-align: right;
}

.phone-big {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terra);
    font-family: 'Outfit', sans-serif;
}

.email-small {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrap {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sand);
    color: var(--terra-dark);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    background: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Section Headers */
.sec-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.sec-label {
    display: inline-block;
    color: var(--terra);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.sec-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.sec-sub {
    color: var(--charcoal-light);
    font-size: 1.1rem;
}

/* Products Grid */
.products-sec {
    padding: 80px 0;
    background: var(--sand);
}

.products-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.item-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.item-card.popular {
    border: 2px solid var(--terra);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--terra);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.item-visual {
    height: 160px;
    background: linear-gradient(135deg, var(--sand-dark) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.item-body {
    padding: 24px;
}

.item-name {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.item-desc {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.item-list {
    list-style: none;
    margin-bottom: 20px;
}

.item-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: 6px;
}

.item-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.item-cost {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--terra);
    font-family: 'Outfit', sans-serif;
}

.pick-btn {
    background: var(--sand);
    color: var(--terra-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.pick-btn:hover {
    background: var(--terra);
    color: white;
}

/* Features Grid */
.features-sec {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    text-align: center;
    padding: 32px 20px;
    background: var(--sand);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-box:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-ico {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(198, 93, 59, 0.25);
}

.feature-title {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.feature-txt {
    color: var(--charcoal-light);
    font-size: 0.9rem;
}

/* How It Works */
.steps-sec {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
}

.steps-row {
    display: flex;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 35px;
    width: 20px;
    height: 2px;
    background: var(--terra);
    opacity: 0.3;
}

.step-num {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--terra);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--terra);
    margin: 0 auto 16px;
    box-shadow: var(--shadow);
    font-family: 'Outfit', sans-serif;
}

.step-name {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.step-desc {
    color: var(--charcoal-light);
    font-size: 0.9rem;
}

/* Phone Section */
.phone-sec {
    background: var(--charcoal);
    color: white;
    padding: 60px 0;
    margin: 40px 0;
}

.phone-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.phone-left h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.phone-left p {
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.phone-list {
    list-style: none;
}

.phone-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.phone-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--terra);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.phone-right {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.phone-icon-big {
    font-size: 80px;
    margin-bottom: 16px;
}

.phone-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terra-light);
}

/* FAQ */
.faq-sec {
    padding: 80px 0;
    background: var(--sand);
}

.faq-box {
    max-width: 800px;
    margin: 0 auto;
}

.faq-row {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-q {
    padding: 20px 24px;
    background: var(--white);
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-a {
    padding: 0 24px 20px;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* Order Section */
.order-sec {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--terra-dark) 0%, var(--terra) 100%);
    color: white;
}

.order-sec .sec-title {
    color: white;
}

.order-sec .sec-sub {
    color: rgba(255,255,255,0.8);
}

.order-box {
    max-width: 680px;
    margin: 0 auto;
}

.order-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.fld-group {
    margin-bottom: 20px;
}

.fld-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
}

.fld-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.fld-group input:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 4px rgba(198, 93, 59, 0.1);
}

.prod-select {
    margin-bottom: 28px;
}

.prod-select-title {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 700;
}

.prod-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prod-opt {
    display: flex;
    align-items: center;
    padding: 14px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--sand);
}

.prod-opt:hover {
    border-color: var(--terra-light);
    background: var(--white);
}

.prod-opt.active {
    border-color: var(--terra);
    background: rgba(198, 93, 59, 0.05);
}

.prod-opt input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--terra);
}

.prod-info {
    flex: 1;
}

.prod-name {
    font-weight: 600;
    color: var(--charcoal);
    display: block;
}

.prod-note {
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

.prod-cost {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--terra);
    font-family: 'Outfit', sans-serif;
}

.send-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(198, 93, 59, 0.4);
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 93, 59, 0.5);
}

.secure-note {
    text-align: center;
    margin-top: 16px;
    color: var(--charcoal-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Disclaimer */
.warn-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--terra);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 48px auto;
    max-width: 900px;
}

.warn-box strong {
    color: var(--terra-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.warn-box p {
    color: var(--charcoal);
    margin: 0;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(198, 93, 59, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.company-card h4 {
    color: var(--terra-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.company-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-title {
    color: var(--terra-light);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--terra-light);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-row {
        flex-direction: column;
    }
    .step-item:not(:last-child)::after {
        display: none;
    }
    .phone-flex {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .products-wrap {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .info-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .header-wrap {
        flex-direction: column;
        gap: 14px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .order-card {
        padding: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
