/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5f1ea;
    --bg-soft: #efe8de;
    --panel: #fbf8f3;
    --text: #181614;
    --muted: #6e675f;
    --accent: #b89157;
    --accent-dark: #9c7741;
    --border: rgba(24, 22, 20, 0.10);
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    --max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Soft light animation */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    filter: blur(60px);
    opacity: 0.45;
}

body::before {
    width: 340px;
    height: 340px;
    top: 8%;
    left: -60px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0));
    animation: floatLightOne 11s ease-in-out infinite alternate;
}

body::after {
    width: 420px;
    height: 420px;
    top: 45%;
    right: -120px;
    background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0));
    animation: floatLightTwo 14s ease-in-out infinite alternate;
}

@keyframes floatLightOne {
    from { transform: translateY(0px) translateX(0px); }
    to   { transform: translateY(35px) translateX(45px); }
}

@keyframes floatLightTwo {
    from { transform: translateY(0px) translateX(0px); }
    to   { transform: translateY(-40px) translateX(-35px); }
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(245, 241, 234, 0.82);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 90px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.brand-text span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--muted);
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: 0.96rem;
    color: var(--text);
    position: relative;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent-dark);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--accent-dark);
}

.header-cta {
    padding: 13px 22px;
    background: #111;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    transition: 0.25s ease;
}

