:root {
    --color-primary: #6FAF98;
    --color-primary-dark: #2F5D50;
    --color-primary-soft: rgba(111, 175, 152, 0.14);
    --color-accent: #C9A646;
    --color-accent-soft: rgba(201, 166, 70, 0.14);
    --color-ink: #1F1F1F;
    --color-muted: #5F6F68;
    --color-paper: #ffffff;
    --color-cream: #F5E6C8;
    --color-mist: #FAF7F0;
    --color-line: rgba(47, 93, 80, 0.11);
    --color-line-strong: rgba(47, 93, 80, 0.18);
    --color-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.96) 100%);
    --color-surface-soft: linear-gradient(180deg, rgba(250, 247, 240, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
    --color-surface-hero: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 240, 0.94) 100%);
    --shadow-soft: 0 22px 54px rgba(33, 56, 48, 0.1);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top right, rgba(111, 175, 152, 0.14), transparent 26%),
        radial-gradient(circle at top left, rgba(201, 166, 70, 0.05), transparent 22%),
        linear-gradient(180deg, #faf7f0 0%, #ffffff 24%, #ffffff 100%);
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 32px));
}

.section-space {
    padding: 88px 0;
}

.alt-surface {
    background:
        linear-gradient(180deg, rgba(245, 230, 200, 0.64) 0%, rgba(250, 247, 240, 0.92) 48%, rgba(255, 255, 255, 0.98) 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(47, 93, 80, 0.08);
    box-shadow: 0 14px 34px rgba(23, 56, 47, 0.06);
}

.header-row {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 72px;
    width: auto;
    max-width: none;
    display: block;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 100%;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(47, 93, 80, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 240, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 14px 28px rgba(23, 56, 47, 0.06);
    font-size: 0.96rem;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--color-muted);
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), #d1ab57);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-primary-dark);
    background: rgba(111, 175, 152, 0.1);
    transform: translateY(-1px);
}

.site-nav a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #5d9d86 100%);
    box-shadow: inset 0 0 0 1px rgba(111, 175, 152, 0.18), 0 8px 18px rgba(111, 175, 152, 0.22);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: rgba(111, 175, 152, 0.14);
    border: 0;
    border-radius: 14px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-ink);
    margin: 5px auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 18px 34px rgba(111, 175, 152, 0.28);
}

.btn-soft,
.btn-outline,
.btn-white {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 93, 80, 0.12);
}

.btn-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 240, 0.96) 100%);
}

.btn-white {
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-section {
    padding: 52px 0 48px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 247, 240, 0.95) 60%, rgba(255, 255, 255, 0.98) 100%);
}

.hero-grid,
.split-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 34px;
    align-items: start;
}

.contact-info-stack {
    display: grid;
    gap: 24px;
    align-self: start;
}

