/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1B1B1B;
    --bg: #FFFFF0;
    --surface: #FFFFFF;
    --accent: #8B4513;
    --secondary: #DAA520;
    --text: #1B1B1B;
    --white: #FFFFFF;
    --gold: #C5A55A;
    --gold-light: rgba(197, 165, 90, 0.15);
    --gold-border: #C5A55A;
    --gray-100: #F7F7F0;
    --gray-200: #E8E8D8;
    --gray-300: #D0D0C0;
    --gray-500: #888880;
    --gray-700: #555550;
    --font-heading: 'Sorts Mill Goudy', Georgia, serif;
    --font-body: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(27,27,27,0.08);
    --shadow-md: 0 4px 20px rgba(27,27,27,0.1);
    --shadow-lg: 0 10px 40px rgba(27,27,27,0.12);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 100px 0;
}

.bg-ivory {
    background-color: var(--gray-100);
}

/* ===== ORNAMENTAL PATTERNS (Secessionist / Klimt Inspired) ===== */

/* Corner Flourishes — Used on frames */
.corner-flourish {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold-border);
    border-style: solid;
    z-index: 5;
}
.corner-flourish::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-border);
}
.corner-tl { top: -4px; left: -4px; border-width: 3px 0 0 3px; }
.corner-tl::before { top: -6px; left: -6px; }
.corner-tr { top: -4px; right: -4px; border-width: 3px 3px 0 0; }
.corner-tr::before { top: -6px; right: -6px; }
.corner-bl { bottom: -4px; left: -4px; border-width: 0 0 3px 3px; }
.corner-bl::before { bottom: -6px; left: -6px; }
.corner-br { bottom: -4px; right: -4px; border-width: 0 3px 3px 0; }
.corner-br::before { bottom: -6px; right: -6px; }

/* Gold Filigree Divider between sections */
.filigree-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
}

.filigree-divider.filigree-footer {
    background: transparent;
    padding: 0 24px 0;
}

.filigree-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.filigree-icon {
    color: var(--gold-border);
    font-size: 1rem;
    opacity: 0.7;
}

/* Section Ornament (above section-tag) */
.section-ornament {
    display: block;
    color: var(--gold-border);
    font-size: 1.2rem;
    margin-bottom: 8px;
    opacity: 0.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg);
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-ornament-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-border) 20%, var(--secondary) 50%, var(--gold-border) 80%, transparent 100%);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--accent);
}

.brand-ornament {
    color: var(--gold-border);
    font-size: 0.7rem;
    opacity: 0.6;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.navbar-link {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-border);
    transition: width var(--transition);
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 60%;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--accent);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #6D360F;
    border-color: #6D360F;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--gold-border);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

.btn-link:hover {
    gap: 10px;
    color: var(--secondary);
}

/* ===== HERO — Ornamental Gold Border Frame ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: var(--bg);
}

.hero-ornamental-frame {
    position: relative;
    max-width: 1200px;
    width: 100%;
    border: 3px solid var(--gold-border);
    padding: 60px;
    background: var(--surface);
    box-shadow: 0 0 0 8px var(--bg), 0 0 0 10px var(--gold-border), var(--shadow-lg);
}

.hero-frame-inner {
    position: relative;
}

.hero-frame-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-side {
    position: relative;
}

.hero-flourish-top,
.hero-flourish-bottom {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-flourish-bottom {
    margin-top: 20px;
    margin-bottom: 0;
}

.flourish-spiral {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
    border-radius: 2px;
}

.hero-flourish-bottom .flourish-spiral {
    background: linear-gradient(90deg, transparent, var(--gold-border));
}

.hero-subtitle {
    display: inline-block;
    color: var(--gold-border);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.15;
}

.hero p {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Oval Image Frame */
.hero-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-oval-frame {
    width: 380px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold-border);
    box-shadow: 0 0 0 10px var(--gold-light), 0 0 0 14px var(--gold-border), var(--shadow-lg);
    position: relative;
}

.hero-oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 300px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,27,27,0.75) 0%, rgba(139,69,19,0.4) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 76px;
    text-align: center;
    width: 100%;
}

.page-hero-ornament {
    position: relative;
    display: inline-block;
    padding: 40px 60px;
    border: 2px solid rgba(197,165,90,0.5);
}

.page-hero-ornament .corner-flourish {
    border-color: rgba(197,165,90,0.7);
}
.page-hero-ornament .corner-flourish::before {
    background: rgba(197,165,90,0.7);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-content p {
    color: rgba(255,255,240,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold-border);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-700);
    font-size: 1.05rem;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== MODELS GRID — Oval Image Masks ===== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.model-card {
    text-align: center;
    transition: transform var(--transition);
}

.model-card:hover {
    transform: translateY(-6px);
}

.model-oval-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.model-image-oval {
    width: 220px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.model-image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-image-oval img {
    transform: scale(1.06);
}

.oval-frame-border {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 232px;
    height: 292px;
    border-radius: 50%;
    border: 2px solid var(--gold-border);
    z-index: 1;
}

.oval-frame-border::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 1px solid rgba(197,165,90,0.3);
}

.model-info {
    padding: 0 10px;
}

.model-info h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.model-specialty {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.model-height {
    display: block;
    color: var(--gold-border);
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.model-info p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== SERVICES — Ornamental Top Borders + Roman Numerals ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px 30px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.service-ornamental-top {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-border), var(--secondary), var(--gold-border), transparent);
}

.service-numeral {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-border);
    opacity: 0.5;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: var(--gold-light);
    border: 1px solid rgba(197,165,90,0.3);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Services Detail — Roman Numerals */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--surface);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.service-detail-numeral {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-border);
    opacity: 0.4;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.service-detail-ornament-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
    margin-bottom: 16px;
}

