:root {
    --color-primary: #1a472a;
    --color-primary-dark: #0d2818;
    --color-primary-light: #2d6a4f;
    --color-secondary: #b08968;
    --color-secondary-light: #ddb892;
    --color-accent: #d4a373;
    --color-gold: #c9a227;
    --color-gold-light: #e6c55c;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-text-muted: #888888;
    --color-white: #ffffff;
    --color-cream: #fdfbf7;
    --color-cream-dark: #f5f0e8;
    --color-border: #e8e4dd;
    --color-dark: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #1a472a 0%, #2d6a4f 50%, #40916c 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e6c55c 50%, #f0d77d 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --container-width: 1280px;
    --container-narrow: 800px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 50%
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast)
}

a:focus,
a:hover {
    color: var(--color-gold)
}

ol,
ul {
    list-style-position: inside
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: -.02em
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem)
}

h4 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light)
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-light)
}

.text-center {
    text-align: center
}

.text-light {
    color: var(--color-text-light)
}

.text-white {
    color: var(--color-white)
}

.text-gold {
    color: var(--color-gold)
}

.heading-decorated {
    position: relative;
    display: inline-block
}

.heading-decorated::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--color-gold);
    margin-bottom: var(--space-xs)
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md)
}

.container--narrow {
    max-width: var(--container-narrow)
}

.section {
    padding: var(--space-xl) 0;
    position: relative
}

.section--lg {
    padding: var(--space-2xl) 0
}

.section--cream {
    background-color: var(--color-cream)
}

.section--dark {
    background: var(--gradient-dark);
    color: var(--color-white)
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white)
}

.section--dark p {
    color: rgba(255, 255, 255, .8)
}

.section--primary {
    background: var(--gradient-primary);
    color: var(--color-white)
}

.section--pattern {
    position: relative
}

.section--pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.grid {
    display: grid;
    gap: var(--space-md)
}

.grid--2 {
    grid-template-columns: repeat(1, 1fr)
}

.grid--3 {
    grid-template-columns: repeat(1, 1fr)
}

.grid--4 {
    grid-template-columns: repeat(2, 1fr)
}

@media (min-width:768px) {
    .grid--2 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .grid {
        gap: var(--space-lg)
    }

    .grid--3 {
        grid-template-columns: repeat(3, 1fr)
    }

    .grid--4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left var(--transition-slow)
}

.btn:hover::before {
    left: 100%
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(26, 71, 42, .3)
}

.btn--primary:focus,
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 71, 42, .4);
    color: var(--color-white)
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: var(--shadow-glow)
}

.btn--gold:focus,
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 162, 39, .5);
    color: var(--color-dark)
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary)
}

.btn--outline:focus,
.btn--outline:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-2px)
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    box-shadow: var(--shadow-md)
}

.btn--white:focus,
.btn--white:hover {
    background-color: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn--outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .5)
}

.btn--outline-white:focus,
.btn--outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-smooth)
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md)
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    transition: padding var(--transition-smooth)
}

.site-header.scrolled .header-inner {
    padding: .5rem 2rem
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-fast)
}

.site-header.scrolled .site-logo {
    color: var(--color-primary)
}

.site-logo a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: .5rem
}

.site-logo__image {
    height: 90px;
    width: auto;
    transition: all var(--transition-smooth);
    filter: brightness(0) invert(1)
}

.site-header.scrolled .site-logo__image {
    height: 50px;
    filter: none
}

@media (max-width:768px) {
    .site-logo__image {
        height: 60px
    }

    .site-header.scrolled .site-logo__image {
        height: 50px
    }

    .hero__badge {
        display: none !important
    }
}

.main-nav {
    display: none
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none
}

.main-nav a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-white);
    padding: var(--space-xs) 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .05em
}

.site-header.scrolled .main-nav a {
    color: var(--color-text)
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-smooth)
}

.main-nav .current-menu-item a::after,
.main-nav a:focus::after,
.main-nav a:hover::after {
    width: 100%
}

.main-nav a:focus,
.main-nav a:hover {
    color: var(--color-gold)
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 10000
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
    border-radius: 2px
}

.site-header.scrolled .menu-toggle span {
    background-color: var(--color-text)
}

.menu-toggle.is-active span {
    background-color: var(--color-white)
}

.menu-toggle.is-active span:first-child {
    transform: translateY(8px) rotate(45deg)
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px)
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