.contact-info-card,
.contact-map-card,
.contact-form {
    align-self: start;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-list p {
    margin: 0;
    color: var(--color-text-soft);
}

.contact-cta-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-cta-row .btn {
    min-height: 48px;
    padding-inline: 18px;
}

.contact-info-list strong {
    color: var(--color-text);
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-frame {
    margin-top: 18px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.contact-map-frame iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.hero-content h1,
.page-hero h1,
.section-copy h2,
.section-heading h2,
.cta-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin: 16px 0 18px;
}

.hero-content p {
    max-width: 640px;
    font-size: 1.1rem;
    color: var(--color-muted);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-notes {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    color: var(--color-muted);
}

.hero-notes span::before {
    content: "•";
    color: var(--color-accent);
    margin-right: 8px;
}

.hero-visual,
.media-card,
.content-card,
.info-card,
.service-card,
.quote-card,
.cta-panel,
.page-hero,
.blog-card,
.gallery-item,
.process-card,
.contact-form {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.hero-visual,
.media-card,
.content-card,
.process-card,
.contact-form,
.page-hero {
    background: var(--color-surface-hero);
    border: 1px solid var(--color-line);
}

.hero-visual {
    overflow: hidden;
    padding: 14px;
}

.home-hero-visual,
.home-about-visual {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.home-feature-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-feature-image-hero {
    aspect-ratio: 1 / 0.86;
    object-position: center center;
}

.home-feature-image-about {
    aspect-ratio: 1 / 0.82;
    object-position: center center;
}

.section-badge,
.chip,
.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(111, 175, 152, 0.16) 0%, rgba(111, 175, 152, 0.08) 100%);
    border: 1px solid rgba(111, 175, 152, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.section-badge.inverse {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.cta-panel h2,
.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    margin: 14px 0 18px;
}

.section-copy p,
.section-heading p {
    color: var(--color-muted);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-section {
    padding: 24px 0 10px;
}

.trust-section .card-grid {
    gap: 22px;
}

.info-card,
.service-card,
.quote-card,
.blog-card {
    background: #FFFFFF;
    border: 1px solid var(--color-line);
    padding: 26px;
}

.info-card {
    position: relative;
    overflow: hidden;
    padding: 28px 26px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    box-shadow: 0 22px 46px rgba(23, 56, 47, 0.08);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.info-card::after {
    content: "";
    position: absolute;
    right: -32px;
    top: -32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 166, 70, 0.16) 0%, rgba(201, 166, 70, 0) 72%);
    pointer-events: none;
}

.info-card:hover,
.info-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(111, 175, 152, 0.26);
    box-shadow: 0 28px 58px rgba(23, 56, 47, 0.12);
}

.info-card-top,
.info-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.info-card-top {
    margin-bottom: 18px;
}

.info-kicker,
.info-card-bottom span {
    color: var(--color-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.info-index {
    min-width: 46px;
    min-height: 46px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(111, 175, 152, 0.16) 0%, rgba(250, 247, 240, 0.95) 100%);
    color: var(--color-primary-dark);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(111, 175, 152, 0.12);
}

.info-icon,
.feature-item span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 0 0 6px rgba(111, 175, 152, 0.1);
}

.info-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 18px;
    box-shadow:
        0 0 0 10px rgba(111, 175, 152, 0.08),
        0 14px 24px rgba(111, 175, 152, 0.16);
}

.info-card h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    line-height: 1.2;
}

.info-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.24rem;
    line-height: 1.22;
}

.info-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.98rem;
}

.info-card-bottom {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--color-line);
}

.feature-panel {
    height: 100%;
}

.feature-panel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-panel-copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin-bottom: 18px;
}

.feature-panel-copy p + p {
    margin-top: 14px;
}

.feature-panel-actions {
    margin-top: 24px;
}

.feature-panel-media {
    display: flex;
    flex-direction: column;
}

.feature-panel-media img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 18px;
}

.feature-panel-media p {
    flex: 1 1 auto;
}

.living-card-grid {
    gap: 22px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.showcase-card img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 18px;
}

.showcase-card:hover,
.showcase-card:focus-visible {
    text-decoration: none;
}

.testimonial-card .quote-stars {
    margin-bottom: 14px;
    color: var(--color-accent);
    letter-spacing: 0.18em;
}

.testimonial-card strong {
    color: var(--color-primary-dark);
    font-size: 1rem;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--color-surface-soft);
    border-radius: 18px;
    border: 1px solid var(--color-line);
}

.gallery-preview-grid,
.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-preview-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-preview-card,
.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
}

.gallery-preview-card::before,
.service-card::before,
.blog-card::before,
.press-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    z-index: 1;
}

.gallery-preview-card img,
.gallery-item img,
.blog-card img,
.article-cover {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

.gallery-preview-card span,
.gallery-item figcaption {
    display: block;
    padding: 14px 16px 18px;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.94) 100%);
}

.service-card-large img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 30px;
    background: var(--color-surface);
    box-shadow: 0 22px 48px rgba(23, 56, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(111, 175, 152, 0.24);
    box-shadow: 0 30px 62px rgba(23, 56, 47, 0.12);
}

.service-card h2,
.blog-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.18;
    color: var(--color-ink);
}

.service-card p,
.blog-card p {
    margin: 0;
    color: var(--color-muted);
}

.service-card .btn-soft,
.blog-card-body a {
    margin-top: auto;
}

.blog-card-body a {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.premium-preview-card {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(111, 175, 152, 0.13), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.96) 100%);
    box-shadow: 0 24px 50px rgba(23, 56, 47, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-preview-card:hover,
.premium-preview-card:focus-visible {
    transform: translateY(-7px);
    border-color: rgba(111, 175, 152, 0.24);
    box-shadow: 0 32px 64px rgba(23, 56, 47, 0.12);
    text-decoration: none;
}

.premium-preview-card img {
    border-radius: 24px;
    margin-bottom: 4px;
    border: 1px solid rgba(47, 93, 80, 0.08);
    box-shadow: 0 16px 30px rgba(23, 56, 47, 0.08);
}

.premium-preview-card-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(111, 175, 152, 0.16) 0%, rgba(111, 175, 152, 0.08) 100%);
    border: 1px solid rgba(111, 175, 152, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-preview-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    line-height: 1.18;
    color: var(--color-ink);
}