.service-detail-content h3 {
    margin-bottom: 10px;
}

.service-detail-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
}

/* Process — Roman Numerals */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold-border);
    opacity: 0.4;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-border);
    opacity: 0.5;
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* ===== STATS ===== */
.stats-bar {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
}

.stats-bar::before,
.stats-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-border) 20%, var(--secondary) 50%, var(--gold-border) 80%, transparent 100%);
}

.stats-bar::before { top: 0; }
.stats-bar::after { bottom: 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-border);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-border);
}

.stat-label {
    display: block;
    color: rgba(255,255,240,0.7);
    font-size: 0.88rem;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--surface);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

.testimonial-ornament-top {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.testimonial-stars {
    color: var(--gold-border);
    margin-bottom: 16px;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial-card blockquote {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-style: italic;
    font-family: var(--font-heading);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar-oval {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-border);
    flex-shrink: 0;
}

.testimonial-avatar-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-border), var(--secondary), var(--gold-border), transparent);
}

.cta-ornamental-frame {
    position: relative;
    padding: 50px;
    border: 1px solid rgba(197,165,90,0.3);
    max-width: 700px;
    margin: 0 auto;
}

.cta-ornamental-frame .corner-flourish {
    border-color: rgba(197,165,90,0.5);
}
.cta-ornamental-frame .corner-flourish::before {
    background: rgba(197,165,90,0.5);
    width: 8px;
    height: 8px;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,240,0.75);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-section .hero-buttons .btn-outline {
    color: var(--gold-border);
    border-color: rgba(197,165,90,0.5);
}

.cta-section .hero-buttons .btn-outline:hover {
    background: var(--gold-border);
    color: var(--primary);
    border-color: var(--gold-border);
}

/* ===== ABOUT ===== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.oval-portrait-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--gold-border);
    box-shadow: 0 0 0 8px var(--gold-light), var(--shadow-lg);
}

.oval-portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-text h2 {
    margin-bottom: 20px;
}

.about-story-text p {
    color: var(--gray-700);
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-sm);
}

.value-ornament-top {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Team — Oval frames */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--gray-200);
    padding: 30px 20px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.team-image-oval {
    width: 160px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-border);
    box-shadow: 0 0 0 6px var(--gold-light);
}

.team-image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image-oval img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--gray-700);
    font-size: 0.85rem;
}

/* ===== PRICING — Classical Column Design ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    padding: 0;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.highlight {
    border-color: var(--gold-border);
    transform: scale(1.03);
}

.pricing-card.highlight:hover {
    transform: scale(1.03) translateY(-4px);
}

/* Classical Column Capital — top ornament */
.pricing-column-capital {
    height: 12px;
    background: linear-gradient(180deg, var(--gold-border) 0%, rgba(197,165,90,0.3) 50%, transparent 100%);
    position: relative;
}

.pricing-column-capital::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gold-border);
    opacity: 0.5;
}

/* Classical Column Base — bottom ornament */
.pricing-column-base {
    height: 12px;
    background: linear-gradient(0deg, var(--gold-border) 0%, rgba(197,165,90,0.3) 50%, transparent 100%);
    position: relative;
}

.pricing-column-base::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gold-border);
    opacity: 0.5;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    padding: 40px 32px 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--gray-700);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.pricing-price .currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Ornamental divider in pricing card */
.pricing-ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 32px;
    margin: 8px 0;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold-border);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    padding: 0 32px;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold-border);
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin: 0 32px 24px;
    width: calc(100% - 64px);
}

/* ===== EVENTS ===== */
.events-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--gray-300);
    background: var(--surface);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.events-month-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.month-nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-border);
    background: var(--surface);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--gold-border);
    transition: all var(--transition);
}

.month-nav-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.month-label {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-border), var(--secondary), var(--gold-border));
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.event-card-header {
    background: var(--primary);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-date {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.event-category {
    color: var(--gold-border);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-card-body {
    padding: 20px;
}

.event-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-venue {
    color: var(--gray-500);
    font-size: 0.83rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-time {
    color: var(--accent);
    font-size: 0.83rem;
    font-weight: 600;
    margin-top: 6px;
}

.events-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
}

.events-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gray-300);
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: border-color var(--transition);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-border);
    opacity: 0;
    transition: opacity var(--transition);
}

.faq-item.open::before {
    opacity: 1;
}