@media (min-width:1024px) {
    .main-nav {
        display: block
    }

    .menu-toggle {
        display: none
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background: #0a0a0a;
    padding: 100px var(--space-md) var(--space-md);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.mobile-nav.is-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.mobile-nav ul {
    list-style: none;
    text-align: center
}

.mobile-nav li {
    margin-bottom: var(--space-md)
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    transition: color var(--transition-fast)
}

.mobile-nav a:hover {
    color: var(--color-gold)
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden
}

.hero--medium {
    min-height: 70vh
}

.hero--small {
    min-height: 50vh
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary-dark);
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: var(--space-md)
}

.hero__badge {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-xl);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md)
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, .3)
}

.hero__title span {
    font-style: italic;
    color: var(--color-gold-light)
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, .7), 0 0 20px rgba(0, 0, 0, .5)
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    animation: bounce 2s infinite;
    z-index: 0;
    opacity: .7
}

.hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: var(--color-white);
    margin: .5rem auto 0;
    opacity: .5
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateX(-50%) translateY(0)
    }

    40% {
        transform: translateX(-50%) translateY(-10px)
    }

    60% {
        transform: translateX(-50%) translateY(-5px)
    }
}

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl)
}

.card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.card:hover .card__image img {
    transform: scale(1.1)
}

.card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth)
}

.card:hover .card__image::after {
    opacity: 1
}

.card__content {
    padding: var(--space-md);
    text-align: center
}

.card__title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: var(--space-xs)
}

.card__title a {
    color: var(--color-text)
}

.card__title a:hover {
    color: var(--color-primary)
}

.card__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: .9375rem
}

.card--premium {
    border: 1px solid var(--color-border)
}

.card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold)
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    padding: .75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border)
}

.feature-list li:last-child {
    border-bottom: none
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: .875rem
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-sm)
}

.gallery-grid--masonry {
    column-count: 1;
    column-gap: var(--space-sm)
}

@media (min-width:576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid--masonry {
        column-count: 2
    }
}

@media (min-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .gallery-grid--masonry {
        column-count: 3
    }
}

@media (min-width:1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .gallery-grid--masonry {
        column-count: 4
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: var(--space-sm);
    aspect-ratio: 4/3
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .7));
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1
}

.gallery-item:hover::before {
    opacity: 1
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--color-white);
    transition: transform var(--transition-smooth);
    z-index: 2
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1)
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.lightbox-overlay.is-active {
    display: flex
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    background: 0 0;
    border: none
}

.lightbox-close:hover {
    transform: rotate(90deg)
}

.google-reviews {
    background: linear-gradient(135deg, var(--color-cream) 0, var(--color-cream-dark) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden
}

.google-reviews::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    opacity: .1;
    line-height: 1
}

.google-reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm)
}

.google-reviews__stars {
    color: var(--color-gold);
    font-size: 1.75rem;
    letter-spacing: 2px
}

.google-reviews__score {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text)
}

.google-reviews__count {
    color: var(--color-text-muted);
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.review-snippet {
    background-color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    text-align: left;
    font-style: italic;
    color: var(--color-text-light);
    box-shadow: var(--shadow-sm);
    position: relative
}

.review-snippet__author {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-sm);
    display: block;
    font-size: .875rem
}

.accessibility-notice {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
}

.accessibility-notice__icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, .2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    flex-shrink: 0
}

.accessibility-notice strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: .5rem
}

.accessibility-notice p {
    color: rgba(255, 255, 255, .9);
    margin: 0;
    line-height: 1.6
}

.subsection {
    background-color: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    box-sizing: border-box
}

.subsection h2 {
    margin-top: 0
}

.honeypot{position:absolute;left:-9999px;top:-9999px;width:0;height:0;overflow:hidden;opacity:0;pointer-events:none}.contact-form {
    display: grid;
    gap: var(--space-md);
    width: 100%;
    box-sizing: border-box
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
    box-sizing: border-box
}

@media (min-width:576px) {
    .form-row {
        grid-template-columns: 1fr 1fr
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    box-sizing: border-box
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-white);
    transition: all var(--transition-fast);
    box-sizing: border-box;
    min-width: 0
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26, 71, 42, .1)
}

.form-group textarea {
    min-height: 150px;
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md)
}

@media (min-width:576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold)
}

.contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 1.25rem
}

.contact-info__content h4 {
    font-size: .75rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-muted)
}

.contact-info__content p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0
}

.accessibility-notice {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
}

.accessibility-notice__icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, .2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    flex-shrink: 0
}

.accessibility-notice p {
    color: var(--color-white);
    margin: 0
}