.premium-preview-card small {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.process-card,
.content-card,
.contact-form,
.page-hero {
    padding: 28px;
}

.timeline {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-line);
    box-shadow: 0 16px 32px rgba(23, 56, 47, 0.05);
}

.timeline-item strong {
    color: var(--color-primary-dark);
    font-size: 1.35rem;
}

.quote-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-trigger {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(135deg, var(--color-primary-dark) 0%, #467b6b 58%, #5b9b85 100%);
    color: #fff;
}

.contact-form,
.callback-form {
    display: grid;
    gap: 14px;
}

.contact-form label,
.callback-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.callback-form input,
.callback-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--color-line-strong);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.callback-form input:focus,
.callback-form textarea:focus {
    outline: none;
    border-color: rgba(111, 175, 152, 0.5);
    box-shadow: 0 0 0 4px rgba(111, 175, 152, 0.12);
    background: #fff;
}

.contact-form textarea,
.callback-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-line {
    grid-template-columns: 22px 1fr;
    align-items: start;
}

.checkbox-line input {
    min-height: 0;
    margin-top: 4px;
}

.site-footer {
    padding: 48px 0 22px;
    background:
        radial-gradient(circle at top right, rgba(111, 175, 152, 0.1), transparent 24%),
        linear-gradient(180deg, #17382F 0%, #122c25 100%);
    color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr 1.2fr;
    gap: 24px;
}

.footer-grid h3 {
    color: #fff;
    margin-top: 0;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 10px;
}

.footer-map iframe {
    width: 100%;
    min-height: 230px;
    border: 0;
    border-radius: 24px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-meta p {
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    text-align: right;
}

.footer-credit a {
    color: #fff;
    font-weight: 700;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
}

.floating-contact-toggle {
    min-height: 56px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(47, 93, 80, 0.3);
}

.floating-contact-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    min-width: 220px;
    padding: 10px;
    display: none;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--color-line);
    box-shadow: 0 18px 42px rgba(23, 56, 47, 0.12);
}

.floating-contact.is-open .floating-contact-panel {
    display: grid;
}

.floating-contact-panel a,
.floating-contact-panel button {
    padding: 14px 15px;
    border-radius: 14px;
    border: 0;
    background: transparent;
    text-align: left;
}

.floating-contact-panel a:hover,
.floating-contact-panel button:hover {
    background: rgba(111, 175, 152, 0.08);
}

.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(12, 18, 16, 0.52);
}

.callback-modal[hidden] {
    display: none !important;
}

.callback-dialog {
    width: min(480px, 100%);
    padding: 28px;
    background: #fff;
    border-radius: 26px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(111, 175, 152, 0.12);
    color: var(--color-primary-dark);
}

.modal-close:hover,
.modal-close:focus-visible {
    outline: none;
    background: rgba(111, 175, 152, 0.2);
}

.cookie-bar {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 70;
    width: min(380px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.cookie-bar[hidden] {
    display: none !important;
}

.flash {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 600;
}

.flash-success {
    background: rgba(111, 175, 152, 0.12);
    color: var(--color-primary-dark);
}

.flash-error {
    background: rgba(185, 77, 77, 0.12);
    color: #8d2d2d;
}

.page-main {
    padding-bottom: 60px;
}

.page-hero {
    margin: 28px auto 0;
    width: min(var(--container), calc(100% - 32px));
}

.breadcrumbs {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.breadcrumb-sep {
    margin: 0 8px;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    margin-bottom: 34px;
    align-items: stretch;
}

.gallery-page-heading,
.gallery-filter-shell {
    position: relative;
    overflow: hidden;
    padding: 28px 30px;
    border-radius: 28px;
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    box-shadow: 0 22px 46px rgba(23, 56, 47, 0.08);
}

.gallery-page-heading::before,
.gallery-filter-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.gallery-page-heading::after,
.gallery-filter-shell::after {
    content: "";
    position: absolute;
    right: -52px;
    top: -52px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 175, 152, 0.15) 0%, rgba(111, 175, 152, 0) 72%);
    pointer-events: none;
}

.gallery-page-heading h2,
.gallery-page-heading p,
.gallery-page-heading .section-badge,
.gallery-filter-shell > * {
    position: relative;
    z-index: 1;
}

.gallery-filter-shell {
    display: grid;
    gap: 12px;
}

.gallery-filter-label {
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.gallery-page-card {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(111, 175, 152, 0.13), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 240, 0.96) 100%);
    border: 1px solid rgba(47, 93, 80, 0.12);
    box-shadow: 0 28px 58px rgba(23, 56, 47, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-page-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.gallery-page-card:hover,
.gallery-page-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(111, 175, 152, 0.28);
    box-shadow: 0 34px 68px rgba(23, 56, 47, 0.14);
}

.gallery-page-card img {
    border-radius: 24px;
    aspect-ratio: 1 / 0.72;
    border: 1px solid rgba(47, 93, 80, 0.08);
    box-shadow: 0 16px 32px rgba(23, 56, 47, 0.08);
}

.gallery-page-card-featured {
    grid-column: span 2;
}

.gallery-page-card-featured img {
    aspect-ratio: 1 / 0.56;
}

.gallery-page-card figcaption {
    display: grid;
    gap: 12px;
    padding: 20px 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 247, 240, 0.88) 100%);
}

