@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
    --paper: #fbf7f2;
    --ink: #2f2a28;
    --sand: #f8eddc;
    --clay: #e07a6a;
    --olive: #6b5f52;
    --mist: #fffdf8;
    --blush: #f9dfe4;
    --sky: #dcecff;
    --mint: #def5ea;
    --sun: #ffe4a6;
    --berry: #f3c1d2;
    --lav: #e8dcff;
    --shadow: rgba(47, 42, 40, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #ffffff, var(--paper) 50%, #f6efe6 100%);
}

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 244, 239, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #efe2d6;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.brand-mark {
    background: var(--clay);
    color: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 14px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 18px;
    font-size: 15px;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.button {
    background: var(--clay);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 20px rgba(177, 60, 46, 0.2);
}

.button:hover {
    transform: translateY(-1px);
}

.button.ghost {
    background: transparent;
    border: 1px solid var(--clay);
    color: var(--clay);
    box-shadow: none;
}

.link {
    font-weight: 600;
    color: var(--clay);
}

.hero {
    padding: 90px 0 50px;
    background: linear-gradient(135deg, var(--sky), var(--mist) 50%, var(--blush));
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 12px 0;
}

.hero-copy .lead {
    font-size: 18px;
    line-height: 1.6;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--olive);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.hero-note {
    background: var(--mist);
    border-left: 4px solid var(--clay);
    padding: 12px 16px;
    border-radius: 12px;
}

.hero-media {
    position: relative;
    display: grid;
    gap: 16px;
}

.hero-float {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 45%;
    box-shadow: 0 18px 30px var(--shadow);
}

.section {
    padding: 60px 0;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.grid {
    display: grid;
    gap: 20px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: 0 18px 30px var(--shadow);
    border: 1px solid #f2e5da;
}

.price {
    font-weight: 700;
    margin: 8px 0;
}

.split {
    background: linear-gradient(120deg, var(--mint), var(--mist), var(--sky));
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    align-items: center;
}

.media-stack {
    display: grid;
    gap: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.step-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 18px 30px var(--shadow);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-top: 12px;
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
    background: #fff;
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: 0 18px 30px var(--shadow);
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.warm {
    background: linear-gradient(120deg, var(--berry), var(--sand));
}

.cta {
    background: #352f2b;
    color: #fff;
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 60px 0 20px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.img-placeholder {
    background: linear-gradient(140deg, #fff6ea, #f9f2ff);
    border: 1px dashed #d7c4b3;
    border-radius: var(--radius);
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    color: #6b5a3d;
    text-align: center;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.list li::before {
    content: '•';
    color: var(--clay);
    font-weight: bold;
    margin-right: 8px;
}

.form-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 18px 30px var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e2d6c8;
    font-family: inherit;
}

.form-card textarea {
    min-height: 120px;
}

.form-note {
    margin-top: 16px;
}

.table-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 10px;
    overflow-x: auto;
    box-shadow: 0 18px 30px var(--shadow);
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #f3e8db;
}

.narrow {
    max-width: 600px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
}

.dashboard-nav {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 18px 30px var(--shadow);
    display: grid;
    gap: 10px;
}

.dashboard-nav a {
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff4e8;
}

.stat {
    font-size: 28px;
    font-weight: 700;
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid #efe2d6;
    background: linear-gradient(90deg, #fff1e7, #f0f7ff);
}

.cards-grid .card:nth-child(1) { border-top: 4px solid var(--sun); }
.cards-grid .card:nth-child(2) { border-top: 4px solid var(--sky); }
.cards-grid .card:nth-child(3) { border-top: 4px solid var(--mint); }
.cards-grid .card:nth-child(4) { border-top: 4px solid var(--lav); }
.cards-grid .card:nth-child(5) { border-top: 4px solid var(--berry); }

.gallery-item:nth-child(odd) {
    background: linear-gradient(180deg, #ffffff, #fff4f7);
}

.gallery-item:nth-child(even) {
    background: linear-gradient(180deg, #ffffff, #f1f8ff);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.footer-grid a {
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #6b5a3d;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-float {
        position: static;
        width: 100%;
    }
}