.page-header {
    padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.page-header__title {
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    position: relative
}

.page-header__subtitle {
    color: var(--color-gold-light);
    font-size: 1.125rem;
    position: relative
}

.content-block {
    max-width: var(--container-narrow);
    margin: 0 auto
}

.content-block p+p {
    margin-top: var(--space-sm)
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center
}

@media (min-width:768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl)
    }

    .two-column--reverse {
        direction: rtl
    }

    .two-column--reverse>* {
        direction: ltr
    }
}

.content-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative
}

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    z-index: -1
}

.content-image img {
    width: 100%;
    height: auto
}

.subsection {
    background: linear-gradient(135deg, var(--color-cream) 0, var(--color-cream-dark) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden
}

.subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold)
}

.subsection__title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md)
}

.info-strip {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow)
}

.info-strip__icon {
    font-size: 2.5rem;
    flex-shrink: 0
}

.info-strip h3 {
    color: var(--color-dark);
    margin-bottom: .25rem
}

.info-strip p {
    color: var(--color-dark);
    opacity: .8;
    margin: 0
}

.site-footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-md);
    position: relative
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl)
}

@media (min-width:768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr
    }
}

.footer-section h4 {
    color: var(--color-gold-light);
    font-size: .875rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: var(--space-md)
}

.footer-section a,
.footer-section p {
    color: rgba(255, 255, 255, .7);
    font-size: .9375rem
}

.footer-section a:hover {
    color: var(--color-gold)
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm)
}

.footer-nav ul {
    list-style: none
}

.footer-nav li {
    margin-bottom: var(--space-xs)
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center
}

@media (min-width:768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, .5);
    font-size: .875rem;
    margin: 0
}

.footer-accessibility {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, .7);
    font-size: .875rem
}

.footer-accessibility span:first-child {
    background: var(--color-gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: .75rem
}

.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
}

.mb-0 {
    margin-bottom: 0
}

.mb-sm {
    margin-bottom: var(--space-sm)
}

.mb-md {
    margin-bottom: var(--space-md)
}

.mb-lg {
    margin-bottom: var(--space-lg)
}

.mb-xl {
    margin-bottom: var(--space-xl)
}

.mt-0 {
    margin-top: 0
}

.mt-sm {
    margin-top: var(--space-sm)
}

.mt-md {
    margin-top: var(--space-md)
}

.mt-lg {
    margin-top: var(--space-lg)
}

.mt-xl {
    margin-top: var(--space-xl)
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn .6s ease forwards
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

.delay-4 {
    animation-delay: .4s
}

.legal-content {
    line-height: 1.9
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--color-primary)
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text)
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
    font-family: var(--font-body)
}

.legal-block {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border)
}

.legal-block:last-child {
    border-bottom: none
}

.legal-content p {
    margin-bottom: var(--space-sm)
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline
}

.legal-content a:hover {
    color: var(--color-gold)
}

.section--contact {
    padding: var(--space-lg) 0
}

.contact-info--compact {
    gap: var(--space-sm)
}

.contact-info--compact .contact-info__item {
    padding: var(--space-sm) var(--space-md)
}

.contact-info--compact .contact-info__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem
}

.contact-info--compact .contact-info__content h4 {
    font-size: .7rem;
    margin-bottom: .25rem
}

.contact-info--compact .contact-info__content p {
    font-size: .9rem;
    line-height: 1.5
}

.contact-form--compact .form-group {
    margin-bottom: var(--space-sm)
}

.contact-form--compact input,
.contact-form--compact select,
.contact-form--compact textarea {
    padding: .75rem 1rem;
    font-size: .9rem
}

.contact-form--compact textarea {
    min-height: 100px
}

.contact-form--compact label {
    font-size: .7rem;
    margin-bottom: .35rem
}

@media (min-width:768px) {
    .two-column--compact {
        gap: var(--space-lg)
    }
}

.contact-lead {
    font-size: 1rem;
    margin-bottom: var(--space-sm)
}

.subsection--compact {
    padding: var(--space-md)
}

.subsection--compact h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-xs)
}

.subsection--compact .mb-lg {
    margin-bottom: var(--space-sm) !important
}

.legal-content {
    max-width: 800px;
    margin: 0 auto
}

.legal-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--color-primary)
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-block {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border)
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.legal-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--color-text)
}

.legal-block h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .35rem;
    margin-top: .75rem;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--font-body)
}

.legal-block h4:first-child {
    margin-top: 0
}

.legal-block p {
    margin-bottom: .5rem;
    line-height: 1.6
}

.legal-block p:last-child {
    margin-bottom: 0
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline
}

.legal-content a:hover {
    color: var(--color-gold)
}