
:root {
    --bg: #ffffff;
    --bg-alt: #f6f2eb;
    --bg-dark: #111111;
    --text: #1b1b1b;
    --muted: #666666;
    --gold: #d4af37;
    --gold-soft: #e3c76a;
    --border: #e1ded7;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

/* Layout */

.container {
    width: min(1120px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
}

.section-narrow {
    padding: 4rem 0 5rem;
}

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.inner {
    margin-top: 3rem;
    border-radius: 1.75rem;
    padding: 2.75rem 2.5rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-header h1,
.section-header h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--muted);
    font-size: 0.98rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.85rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fdfbf6;
    gap: 0.75rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: radial-gradient(circle at 20% 20%, #ffffff 0, #3c3214 50%, #111111 100%);
    color: #f7f3e4;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.78rem;
    color: #b5b0a0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #f3efe3;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.25rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.btn-nav {
    padding-inline: 0.5rem;
    padding-block: 0.5rem;
    border-radius: 999px;
    border: 0.25px solid rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
}

/* Hero */

.hero {
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at 0 0, #f7f3e6 0, #f2e7d1 28%, #ffffff 60%);
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3vw + 1.4rem, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    color: var(--muted);
    max-width: 34rem;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #756f60;
}

.hero-badges span {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(17, 17, 17, 0.98);
    color: #f8f4ea;
    padding: 1.9rem 1.8rem;
    border-radius: 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 0 0, rgba(255,255,255,0.16) 0, transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(212,175,55,0.28) 0, transparent 50%);
    opacity: 0.7;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    margin-top: 0;
}

.hero-card p {
    font-size: 0.92rem;
    color: #dcd4c2;
}

.hero-list {
    margin: 1.5rem 0 1.5rem;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: #e2dccd;
}

.hero-list li + li {
    margin-top: 0.4rem;
}

/* Strip */

.section-strip {
    padding: 1.05rem 0;
    background: #111111;
    color: #f2ede1;
}

.strip-inner {
    text-align: center;
    font-size: 0.87rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Grids */

.steps-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.6rem 1.5rem 1.7rem;
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.03);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3a3215;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--muted);
}

.step-card ul {
    margin: 0.9rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: #4e4a40;
}

/* Split */

.split {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2.4rem;
    align-items: flex-start;
}

.icon-list {
    list-style: none;
    padding-left: 0;
    margin: 1.2rem 0 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #4a463b;
}

.icon-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.7);
    font-size: 0.78rem;
}

/* Stats */

.stat-panel {
    display: grid;
    gap: 1rem;
}

.stat-card {
    border-radius: 1.25rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(212,175,55,0.5);
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.2), rgba(17,17,17,0.85));
    color: #f2ede2;
}

.stat-value {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #dfd6c4;
}

.stat-note {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Gallery */

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.2rem;
}

