:root {
    --cream:      #faf7f2;
    --warm:       #f0e8db;
    --clay:       #9b6148;
    --clay-light: #c4916a;
    --clay-dark:  #6b3e28;
    --sage:       #7a9e7e;
    --dark:       #261a15;
    --text:       #3a2b24;
    --text-mid:   #6b5044;
    --border:     #d9cfc4;
    --gold:       #c8a96e;
    --serif:      'Playfair Display', Georgia, serif;
    --sans:       'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(38, 26, 21, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-brand svg { width: 28px; height: 28px; flex-shrink: 0; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    color: rgba(250, 247, 242, 0.72);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
}

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

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 25% 75%, rgba(155, 97, 72, 0.28) 0%, transparent 100%),
        radial-gradient(ellipse 50% 50% at 75% 25%, rgba(122, 158, 126, 0.12) 0%, transparent 100%);
}

.hero-botanical-right {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 220px;
    opacity: 0.12;
    color: var(--clay-light);
    pointer-events: none;
}

.hero-botanical-left {
    position: absolute;
    left: 4%;
    top: 10%;
    width: 160px;
    opacity: 0.08;
    color: var(--sage);
    pointer-events: none;
    transform: rotate(180deg) scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.04;
    margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--clay-light);
}

.hero-sub {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: rgba(250, 247, 242, 0.65);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.8rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--clay);
    color: var(--cream);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.22s, transform 0.15s;
    border-radius: 2px;
}

.btn:hover { background: var(--clay-light); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(250, 247, 242, 0.4);
    color: rgba(250, 247, 242, 0.8);
}

.btn-ghost:hover { background: rgba(250, 247, 242, 0.08); border-color: rgba(250, 247, 242, 0.7); transform: translateY(-1px); }

.btn-dark {
    background: var(--dark);
    color: var(--cream);
}

.btn-dark:hover { background: var(--clay-dark); }

/* ── Shared Layout ───────────────────────────────────────── */

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.rule {
    width: 52px;
    height: 2px;
    background: var(--clay-light);
    margin: 2.5rem auto;
    opacity: 0.5;
}

/* ── About ───────────────────────────────────────────────── */

.about {
    padding: 7rem 0 6rem;
    background: var(--cream);
}

.about-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about p {
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
    line-height: 1.9;
}

.about p:last-of-type { margin-bottom: 0; }

.pull-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--clay);
    line-height: 1.65;
    margin: 2.8rem 0;
    padding: 1.6rem 2rem;
    border-left: 3px solid var(--clay-light);
    text-align: left;
    background: var(--warm);
}

/* ── Work ────────────────────────────────────────────────── */

.work {
    padding: 7rem 0;
    background: var(--warm);
}

.work-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
}

.work h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.work-intro {
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 1.6rem;
    margin-bottom: 3rem;
}

.work-card {
    background: var(--cream);
    padding: 2.2rem 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--clay-light);
    transition: transform 0.2s;
}

.work-card:hover { transform: translateY(-3px); }

.work-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem;
    color: var(--clay);
}

.work-card h3 {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.work-card p {
    color: var(--text-mid);
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.75;
}

.signature-piece {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 2.4rem 2.8rem;
    border: 1px solid var(--border);
    background: var(--cream);
}

.signature-piece p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clay-dark);
    line-height: 1.75;
}

/* ── Shop ────────────────────────────────────────────────── */

.shop {
    padding: 7rem 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(155, 97, 72, 0.22) 0%, transparent 70%);
}

.shop-inner { position: relative; z-index: 1; }

.shop .section-label { color: var(--gold); }

.shop h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.shop-desc {
    color: rgba(250, 247, 242, 0.65);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.8rem;
    line-height: 1.85;
}

/* ── Connect ─────────────────────────────────────────────── */

.connect {
    padding: 7rem 0;
    background: var(--cream);
    text-align: center;
}

.connect h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.connect-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto 3.5rem;
    line-height: 1.85;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    padding: 2rem 2.4rem;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    color: var(--text);
    min-width: 155px;
    transition: border-color 0.22s, transform 0.15s, box-shadow 0.22s;
}

.social-card:hover {
    border-color: var(--clay);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 97, 72, 0.1);
}

.social-card svg {
    width: 30px;
    height: 30px;
    color: var(--clay);
}

.social-platform {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--clay);
}

.social-handle {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 300;
}

/* ── Footer ──────────────────────────────────────────────── */

footer {
    background: var(--clay-dark);
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.footer-location {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.45);
    margin-bottom: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.78rem;
    color: rgba(250, 247, 242, 0.28);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 720px) {
    .nav-links { display: none; }
    .hero-botanical-right,
    .hero-botanical-left { display: none; }
    .work-grid { grid-template-columns: 1fr; }
    .social-row { gap: 1rem; }
    .pull-quote { padding: 1.2rem 1.4rem; }
    .signature-piece { padding: 1.8rem 1.4rem; }
}
