:root {
    --blush: #f7dcd3;
    --blush-soft: #fdf4f0;
    --cream: #fbf1ea;
    --pink: #e9a3ae;
    --gold: #c9a227;
    --gold-light: #e3c86b;
    --ink: #46383a;
    --ink-soft: #7c6a6c;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
}

a {
    color: inherit;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 5vw, 4rem);
    background: rgba(251, 241, 234, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
}

.nav {
    display: flex;
    gap: clamp(0.9rem, 2.5vw, 2rem);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav a {
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, color 0.25s;
}

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

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(3.5rem, 9vw, 6rem);
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #fff 0%, var(--blush-soft) 45%, var(--blush) 100%);
}

.hero-splash {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(1100px, 150%);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
}

.hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.hero-logo {
    width: min(340px, 72vw);
    height: auto;
    border-radius: 50%;
    box-shadow: 0 18px 50px rgba(160, 110, 100, 0.25);
}

.tagline {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    line-height: 1.25;
    margin: 2rem 0 0.75rem;
    color: var(--ink);
}

.hero-copy {
    margin: 0 auto 2rem;
    max-width: 46ch;
    color: var(--ink-soft);
}

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

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold-light), var(--gold));
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.32);
}

.btn-ghost {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(201, 162, 39, 0.1);
}

/* Sections */
.section {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 6vw, 5rem);
}

.section-alt {
    background: #fff;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 0.5rem;
}

.section-title.left {
    text-align: left;
}

.section-title::after {
    content: "";
    display: block;
    width: 68px;
    height: 1px;
    margin: 0.9rem auto 0;
    background: var(--gold);
}

.section-title.left::after {
    margin-left: 0;
}

.section-sub {
    text-align: center;
    color: var(--ink-soft);
    margin: 0 auto 2.75rem;
    max-width: 52ch;
}

/* Services */
.cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    padding: 2rem 1.75rem;
    background: #fff;
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 4px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(160, 110, 100, 0.16);
}

.card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--gold);
}

.card p {
    margin: 0;
    color: var(--ink-soft);
}

/* Gallery */
.gallery {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    background: var(--blush-soft);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.gallery img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ink-soft);
    background: #fff;
}

/* About */
.about-grid {
    display: grid;
    gap: clamp(1.5rem, 5vw, 3.5rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.about p {
    color: var(--ink-soft);
}

/* Contact */
.contact-card {
    max-width: 520px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    background: linear-gradient(160deg, #fff, var(--blush-soft));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 6px;
    box-shadow: 0 14px 40px rgba(160, 110, 100, 0.12);
}

.contact-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.contact-value {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 3.6vw, 1.8rem);
    margin: 0.35rem 0 1.75rem;
    word-break: break-word;
}

.contact-value a {
    text-decoration: none;
    color: var(--gold);
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    background: var(--blush);
}

.site-footer p {
    margin: 0.25rem 0;
}

.site-footer a {
    color: var(--gold);
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}