.header-cta:hover {
    background: #2a2621;
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-outline,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn:hover {
    background: #2a2621;
    border-color: #2a2621;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
}

.btn-outline:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.btn-light {
    background: var(--accent);
    color: #111;
    border: 1px solid var(--accent);
}

.btn-light:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

/* =========================
   COMMON SECTIONS
========================= */
section {
    padding: 88px 0;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 18px;
}

.section-title .accent {
    color: var(--accent-dark);
}

.section-copy {
    color: var(--muted);
    max-width: 680px;
    font-size: 1.02rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
    align-items: center;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.image-frame {
    background: linear-gradient(145deg, #d7cec1, #f6f0e8);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 72px 0 42px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
}

.hero-copy p {
    margin: 22px 0 30px;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-stage {
    position: absolute;
    inset: 60px 0 0 40px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05)),
        linear-gradient(135deg, #d9d1c6, #f3ede4);
    box-shadow: var(--shadow);
}

.hero-laptop {
    position: absolute;
    width: min(100%, 620px);
    left: 0;
    bottom: 42px;
    border-radius: 18px;
    background: #1a1714;
    padding: 16px 16px 26px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero-laptop-screen {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #111;
}

.hero-laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-phone {
    position: absolute;
    width: 150px;
    right: 14px;
    bottom: 24px;
    background: #111;
    border-radius: 26px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-phone-screen {
    aspect-ratio: 9 / 18;
    border-radius: 18px;
    overflow: hidden;
}

.hero-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-vase {
    position: absolute;
    width: 110px;
    height: 180px;
    right: 0;
    top: 42px;
    border-radius: 55px 55px 22px 22px;
    background: linear-gradient(180deg, #ece3d7, #d9cdbf);
    box-shadow: var(--shadow);
}

.hero-vase::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 90px;
    background: #b08b57;
    left: 50%;
    top: -58px;
    transform: translateX(-50%) rotate(12deg);
    box-shadow:
        14px 18px 0 #b08b57,
        -14px 28px 0 #b08b57,
        20px 40px 0 #b08b57,
        -20px 42px 0 #b08b57,
        8px 58px 0 #b08b57,
        -8px 66px 0 #b08b57;
}

/* =========================
   INTRO / ABOUT BLOCK
========================= */
.intro-block .grid-2 {
    grid-template-columns: 0.9fr 1.1fr;
}

.intro-image {
    min-height: 320px;
    background:
        linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
        url("logo.png") center/160px no-repeat,
        linear-gradient(135deg, #d9d1c6, #f3ede4);
}

.intro-content {
    padding: 48px;
}

.intro-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-dark);
}

/* =========================
   SERVICES PREVIEW
========================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.service-item {
    padding: 36px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.service-item:last-child {
    border-right: none;
}

.service-item .icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border: 1px solid rgba(184,145,87,0.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    font-size: 1.25rem;
}

.service-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-item p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* =========================
   FEATURED PROJECT
========================= */
.featured-project {
    padding-top: 34px;
}

.featured-project-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.project-copy {
    padding: 18px 0;
}

.project-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 500;
}

.project-copy p {
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 420px;
}

.project-image {
    min-height: 420px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   CTA BAND
========================= */
.cta-band {
    background: #0d0c0b;
    color: #f8f2e9;
}

.cta-band .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 500;
}

.cta-band h2 .accent {
    color: var(--accent);
}

.cta-band .eyebrow {
    color: var(--accent);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    padding: 42px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 0.5fr;
    gap: 28px;
    align-items: start;
}

.footer-brand img {
    width: 82px;
    margin-bottom: 14px;
}

.footer-brand p,
.footer-links a,
.footer-contact a {
    color: var(--muted);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
    display: block;
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184,145,87,0.45);
    color: var(--accent-dark);
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

/* =========================
   INNER PAGE HERO
========================= */
.page-hero {
    padding: 72px 0 26px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.page-hero-card {
    min-height: 320px;
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)),
        linear-gradient(135deg, #d9d1c6, #f3ede4);
    position: relative;
    overflow: hidden;
}

.page-hero-card.page-rs {
    background:
        linear-gradient(rgba(0,0,0,0.16), rgba(0,0,0,0.16)),
        url("hotrocks-preview.jpg") center/cover no-repeat;
}

.page-hero-card img.decor-logo {
    width: 140px;
    position: absolute;
    right: 24px;
    bottom: 24px;
    opacity: 0.9;
}

/* =========================
   ABOUT PAGE
========================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.why-item {
    padding: 34px 26px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.why-item:last-child {
    border-right: none;
}

.approach-box {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.approach-copy {
    padding: 44px;
}

.approach-copy ul li {
    margin-bottom: 10px;
    color: var(--muted);
}

.approach-copy ul li::before {
    content: "✓";
    color: var(--accent-dark);
    margin-right: 10px;
}

.approach-visual {
    min-height: 260px;
    background:
        url("logo.png") center/120px no-repeat,
        linear-gradient(135deg, #ddd3c6, #f3ede4);
}

/* =========================
   SERVICES PAGE
========================= */
.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.services-grid-2 .service-item {
    min-height: 240px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-grid-2 .service-item:nth-child(2n) {
    border-right: none;
}

.services-grid-2 .service-item:nth-last-child(-n+2) {
    border-bottom: none;
}

/* =========================
   PORTFOLIO PAGE
========================= */
.portfolio-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 28px;
}

.portfolio-note {
    color: var(--muted);
    margin-top: 16px;
}

/* =========================
   PRICING PAGE
========================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: rgba(184,145,87,0.6);
    transform: translateY(-6px);
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.price {
    font-size: 2.4rem;
    margin-bottom: 6px;
}

.price-sub {
    color: var(--accent-dark);
    margin-bottom: 18px;
}

.price-card p {
    color: var(--muted);
}

.price-card ul {
    margin: 20px 0 24px;
}

.price-card ul li {
    margin-bottom: 10px;
    color: var(--muted);
}

.price-card ul li::before {
    content: "✓";
    color: var(--accent-dark);
    margin-right: 10px;
}

.price-card .btn {
    margin-top: auto;
}

.portal-box {
    margin-top: 34px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 28px;
}

.portal-box p {
    color: var(--muted);
    margin: 10px 0 18px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-copy {
    padding: 44px;
}

.contact-links {
    display: grid;
    gap: 18px;
    margin: 26px 0;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 1rem;
}

.contact-links .bullet {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184,145,87,0.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-dark);
}

.contact-visual {
    min-height: 420px;
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)),
        url("logo.png") center/180px no-repeat,
        linear-gradient(135deg, #d8cebf, #f4eee5);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1080px) {
    .hero-layout,
    .grid-2,
    .page-hero-grid,
    .featured-project-wrap,
    .contact-box,
    .approach-box,
    .portfolio-single,
    .cta-band .container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .why-grid,
    .service-grid,
    .services-grid-2 {
        grid-template-columns: 1fr;
    }

    .service-grid .service-item,
    .why-grid .why-item,
    .services-grid-2 .service-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .service-grid .service-item:last-child,
    .why-grid .why-item:last-child,
    .services-grid-2 .service-item:last-child {
        border-bottom: none;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-stage {
        inset: 50px 0 0 0;
    }

    .site-header .container {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        gap: 16px;
    }
}

@media (max-width: 720px) {
    section {
        padding: 68px 0;
    }

    .container {
        width: min(var(--max), calc(100% - 24px));
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 1.08rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .hero {
        padding-top: 46px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-laptop {
        width: 100%;
        padding: 12px 12px 18px;
        bottom: 26px;
    }

    .hero-phone {
        width: 102px;
        right: 8px;
        bottom: 12px;
    }

    .hero-vase {
        width: 72px;
        height: 120px;
        top: 22px;
    }

    .intro-content,
    .approach-copy,
    .contact-copy {
        padding: 28px 22px;
    }

    .portfolio-single,
    .portal-box {
        padding: 22px;
    }

    .price-card {
        padding: 28px 22px;
    }

    .cta-band h2 {
        font-size: 2.3rem;
    }
}