.gallery-item {
    border-radius: 1.4rem;
    border: 1px solid var(--border);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-item h3 {
    font-size: 1rem;
    margin: 0.9rem 1.1rem 0.25rem;
    font-family: "Playfair Display", serif;
}

.gallery-item p {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0 1.1rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.gallery-card {
    border-radius: 1.6rem;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.gallery-image {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

.gallery-body {
    padding: 1.4rem 1.5rem 1.5rem;
}

.gallery-body h2 {
    font-size: 1rem;
    font-family: "Playfair Display", serif;
    margin: 0 0 0.4rem;
}

.gallery-body p {
    font-size: 0.9rem;
    color: var(--muted);
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gallery-tags li {
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #f5f0e4;
    color: #6b624f;
}

/* Forms */

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2.3rem;
    align-items: flex-start;
}

.form-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem 1.8rem 1.8rem;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.form-row.two {
    flex-direction: row;
}

.form-row.two > * {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
    color: #5b564a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid var(--border);
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    outline: none;
    background: #fbf8f2;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(212,175,55,0.9);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
    background: #ffffff;
}

.form-row-bottom {
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.form-info {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 17rem;
}

/* Side panel */

.side-panel {
    border-radius: 1.5rem;
    padding: 1.8rem 1.6rem;
    background: linear-gradient(145deg, #111111, #3a3215);
    color: #f6f0e4;
    border: 1px solid rgba(212,175,55,0.6);
    box-shadow: var(--shadow-soft);
}

.side-panel h2 {
    font-family: "Playfair Display", serif;
    margin-top: 0;
}

.side-panel p {
    font-size: 0.9rem;
    color: #e3dccb;
}

.side-list {
    margin: 1.2rem 0 1.4rem;
    padding-left: 1.4rem;
    font-size: 0.88rem;
}

.side-note {
    font-size: 0.86rem;
    color: #f1eadb;
}

/* Cards */

.service-card,
.testimonial-card,
.highlight-card,
.info-block {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.8rem 1.6rem;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.service-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--muted);
}

.service-card ul {
    margin-top: 0.9rem;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
}

.testimonial-header h2 {
    font-family: "Playfair Display", serif;
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
}

.testimonial-note {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.testimonial-text {
    margin: 1rem 0 0.75rem;
    font-size: 0.9rem;
}

.testimonial-author {
    font-size: 0.86rem;
    color: #6b6555;
}

.highlight-card {
    background: radial-gradient(circle at 0 0, #f9f3e4 0, #f1e4cd 55%, #fefaf1 100%);
    border-color: rgba(212,175,55,0.6);
}

/* SEO article */

.seo-article {
    background: #ffffff;
    border-radius: 1.8rem;
    padding: 2.2rem 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,0.04);
}

.seo-article h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 1.1rem;
}

.seo-article h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    margin-top: 1.7rem;
    margin-bottom: 0.4rem;
}

.seo-article p {
    font-size: 0.94rem;
    color: #4b463b;
}

.seo-conclusion {
    margin-top: 1.8rem;
    border-top: 1px dashed var(--border);
    padding-top: 1.3rem;
    font-style: italic;
}

/* CTA */

.section-cta {
    background: #111111;
    color: #f7f2e4;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-top: 0;
}

.cta-inner p {
    font-size: 0.92rem;
    color: #d7cfbd;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons & links */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #111111;
    box-shadow: 0 14px 35px rgba(212,175,55,0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(212,175,55,0.55);
}

.btn-secondary {
    background: rgba(255,255,255,0.85);
    color: #3a3215;
    border: 1px solid rgba(212,175,55,0.6);
}

.btn-secondary:hover {
    background: #111111;
    color: #f5efe1;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.14);
    color: #3a3215;
}

.btn-outline:hover {
    border-color: rgba(212,175,55,0.7);
}

.btn-footer {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.7);
    color: #f6f0e4;
    margin-top: 0.75rem;
}

.btn-footer:hover {
    background: rgba(212,175,55,0.18);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #3b341f;
    text-decoration: none;
    position: relative;
}

.link-arrow::after {
    content: "→";
    font-size: 0.9rem;
    transition: transform 0.15s ease;
}

.link-arrow:hover::after {
    transform: translateX(3px);
}

/* Footer */

.site-footer {
    padding-top: 3.2rem;
    background: #111111;
    color: #e7e0d0;
    border-top: 1px solid rgba(212,175,55,0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 2fr) minmax(0, 1.8fr);
    gap: 2.5rem;
    padding-bottom: 2.4rem;
}

.site-footer h3,
.site-footer h4 {
    font-family: "Playfair Display", serif;
    margin-top: 0;
}

.site-footer p {
    font-size: 0.86rem;
    color: #cbc3b2;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.86rem;
}

.footer-links li + li {
    margin-top: 0.35rem;
}

.footer-links a {
    color: #e7e0d0;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0.9rem 0;
    font-size: 0.78rem;
    color: #9e9787;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Misc */

.center {
    text-align: center;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.check-list li::before {
    content: "✓";
    margin-right: 0.4rem;
    color: #3b341f;
}

.note {
    margin-top: 0.9rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.contact-box {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    border: 1px dashed rgba(212,175,55,0.7);
    font-size: 0.86rem;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner,
    .split,
    .form-layout,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        gap: 2.2rem;
    }

    .hero-panel {
        justify-content: flex-start;
    }

    .services-grid,
    .gallery-preview,
    .gallery-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .services-grid,
    .gallery-preview,
    .gallery-grid,
    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row.two {
        flex-direction: column;
    }

    .form-card,
    .side-panel,
    .seo-article {
        padding: 1.4rem 1.25rem 1.4rem;
    }

    .inner {
        padding: 1.8rem 1.4rem;
        border-radius: 1.4rem;
    }

    .footer-grid {
        gap: 1.6rem;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
