:root {
    --rose: #d98f91;
    --rose-dark: #bd7478;
    --rose-soft: #f7e8e4;
    --rose-pale: #fff8f5;
    --cream: #fffdfb;
    --ink: #2f1f1f;
    --muted: #6d6060;
    --line: rgba(189, 116, 120, .25);
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(96, 51, 51, .10);
    --radius: 3px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --script: "Allura", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.topbar {
    background: linear-gradient(90deg, #f8dcd6, #faece8);
    color: #765f5f;
    font-size: 12px;
}
.topbar-inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.topbar-links, .socials { display: flex; align-items: center; gap: 20px; }
.socials { gap: 14px; font-weight: 700; font-size: 15px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(93, 52, 52, .08);
    backdrop-filter: blur(10px);
}
.nav-wrap {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    min-width: 205px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.brand-script {
    color: var(--rose);
    font-family: var(--script);
    font-size: 49px;
    line-height: .75;
}
.brand-sub {
    margin-top: 10px;
    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: .22em;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .035em;
}
.main-nav > a:not(.btn) {
    position: relative;
    padding-block: 34px;
}
.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 24px;
    height: 1px;
    background: var(--rose);
    transition: right .25s ease;
}
.main-nav > a:not(.btn):hover::after,
.main-nav > a.active::after { right: 0; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: white; }
.btn-primary:hover { background: var(--rose-dark); }
.btn-outline { border-color: var(--rose); background: rgba(255,255,255,.6); color: var(--ink); }
.btn-outline:hover { background: var(--rose); color: white; }
.btn-light { background: white; color: var(--rose-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: white; background: transparent; }
.btn-outline-light:hover { background: white; color: var(--rose-dark); }
.btn-wide { width: 100%; }

.flash-wrap { position: relative; z-index: 60; }
.flash {
    margin-top: 16px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
}
.flash-success { border-left: 4px solid #6c9b75; }
.flash-error { border-left: 4px solid #c95e5e; }
.flash-info { border-left: 4px solid #8598b4; }

.hero {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background:
        radial-gradient(circle at 26% 45%, rgba(255,255,255,.97) 0 13%, rgba(255,255,255,.84) 33%, rgba(255,255,255,.10) 62%),
        linear-gradient(90deg, #f8f2ee 0%, #fff 43%, transparent 72%);
}
.hero-image {
    position: absolute;
    inset: 0 0 0 44%;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.70), rgba(255,255,255,0) 24%),
        url("../images/hero-bride.jpg");
    background-size: cover;
    background-position: center 28%;
}
.hero-inner { position: relative; min-height: 510px; display: flex; align-items: center; }
.hero-copy { width: min(540px, 54%); text-align: center; padding: 55px 0 45px; }
.eyebrow {
    margin: 0;
    font-family: var(--serif);
    font-size: 17px;
}
.ornament { color: var(--rose); font-family: var(--serif); letter-spacing: .15em; margin: 10px 0 13px; }
.ornament.left { text-align: left; }
.hero h1, .page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(50px, 6vw, 78px);
    line-height: .98;
}
.hero h1 span {
    color: var(--rose);
    font-family: var(--script);
    font-size: 1.24em;
    font-weight: 400;
}
.hero-lead { max-width: 500px; margin: 24px auto 30px; color: #4c4141; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.feature-strip { background: linear-gradient(90deg, #fffaf7, #fffdfb, #fff8f3); border-bottom: 1px solid #f5ece7; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 31px; }
.feature {
    text-align: center;
    padding: 0 29px;
    border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature-icon { color: var(--rose); font-family: var(--serif); font-size: 37px; line-height: 1; margin-bottom: 8px; }
.feature h3 { margin: 0 0 2px; font: 500 21px var(--serif); }
.feature p { margin: 0; font-size: 12px; line-height: 1.55; }

.section { padding: 66px 0; }
.section-heading { text-align: center; margin-bottom: 28px; }
.section-label {
    margin: 0 0 4px;
    color: var(--rose-dark);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
}
.section-heading h2,
.about-copy h2,
.cta-band h2,
.collection-feature h2,
.appointment-info h2 {
    margin: 0;
    font: 500 clamp(36px, 4vw, 48px)/1.05 var(--serif);
}
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.collection-card {
    overflow: hidden;
    background: linear-gradient(#fff, #fff8f4);
    box-shadow: 0 12px 30px rgba(78, 45, 45, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.collection-card img { aspect-ratio: 1.07 / .86; object-fit: cover; }
.collection-card-body { padding: 14px 12px 18px; text-align: center; }
.collection-card h3 { margin: 0; font: 500 22px var(--serif); }
.collection-card p { margin: 0 0 9px; color: var(--muted); font-size: 11px; }
.collection-card span { color: var(--rose-dark); text-transform: uppercase; font-size: 11px; letter-spacing: .04em; }
.center { text-align: center; margin-top: 25px; }

.about-section { padding: 55px 0; background: linear-gradient(90deg, #fff9f5, #fcedea, #fff9f7); }
.about-grid {
    display: grid;
    grid-template-columns: 1.45fr 1.2fr .85fr;
    gap: 55px;
    align-items: center;
}
.about-image { position: relative; overflow: hidden; min-height: 300px; box-shadow: var(--shadow); }
.about-image img { height: 100%; min-height: 300px; object-fit: cover; }
.image-logo {
    position: absolute;
    inset: 34px auto auto 38px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.image-logo span { font: 50px/.8 var(--script); }
.image-logo small { font: 11px var(--serif); letter-spacing: .18em; }
.about-copy p:not(.section-label) { color: #534848; font-size: 12px; }
.about-points {
    background: rgba(255,255,255,.42);
    padding: 28px 22px;
}
.about-points article { display: flex; gap: 15px; margin-bottom: 25px; }
.about-points article:last-child { margin-bottom: 0; }
.about-points article > span {
    flex: 0 0 33px;
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rose);
    border-radius: 50%;
    color: var(--rose);
}
.about-points h3 { margin: 0; font: 500 18px/1.1 var(--serif); }
.about-points p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.cta-band { background: var(--rose); color: white; padding: 42px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band .section-label { color: rgba(255,255,255,.75); }
.cta-band h2 { max-width: 680px; }

.page-hero {
    text-align: center;
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.86), rgba(255,255,255,.2)),
        linear-gradient(135deg, #f7ded8, #fff8f3);
}
.page-hero.compact { padding-block: 66px; }
.page-hero h1 { font-size: clamp(47px, 6vw, 68px); }
.page-hero p:last-child { max-width: 650px; margin: 18px auto 0; color: var(--muted); }

.collection-list { display: grid; gap: 55px; }
.collection-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 35px;
    background: white;
    box-shadow: var(--shadow);
}
.collection-feature.reverse img { order: 2; }
.collection-feature img { height: 410px; object-fit: cover; }
.collection-feature p:not(.section-label) { color: var(--muted); }

.appointment-section { background: #fffaf7; }
.appointment-layout {
    display: grid;
    grid-template-columns: 1.5fr .75fr;
    gap: 50px;
    align-items: start;
}
.appointment-form {
    background: white;
    padding: 38px;
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 25px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid span { font-size: 12px; font-weight: 600; }
.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid #e7d8d4;
    background: #fffdfc;
    padding: 13px 14px;
    outline: none;
    color: var(--ink);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(217,143,145,.12); }
.appointment-info {
    position: sticky;
    top: 130px;
    padding: 35px;
    background: linear-gradient(160deg, #f7e1dc, #fff7f3);
}
.appointment-info p { color: var(--muted); }
.appointment-info ul { padding-left: 19px; }
.appointment-info li { margin-bottom: 9px; }
.info-box {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 7px;
    font-size: 12px;
}
.info-box strong { font: 500 22px var(--serif); }

.site-footer { color: white; background: linear-gradient(100deg, #c77d80, #d99598); padding: 40px 0 16px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr .6fr .6fr;
    gap: 50px;
    padding-bottom: 28px;
}
.site-footer h3, .site-footer h4 { margin: 0 0 10px; font: 500 22px var(--serif); }
.site-footer p { margin: 0 0 14px; font-size: 11px; }
.site-footer section > a { display: block; margin: 4px 0; font-size: 11px; }
.subscribe-form { display: flex; gap: 8px; }
.subscribe-form input { min-width: 0; flex: 1; border: 0; padding: 0 14px; }
.footer-brand { align-items: center; display: flex; flex-direction: column; justify-content: center; }
.footer-brand .brand-script { color: white; font-size: 56px; }
.footer-socials { display: flex; gap: 24px; margin-top: 17px; font-weight: 700; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.24);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
}

@media (max-width: 1020px) {
    .topbar-links > a { display: none; }
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 20px 24px;
        background: white;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav > a:not(.btn) { padding: 12px 8px; }
    .main-nav > a:not(.btn)::after { display: none; }
    .nav-cta { margin: 10px 0 0; }
    .hero-image { inset-left: 38%; opacity: .88; }
    .hero-copy { width: 56%; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature:nth-child(2) { border-right: 0; }
    .feature:nth-child(-n+2) { margin-bottom: 25px; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1.1fr 1fr; }
    .about-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .about-points article { margin: 0; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { order: 4; grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.2); padding-top: 30px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .topbar-inner { justify-content: center; }
    .topbar-links { display: none; }
    .nav-wrap { min-height: 76px; }
    .brand { min-width: 165px; }
    .brand-script { font-size: 42px; }
    .brand-sub { font-size: 9px; }
    .hero { min-height: 670px; background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.84)); }
    .hero-image {
        inset: 0;
        opacity: .48;
        background-position: 64% center;
    }
    .hero-inner { min-height: 670px; align-items: flex-end; }
    .hero-copy { width: 100%; padding-bottom: 65px; }
    .hero h1 { font-size: clamp(49px, 14vw, 68px); }
    .hero-lead { max-width: 560px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px; margin: 0 !important; }
    .feature:last-child { border-bottom: 0; }
    .collection-grid { grid-template-columns: 1fr; }
    .collection-card img { aspect-ratio: 1.3 / .9; }
    .about-grid { grid-template-columns: 1fr; }
    .about-points { grid-column: auto; grid-template-columns: 1fr; }
    .cta-band-inner { align-items: flex-start; flex-direction: column; }
    .collection-feature,
    .collection-feature.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 22px;
    }
    .collection-feature.reverse img { order: 0; }
    .collection-feature img { height: 330px; }
    .appointment-layout { grid-template-columns: 1fr; }
    .appointment-info { position: static; }
    .appointment-form { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid label.full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > section:first-child { grid-column: 1 / -1; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .section { padding-block: 50px; }
    .subscribe-form { flex-direction: column; }
    .subscribe-form input { min-height: 46px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > section:first-child,
    .footer-brand { grid-column: auto; }
}


/* Admin-enabled public additions */
.empty-public {
    padding: 42px 24px;
    text-align: center;
    background: #fff8f5;
    border: 1px solid rgba(189, 116, 120, .18);
    color: var(--muted);
}

.blog-preview { background: #fffdfb; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    overflow: hidden;
    background: white;
    box-shadow: 0 14px 35px rgba(78, 45, 45, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.blog-card img,
.blog-placeholder {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}
.blog-placeholder {
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #e9b8b0, #c97e82);
    font: 64px var(--script);
}
.blog-card-body { padding: 23px 24px 25px; }
.blog-card time {
    color: var(--rose-dark);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.blog-card h2,
.blog-card h3 {
    margin: 8px 0 9px;
    font: 500 27px/1.05 var(--serif);
}
.blog-card p {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 12px;
}
.blog-card span {
    color: var(--rose-dark);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
}

.location-section {
    padding: 68px 0;
    background: linear-gradient(120deg, #fff7f2, #f6e0dc);
}
.location-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: stretch;
}
.location-copy,
.contact-card {
    padding: 44px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
}
.location-copy h2,
.contact-card h2 {
    margin: 0 0 18px;
    font: 500 clamp(36px, 4vw, 48px)/1.05 var(--serif);
}
.contact-links {
    display: grid;
    gap: 9px;
    margin: 23px 0 28px;
    font-size: 12px;
}
.map-frame {
    min-height: 400px;
    overflow: hidden;
    background: #eadbd6;
    box-shadow: var(--shadow);
}
.map-frame.large { min-height: 540px; }
.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
}

.calendly-shell {
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}
.appointment-fallback {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 45px;
    text-align: center;
    background: white;
    box-shadow: var(--shadow);
}
.appointment-fallback h2 {
    margin: 0 0 15px;
    font: 500 clamp(38px, 5vw, 55px)/1 var(--serif);
}
.appointment-fallback p { color: var(--muted); }
.fallback-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.article-header {
    padding: 82px 0 74px;
    text-align: center;
    background: linear-gradient(135deg, #f7ded8, #fff8f3);
}
.article-header h1 {
    max-width: 900px;
    margin: 5px auto 12px;
    font: 500 clamp(48px, 7vw, 76px)/.98 var(--serif);
}
.article-header time {
    color: var(--muted);
    font-size: 11px;
}
.article-body {
    max-width: 900px;
    padding-top: 55px;
    padding-bottom: 75px;
}
.article-image {
    max-height: 560px;
    object-fit: cover;
    margin-bottom: 38px;
    box-shadow: var(--shadow);
}
.article-lead {
    margin: 0 0 28px;
    color: #493a3a;
    font: 500 25px/1.45 var(--serif);
}
.article-content {
    color: #4f4545;
    white-space: pre-line;
    font-size: 14px;
    line-height: 1.9;
}
.article-cta {
    margin-top: 48px;
    padding: 35px;
    text-align: center;
    background: #fff4f0;
}
.article-cta h2 {
    margin: 0 0 20px;
    font: 500 34px/1.05 var(--serif);
}

.contact-page { background: #fffaf7; }
.contact-detail {
    display: grid;
    gap: 3px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}
.contact-detail strong {
    color: var(--rose-dark);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .08em;
}
.contact-detail span,
.contact-detail a {
    color: #4f4343;
}
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid,
    .contact-page-grid { grid-template-columns: 1fr; }
    .map-frame { min-height: 420px; }
}

@media (max-width: 620px) {
    .blog-grid { grid-template-columns: 1fr; }
    .location-copy,
    .contact-card,
    .appointment-fallback { padding: 30px 23px; }
    .fallback-actions,
    .contact-actions { flex-direction: column; }
    .fallback-actions .btn,
    .contact-actions .btn { width: 100%; }
    .map-frame,
    .map-frame.large { min-height: 360px; }
}

/* READABILITY UPDATE */
:root {
    --ink: #241818;
    --muted: #554949;
    --rose-dark: #a95f64;
}

body {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

p, li, input, textarea, select, button { font-weight: 500; }

.topbar {
    color: #563f40;
    font-size: 13px;
    font-weight: 600;
}

.main-nav {
    color: #2d2020;
    font-size: 12px;
    font-weight: 700;
}

.brand-sub {
    color: #382929;
    font-size: 12px;
    font-weight: 700;
}

.btn {
    min-height: 48px;
    padding-inline: 26px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .045em;
}

.btn-primary {
    background: #c8797e;
    color: #fff;
    box-shadow: 0 7px 18px rgba(113,55,59,.18);
}
.btn-primary:hover { background: #a95f64; }

.btn-outline {
    color: #2a1d1d;
    border-width: 2px;
    border-color: #b9686d;
    background: rgba(255,255,255,.94);
}

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.98) 30%,
            rgba(255,255,255,.90) 48%,
            rgba(255,255,255,.36) 67%,
            rgba(255,255,255,.04) 100%
        ),
        #f7efeb;
}

.hero-image {
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,.80) 0%,
            rgba(255,255,255,.38) 22%,
            rgba(255,255,255,0) 44%
        ),
        url("../images/hero-bride.jpg");
}

.hero-copy { text-shadow: 0 1px 0 rgba(255,255,255,.78); }

.eyebrow {
    color: #392828;
    font-size: 19px;
    font-weight: 600;
}

.hero h1, .page-hero h1 {
    color: #281919;
    font-weight: 600;
}

.hero h1 span { color: #bd6f74; }

.hero-lead {
    color: #392d2d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.feature h3 {
    color: #2d1e1e;
    font-size: 23px;
    font-weight: 600;
}
.feature p {
    color: #4f4242;
    font-size: 13px;
    line-height: 1.65;
}

.section-label {
    color: #9d5157;
    font-size: 12px;
    font-weight: 800;
}

.section-heading h2,
.about-copy h2,
.cta-band h2,
.collection-feature h2,
.appointment-info h2,
.location-copy h2,
.contact-card h2 {
    color: #2b1c1c;
    font-weight: 600;
}

.collection-card h3 {
    color: #2b1d1d;
    font-size: 24px;
    font-weight: 600;
}
.collection-card p {
    color: #554848;
    font-size: 13px;
    line-height: 1.6;
}
.collection-card span {
    color: #9f5258;
    font-size: 12px;
    font-weight: 800;
}

.about-copy p:not(.section-label),
.collection-feature p:not(.section-label),
.location-copy p,
.contact-card,
.page-hero p:last-child,
.appointment-fallback p {
    color: #493d3d;
    font-size: 14px;
}

.about-points h3 {
    color: #2e2020;
    font-size: 20px;
    font-weight: 600;
}
.about-points p {
    color: #514444;
    font-size: 13px;
}

.blog-card time {
    color: #93494f;
    font-size: 11px;
    font-weight: 700;
}
.blog-card h2, .blog-card h3 {
    color: #291b1b;
    font-weight: 600;
}
.blog-card p {
    color: #514444;
    font-size: 13px;
    line-height: 1.7;
}
.blog-card span {
    color: #93494f;
    font-size: 11px;
    font-weight: 800;
}

.contact-links {
    color: #3f3232;
    font-size: 14px;
    font-weight: 600;
}
.contact-detail strong {
    color: #93494f;
    font-size: 11px;
}
.contact-detail span,
.contact-detail a {
    color: #392e2e;
    font-size: 14px;
    font-weight: 600;
}

.site-footer {
    color: #fff;
    background: linear-gradient(100deg, #ad676c, #c97c81);
}
.site-footer h3, .site-footer h4 {
    font-size: 24px;
    font-weight: 600;
}
.site-footer p,
.site-footer section > a {
    color: rgba(255,255,255,.98);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
}
.footer-bottom {
    color: rgba(255,255,255,.96);
    font-size: 12px;
    font-weight: 600;
}

.subscribe-form input {
    min-height: 48px;
    color: #2f2222;
    font-size: 14px;
    font-weight: 600;
}

.form-grid span {
    color: #342727;
    font-size: 13px;
    font-weight: 700;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
    color: #2c2020;
    font-size: 14px;
    background: #fff;
}

.article-lead {
    color: #342626;
    font-weight: 600;
}
.article-content {
    color: #3f3434;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.95;
}
.flash {
    color: #2f2222;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 760px) {
    body { font-size: 16px; }

    .hero {
        background:
            linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.89)),
            #f6ece8;
    }

    .hero-image { opacity: .32; }
    .hero-copy { padding-inline: 8px; }
    .hero-lead { font-size: 15px; }
    .main-nav { font-size: 13px; }

    .main-nav > a:not(.btn) {
        color: #2b1f1f;
        font-weight: 800;
    }
}


/* Owner story and About page */
.owner-story-preview {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: center;
}

.owner-story-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #eadbd6;
    box-shadow: var(--shadow);
}

.owner-story-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center top;
}

.owner-story-copy h2,
.owner-story-article h2 {
    margin: 0;
    color: #2b1c1c;
    font: 600 clamp(40px, 5vw, 58px)/1.02 var(--serif);
}

.owner-story-copy p:not(.section-label) {
    color: #493d3d;
    font-size: 14px;
    line-height: 1.85;
}

.owner-story-page {
    background: linear-gradient(120deg, #fffdfb, #fff6f2);
}

.owner-story-page-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 65px;
    align-items: start;
}

.owner-portrait-card {
    position: sticky;
    top: 130px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}

.owner-portrait-card > img {
    width: 100%;
    min-height: 520px;
    max-height: 680px;
    object-fit: cover;
    object-position: center top;
}

.owner-portrait-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 20px 28px;
    background: linear-gradient(135deg, #f7e3df, #fff8f5);
}

.owner-portrait-caption .brand-script {
    font-size: 52px;
}

.owner-portrait-caption strong {
    color: #4a3939;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
}

.owner-story-text {
    color: #413535;
    white-space: pre-line;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.95;
}

.owner-story-values {
    display: grid;
    gap: 15px;
    margin-top: 38px;
}

.owner-story-values article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.72);
}

.owner-story-values article > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: white;
    border-radius: 50%;
    background: var(--rose);
    font-family: var(--serif);
    font-weight: 700;
}

.owner-story-values h3 {
    margin: 0 0 4px;
    color: #2d2020;
    font: 600 22px/1.1 var(--serif);
}

.owner-story-values p {
    margin: 0;
    color: #544747;
    font-size: 13px;
    line-height: 1.65;
}

.owner-story-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 34px;
}

@media (max-width: 900px) {
    .owner-story-preview,
    .owner-story-page-grid {
        grid-template-columns: 1fr;
    }

    .owner-portrait-card {
        position: static;
        max-width: 620px;
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .owner-story-preview {
        gap: 32px;
    }

    .owner-story-image,
    .owner-story-image img {
        min-height: 380px;
    }

    .owner-portrait-card > img {
        min-height: 420px;
    }

    .owner-story-actions {
        flex-direction: column;
    }

    .owner-story-actions .btn {
        width: 100%;
    }
}


/* SEO detail pages and breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #665657;
    font-size: 12px;
    font-weight: 600;
}
.breadcrumbs a {
    color: #994e54;
}
.collection-feature-image {
    display: block;
}
.collection-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.collection-detail-page {
    background: linear-gradient(120deg, #fffdfb, #fff6f2);
}
.collection-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 62px;
    align-items: center;
}
.collection-detail-image {
    min-height: 560px;
    overflow: hidden;
    background: #eee1dd;
    box-shadow: var(--shadow);
}
.collection-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}
.collection-detail-copy h1 {
    margin: 0;
    color: #2b1c1c;
    font: 600 clamp(48px, 6vw, 70px)/1 var(--serif);
}
.collection-detail-copy p:not(.section-label) {
    color: #493d3d;
    font-size: 15px;
    line-height: 1.85;
}

@media (max-width: 850px) {
    .collection-detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .collection-actions {
        flex-direction: column;
    }
    .collection-actions .btn {
        width: 100%;
    }
    .collection-detail-image,
    .collection-detail-image img {
        min-height: 420px;
    }
}


/* Newsletter unsubscribe pages */
.newsletter-public-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff8f5, #f4deda);
}
.newsletter-public-card {
    max-width: 720px;
    padding: 52px 44px;
    text-align: center;
    background: white;
    box-shadow: var(--shadow);
}
.newsletter-public-card h1 {
    margin: 0 0 16px;
    color: #2b1c1c;
    font: 600 clamp(40px, 6vw, 58px)/1 var(--serif);
}
.newsletter-public-card p {
    color: #514444;
    font-size: 15px;
}
.newsletter-public-card form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}


/* Privacy-conscious analytics consent */
.analytics-consent {
    position: fixed;
    z-index: 1200;
    right: 20px;
    bottom: 20px;
    width: min(520px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px;
    border: 1px solid rgba(200, 121, 126, .28);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 65px rgba(51, 36, 38, .22);
}
.analytics-consent[hidden] {
    display: none;
}
.analytics-consent strong {
    display: block;
    margin-bottom: 5px;
    color: #35272a;
    font-family: var(--serif);
    font-size: 21px;
}
.analytics-consent p {
    margin: 0;
    color: #69585b;
    font-size: 12px;
    line-height: 1.6;
}
.analytics-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.analytics-consent .btn {
    min-width: auto;
    padding: 11px 15px;
    font-size: 10px;
}
@media (max-width: 650px) {
    .analytics-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        align-items: stretch;
        flex-direction: column;
    }
    .analytics-consent-actions {
        justify-content: stretch;
    }
    .analytics-consent-actions .btn {
        flex: 1;
    }
}
