:root {
    --cream: #fff7ec;
    --paper: #fffcf6;
    --card: #ffffff;
    --line: #e7e5e4;
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    --green: #104e3b;
    --green-600: #16624a;
    --green-soft: #d9eee6;
    --orange: #c77715;
    --orange-600: #a35e0c;
    --text: #1f2937;
    --muted: #6b7280;
    --radius: 16px;
    --radius-lg: 18px;
    --maxw: 1120px;
    --space: clamp(18px, 2.4vw, 22px);
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
}
body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    color: var(--text);
    background: radial-gradient(
            1200px 700px at 100% -10%,
            rgb(199 119 21 / 0.08),
            transparent 60%
        ),
        radial-gradient(
            1000px 700px at 0% -10%,
            rgb(16 78 59 / 0.06),
            transparent 60%
        ),
        var(--cream);
    line-height: 1.65;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.card a {
    color: var(--green-600);
    text-decoration: none;
}
.card a:hover {
    text-decoration: underline;
}
.container {
    width: min(100% - 2rem, var(--maxw));
    margin-inline: auto;
}
section {
    padding: calc(var(--space) * 3) 0;
    scroll-margin-top: 20px;
}
.sub {
    color: var(--muted);
    max-width: 70ch;
}
.muted {
    color: #cde7dd;
}
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #f0edea;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    color: var(--green);
}
.brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--green);
}
.nav-links {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}
.nav-links a {
    color: var(--text);
    font-weight: 600;
}
.nav-links a:hover {
    color: var(--green-600);
    text-decoration: underline;
}
@media (max-width: 700px) {
    .nav-links a:not(.btn) {
        display: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #fff0;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}
.btn-primary {
    background: var(--orange);
    color: #fff !important;
    box-shadow: 0 10px 18px rgb(199 119 21 / 0.18);
}
.btn-primary:hover {
    background: var(--orange-600);
    transition: all 0.2s;
}
.btn-ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--green-600);
}
.btn-ghost:hover {
    background: #f8fafc;
}
.hero {
    padding: clamp(40px, 6vw, 60px) 0 80px;
}
.hero-wrap {
    background: linear-gradient(180deg, var(--paper), transparent 65%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space);
    align-items: center;
}
.kicker {
    color: var(--green-600);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
h1 {
    font-weight: 700;
    color: var(--green);
    line-height: 1.12;
    font-size: clamp(36px, 4.4vw, 56px);
    margin: 0.4rem 0 0.8rem;
}
.lead {
    color: var(--muted);
    max-width: 60ch;
}
.hero-media {
    aspect-ratio: 11/12;
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.badge-row {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-left: 0 !important;
    margin-left: 0;
}
.badge {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    color: #0f172a;
    list-style: none;
}
.feature {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space);
    align-items: center;
}
.feature.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}
.photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    max-height: 400px;
    object-position: top;
    object-fit: cover;
    background: var(--card);
    box-shadow: var(--shadow);
}
ul {
    padding-left: 0.25rem;
    margin: 0.6rem 0 0 1.2rem;
}
h2 {
    font-weight: 700;
    color: var(--orange-600);
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 0.6rem;
}
.pill-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.9rem;
    margin-left: 0;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-600);
    font-weight: 700;
    border: 1px solid #cfe5dc;
}
.illus-lomi {
    aspect-ratio: 16/11;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(140deg, #ffe9c7, #fff);
}
.illus-lomi::before,
.illus-lomi::after {
    content: "";
    position: absolute;
    inset: auto auto -10% -10%;
    width: 140%;
    height: 80%;
    border-radius: 40% 60% 10% 90%/ 60% 40% 70% 30%;
    background: radial-gradient(
            120% 100% at 10% 40%,
            rgb(14 165 233 / 0.08),
            transparent 60%
        ),
        linear-gradient(160deg, #fde0b2, #ffd9a1);
    transform: rotate(6deg);
}
.illus-lomi::after {
    inset: -15% -15% auto auto;
    width: 120%;
    height: 70%;
    border-radius: 50% 30% 70% 20% / 40% 70% 30% 60%;
    background: linear-gradient(180deg, #e0f4ee, #ffffff);
    transform: rotate(-8deg);
    mix-blend-mode: multiply;
    opacity: 0.7;
}
.band {
    background: var(--green);
    color: #fff;
    padding: calc(var(--space) * 3) 0;
}
.band h2,
.band h3 {
    color: #fff;
    font-size: clamp(26px, 2.6vw, 28px);
    text-align: center;
    margin: 0 0 1.2rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space);
}
.card {
    background: #0f5a44c7;
    border: 1px solid rgb(255 255 255 / 0.12);
    color: #eaf6f1;
    border-radius: 18px;
    padding: var(--space);
    box-shadow: 0 14px 28px rgb(0 0 0 / 0.12);
}
.card:hover {
    background: #285a4b;
    transition: all 0.2s;
    cursor: pointer;
}

.card a {
    color: #d1f0e4;
    text-decoration: underline;
}

.card h3 {
    text-align: start;
    font-size: 20px;
    color: #fff;
}
details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    background: #fff;
}
details + details {
    margin-top: 0.7rem;
}
summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}
summary::-webkit-details-marker {
    display: none;
}
.contact-wrap {
    padding: calc(var(--space) * 1.6) 0;
    scroll-margin-top: 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space);
}
.info-card,
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: var(--space);
    box-shadow: var(--shadow);
}
.info-card h4 {
    margin: 0.1rem 0 0.8rem;
    color: var(--green);
}
.info-card a:hover {
    text-decoration: underline;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--green-600);
}
.info-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #ece8e3;
}
.info-list li:last-child {
    border-bottom: 0;
}
.icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--green);
    flex: 0 0 34px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.input,
textarea {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus,
textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgb(22 98 74 / 0.12);
}
.hint {
    font-size: 0.86rem;
    color: var(--muted);
}
.cta {
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: calc(var(--space) * 1.6) 0;
    border-top: 1px solid rgb(255 255 255 / 0.22);
    border-bottom: 1px solid rgb(0 0 0 / 0.05);
}
.cta h2 {
    font-size: clamp(22px, 2.8vw, 30px);
    margin: 0.1rem 0 0.6rem;
    color: #fff;
}
.cta .btn {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space);
}
footer {
    border-top: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    padding: var(--space) 0;
}
@media (max-width: 980px) {
    .hero-grid,
    .feature,
    .feature.reverse,
    .grid-3,
    .contact-grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .feature {
        display: flex;
        flex-flow: column-reverse;
    }
}
