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

:root {
    --plum-dark: #2D1525;
    --plum-deep: #4A2040;
    --plum-mid: #6B3056;
    --plum-soft: #8C4070;
    --plum-light: #B8688A;
    --plum-pale: #E8D0DA;
    --plum-bg: #FDF6F8;
    --plum-bg-alt: #F7EAF0;
    --amber-dark: #8B6914;
    --amber-mid: #C9A22D;
    --amber-light: #E8C94A;
    --amber-pale: #FDF0C8;
    --cream: #FFFAF5;
    --cream-dark: #F5EDE6;
    --text-dark: #1A0F16;
    --text-mid: #3D2835;
    --text-light: #6B5562;
    --text-muted: #9B8590;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(74, 32, 64, 0.06);
    --shadow-md: 0 4px 20px rgba(74, 32, 64, 0.08);
    --shadow-lg: 0 8px 40px rgba(74, 32, 64, 0.12);
    --shadow-xl: 0 16px 60px rgba(74, 32, 64, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--plum-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 162, 45, 0.2);
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.top-bar__link:hover {
    color: var(--amber-mid);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--plum-pale);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo__mark {
    width: 44px;
    height: 44px;
    background: var(--plum-deep);
    color: var(--amber-mid);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--amber-mid);
    letter-spacing: 0.05em;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo__line--name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--plum-dark);
    letter-spacing: 0.02em;
}

.site-logo__line--tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--amber-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* NAV */
.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.site-nav__link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.site-nav__link:hover {
    color: var(--plum-deep);
    background: var(--plum-bg);
}

.site-nav__cta {
    margin-left: 8px;
    padding: 10px 20px;
    background: var(--plum-deep);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.site-nav__cta:hover {
    background: var(--plum-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile toggle */
.site-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.site-nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--plum-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum-deep) 50%, var(--plum-mid) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg-art {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(201, 162, 45, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 90% 80%, rgba(107, 48, 86, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero__bg-art::before {
    content: '';
    position: absolute;
    inset: 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='%23C9A22D' 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");
    opacity: 0.6;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber-mid);
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(201, 162, 45, 0.4);
    border-radius: 20px;
    background: rgba(201, 162, 45, 0.08);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero__headline em {
    font-style: italic;
    color: var(--amber-mid);
}

.hero__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--amber-mid);
    color: var(--plum-dark);
    border-color: var(--amber-mid);
}

.btn--primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 45, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--amber-mid);
    color: var(--plum-dark);
    border-color: var(--amber-mid);
}

.btn--gold:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 45, 0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Hero trust */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero__trust-item {
    flex: 1;
    text-align: center;
}

.hero__trust-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber-mid);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.hero__trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero image stack */
.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
}

.hero__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero__img--main {
    width: 100%;
    aspect-ratio: 6/7.5;
}

.hero__img--main img,
.hero__img--accent img,
.hero__img--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__img--accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 52%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.hero__img--small {
    position: absolute;
    top: 40px;
    right: -30px;
    width: 44%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 21, 37, 0.3) 0%, transparent 50%);
    border-radius: var(--radius-lg);
}

.hero__badge {
    position: absolute;
    bottom: 60px;
    right: -10px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--plum-dark);
    z-index: 2;
}

.hero__badge svg {
    color: var(--amber-mid);
    flex-shrink: 0;
}

/* Hero scroll */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 162, 45, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber-dark);
    margin-bottom: 12px;
}

.section-eyebrow--light {
    color: var(--amber-pale);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 560px;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--plum-pale);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-deep), var(--amber-mid));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--plum-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-deep);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--plum-deep);
    color: var(--amber-mid);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--plum-dark);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A22D' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 54/68;
    display: block;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__accent-bar {
    position: absolute;
    top: -20px;
    left: -16px;
    background: var(--amber-mid);
    color: var(--plum-dark);
    padding: 10px 20px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.02em;
}

.about__content {
    padding: 20px 0;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.about__value svg {
    color: var(--amber-mid);
    flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 21, 37, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.gallery__item--wide {
    grid-column: span 7;
    aspect-ratio: 16/9;
}

.gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 162, 45, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-banner__content {
    flex: 1;
    min-width: 280px;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--plum-bg);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-deep);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--plum-dark);
    margin-bottom: 2px;
}

.contact__detail p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--plum-soft);
    transition: color var(--transition);
}

.contact__detail a:hover {
    color: var(--amber-dark);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border: 1px solid var(--plum-pale);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact__form-header {
    margin-bottom: 28px;
}

.contact__form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--plum-dark);
    margin-bottom: 6px;
}

.contact__form-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid var(--plum-pale);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-soft);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 48, 86, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.contact__success {
    text-align: center;
    padding: 40px 20px;
}

.contact__success svg {
    color: var(--amber-mid);
    margin-bottom: 16px;
}

.contact__success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum-dark);
    margin-bottom: 8px;
}

.contact__success p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--plum-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo--footer .site-logo__mark {
    background: rgba(255, 255, 255, 0.1);
}

.site-logo--footer .site-logo__line--name {
    color: var(--white);
}

.site-footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.site-footer__links strong,
.site-footer__contact strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.site-footer__links ul,
.site-footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a,
.site-footer__contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: var(--amber-mid);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }

    .hero__img--accent {
        left: -20px;
        bottom: -20px;
    }

    .hero__img--small {
        right: -16px;
    }

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

    .about__layout {
        gap: 40px;
    }

    .gallery__item--wide {
        grid-column: span 8;
    }
}

@media (max-width: 768px) {
    .top-bar__inner {
        justify-content: center;
        gap: 16px;
    }

    .site-header__inner {
        height: 70px;
    }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--plum-pale);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    .site-nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav__link {
        padding: 12px 16px;
        width: 100%;
    }

    .site-nav__cta {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: block;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 48px;
    }

    .hero__right {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .hero__img--accent {
        left: -10px;
        bottom: -16px;
        width: 55%;
    }

    .hero__img--small {
        right: -10px;
        top: 20px;
        width: 48%;
    }

    .hero__badge {
        bottom: 40px;
        right: 0;
    }

    .hero__scroll {
        display: none;
    }

    .hero__trust {
        justify-content: center;
    }

    .services {
        padding: 70px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about {
        padding: 70px 0;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__images {
        max-width: 480px;
    }

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

    .gallery {
        padding: 70px 0;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .contact {
        padding: 70px 0;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 16px;
    }

    .hero__trust-divider {
        width: 40px;
        height: 1px;
    }

    .hero__img--accent {
        display: none;
    }

    .hero__img--small {
        display: none;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        justify-content: center;
    }
}