.faq-item.open {
    border-color: var(--gold-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    text-align: left;
    gap: 16px;
}

.faq-question i {
    color: var(--gold-border);
    font-size: 0.8rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.contact-form-wrap h2 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 0.83rem;
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 0;
}

.form-error {
    display: none;
    color: #C0392B;
    font-size: 0.78rem;
    margin-top: 4px;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #C0392B;
}

.form-success {
    text-align: center;
    padding: 30px;
    background: var(--gold-light);
    border: 1px solid rgba(197,165,90,0.3);
    margin-top: 20px;
}

.form-success i {
    font-size: 2rem;
    color: var(--gold-border);
    margin-bottom: 10px;
}

.sidebar-card {
    background: var(--surface);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
    position: relative;
}

.sidebar-ornament-top {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.sidebar-card h3 {
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.sidebar-contact {
    list-style: none;
}

.sidebar-contact li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-contact li:last-child {
    border-bottom: none;
}

.sidebar-contact li i {
    color: var(--gold-border);
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-contact strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.sidebar-contact p {
    font-size: 0.88rem;
    color: var(--gray-700);
}

.sidebar-contact a {
    color: var(--gray-700);
}

.sidebar-contact a:hover {
    color: var(--accent);
}

.sidebar-card .footer-social {
    justify-content: flex-start;
}

.sidebar-card .footer-social a {
    border-color: var(--gold-border);
    color: var(--gold-border);
}

.sidebar-card .footer-social a:hover {
    background: var(--gold-border);
    color: var(--primary);
}

/* ===== LEGAL ===== */
.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.4rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197,165,90,0.3);
}

.legal-content p {
    margin-bottom: 12px;
    color: var(--gray-700);
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    color: var(--gray-700);
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 24px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.85rem;
}

.legal-table th,
.legal-table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--gray-200);
}

.legal-table th {
    background: var(--gold-light);
    font-weight: 600;
    color: var(--primary);
}

.legal-table td {
    color: var(--gray-700);
}

/* ===== 404 ===== */
.error-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding-top: 76px;
}

.error-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.error-ornamental-frame {
    position: relative;
    padding: 60px 40px;
    border: 2px solid var(--gold-border);
}

.error-number {
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--gold-border);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h1 {
    margin-bottom: 16px;
}

.error-content p {
    color: var(--gray-700);
    margin-bottom: 32px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,27,27,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--surface);
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    border: 2px solid var(--gold-border);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-ornament-top {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-border), var(--secondary), var(--gold-border), transparent);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--gray-200);
    border-color: var(--gold-border);
}

.modal-body {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    color: var(--gold-border);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-body h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.modal-meta i {
    color: var(--gold-border);
}

.modal-body > p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-footer {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    padding: 80px 0 0;
    color: rgba(255,255,240,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(197,165,90,0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand:hover {
    color: var(--gold-border);
}

.footer-brand .brand-ornament {
    color: var(--gold-border);
    font-size: 0.6rem;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197,165,90,0.3);
    border-radius: var(--radius);
    color: rgba(255,255,240,0.7);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold-border);
    border-color: var(--gold-border);
    color: var(--primary);
}

.footer-col h4 {
    color: var(--gold-border);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,240,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-border);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 12px !important;
}

.footer-contact li i {
    color: var(--gold-border);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,240,0.6);
}

.footer-contact li a:hover {
    color: var(--gold-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(197,165,90,0.1);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--gold-border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-border);
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-frame-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-oval-frame {
        width: 280px;
        height: 350px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-flourish-top, .hero-flourish-bottom {
        justify-content: center;
    }

    .models-grid,
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid,
    .values-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlight {
        transform: none;
    }

    .pricing-card.highlight:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 90px 16px 40px;
    }

    .hero-ornamental-frame {
        padding: 30px;
    }

    .navbar-menu {
        position: fixed;
        top: 79px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 3px solid var(--gold-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
        box-shadow: var(--shadow-md);
    }

    .navbar-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-link {
        padding: 12px 16px;
    }

    .models-grid,
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .events-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .modal-body {
        padding: 28px;
    }

    .modal-meta {
        flex-direction: column;
        gap: 10px;
    }

    .page-hero {
        min-height: 300px;
    }

    .page-hero-sm {
        min-height: 220px;
    }

    .page-hero-ornament {
        padding: 24px 30px;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 28px;
    }

    .cta-ornamental-frame {
        padding: 30px 20px;
    }

    .corner-flourish {
        width: 24px;
        height: 24px;
    }

    .corner-flourish::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .legal-table {
        font-size: 0.75rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 6px 8px;
    }

    .hero-ornamental-frame {
        padding: 20px;
        border-width: 2px;
        box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--gold-border), var(--shadow-md);
    }

    .hero-oval-frame {
        width: 220px;
        height: 275px;
    }

    .model-image-oval {
        width: 180px;
        height: 230px;
    }

    .oval-frame-border {
        width: 192px;
        height: 242px;
    }

    .error-ornamental-frame {
        padding: 40px 20px;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--primary, #1B1B1B);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-500, #888880);
}

.cookie-content p a {
    color: var(--gold, #C5A55A);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Breadcrumbs */
.breadcrumbs { padding: 12px 0; padding-top: 80px; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