.gallery-page-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gallery-item-order {
    min-width: 42px;
    min-height: 42px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(111, 175, 152, 0.16) 0%, rgba(250, 247, 240, 0.95) 100%);
    border: 1px solid rgba(111, 175, 152, 0.14);
    color: var(--color-primary-dark);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.gallery-item-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(111, 175, 152, 0.16) 0%, rgba(111, 175, 152, 0.08) 100%);
    border: 1px solid rgba(111, 175, 152, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-page-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.16;
    color: var(--color-ink);
}

.gallery-page-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.66;
}

.blog-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    background: var(--color-surface);
    box-shadow: 0 22px 48px rgba(23, 56, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(111, 175, 152, 0.24);
    box-shadow: 0 30px 62px rgba(23, 56, 47, 0.12);
}

.blog-card-body {
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 240, 0.92) 100%);
}

.press-intro {
    max-width: 760px;
    margin-bottom: 22px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.press-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    box-shadow: 0 22px 48px rgba(23, 56, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.press-card:hover,
.press-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(111, 175, 152, 0.24);
    box-shadow: 0 30px 62px rgba(23, 56, 47, 0.12);
}

.press-card img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.press-card-body {
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 240, 0.92) 100%);
}

.press-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.press-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    line-height: 1.14;
}

.press-card p {
    margin: 0;
    color: var(--color-muted);
}

.meta-row,
.filter-row,
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prose {
    color: var(--color-muted);
}

.prose h2,
.prose h3 {
    font-family: Georgia, "Times New Roman", serif;
}

.prose a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .card-grid-4,
    .card-grid-3,
    .press-grid,
    .gallery-preview-grid,
    .footer-grid,
    .gallery-grid,
    .hero-grid,
    .split-layout,
    .contact-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-page-card-featured {
        grid-column: auto;
    }

    .gallery-page-card-featured img {
        aspect-ratio: 1 / 0.72;
    }

    .gallery-page-intro {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .site-nav,
    .site-header .btn-outline {
        display: none;
    }

    .site-nav.is-open {
        position: absolute;
        top: 102px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 22px;
        border: 1px solid var(--color-line);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open a {
        justify-content: flex-start;
        padding-inline: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .split-layout,
    .contact-layout,
    .card-grid-4,
    .card-grid-3,
    .press-grid,
    .gallery-preview-grid,
    .gallery-grid,
    .footer-grid,
    .cta-panel {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-panel {
        text-align: left;
    }

    .contact-cta-row {
        flex-direction: column;
    }

    .gallery-page-card,
    .premium-preview-card,
    .blog-card,
    .service-card,
    .press-card {
        border-radius: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        align-items: flex-start;
    }

    .footer-credit {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .section-space {
        padding: 72px 0;
    }

    .header-row {
        min-height: 92px;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .brand-logo {
        height: 58px;
        width: auto;
    }

    .page-hero,
    .content-card,
    .contact-form,
    .process-card,
    .quote-card,
    .info-card,
    .service-card {
        border-radius: 22px;
        padding: 22px;
    }

    .floating-contact {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

    .floating-contact-toggle {
        width: 100%;
    }

    .floating-contact-panel {
        left: 0;
        right: 0;
        min-width: 0;
    }

    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
