@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    --primary: #c8a882;
    --secondary: #2c2c2c;
    --accent: #e8d5c4;
    --background: #fefefe;
    --background-alt: #f9f7f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border: rgba(200, 168, 130, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.12);
    --header-height: 84px;
    --subnav-height: 62px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.7;
}

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

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

main {
    padding-top: 0;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.container {
    width: min(1380px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.topbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #d8b997);
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-label {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.brand-label strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.brand-label span {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
}

.menu-toggle svg {
    width: 18px;
    height: 18px;
}

.header-panel {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.primary-nav a {
    padding: 0.5rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    background: rgba(200, 168, 130, 0.12);
    color: var(--primary);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
}

.language-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem;
    border-left: 1px solid rgba(200, 168, 130, 0.3);
}

.language-shell label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.language-select {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.45rem 0.7rem;
    border-radius: 2px;
    min-width: 72px;
    cursor: pointer;
}

.language-select:focus {
    outline: none;
}

.service-strip {
    margin-top: var(--header-height);
    border-top: 1px solid rgba(200, 168, 130, 0.12);
    border-bottom: 1px solid rgba(200, 168, 130, 0.12);
    background: rgba(249, 247, 245, 0.96);
}

.service-strip .container {
    min-height: var(--subnav-height);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-strip .container::-webkit-scrollbar {
    display: none;
}

.service-pill {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 2px;
    background: white;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    transition: all 0.25s ease;
}

.service-pill:hover,
.service-pill:focus-visible {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    outline: none;
}

.hero {
    background: linear-gradient(135deg, var(--accent) 0%, var(--background-alt) 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(90vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: min(55vw, 720px);
    height: min(55vw, 720px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.15) 0%, transparent 70%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.hero-panel,
.detail-card,
.service-link-card,
.contact-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
}

.hero-panel {
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    width: min(860px, 100%);
    background: transparent;
    border-top: 0;
    box-shadow: none;
}

.detail-card,
.service-link-card,
.contact-card {
    padding: 2rem;
    height: 100%;
}

.hero-title,
.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.1;
}

.hero-title {
    margin-top: 1rem;
    font-size: clamp(3rem, 7vw, 5rem);
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero-copy,
.section-copy,
.card-copy,
.contact-copy,
.contact-line span {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-copy {
    margin-top: 1rem;
    font-size: 1.08rem;
}

.button-row,
.grid-three,
.grid-four {
    display: grid;
    gap: 1.5rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    min-height: 52px;
    border: 0;
    border-radius: 2px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
}

.button-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.button-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
    outline: none;
}

.button-secondary {
    background: rgba(200, 168, 130, 0.12);
    color: var(--secondary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--secondary);
    color: white;
    outline: none;
}

.page-section {
    padding: 4.5rem 0;
}

.page-section.alt-section {
    background: var(--background-alt);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.section-header .section-title {
    margin-top: 0.6rem;
}

.about-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-text h3,
.detail-card h3,
.service-link-card h3,
.contact-card h3 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    color: var(--primary);
}

.about-text h3 {
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
}

.detail-card h3,
.service-link-card h3,
.contact-card h3 {
    font-size: clamp(1.55rem, 2.5vw, 1.95rem);
}

.about-lead {
    margin-top: 0.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-size: 1.15rem;
}

.feature-item strong {
    display: block;
    color: var(--secondary);
}

.feature-item span {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-media {
    min-width: 0;
}

.about-media .carousel-shell {
    max-width: 100%;
    margin: 0 auto;
}

.grid-three,
.grid-four {
    grid-template-columns: 1fr;
}

.service-card-link {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.55rem;
    padding-right: 3.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f5 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-link::after {
    content: "↗";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(200, 168, 130, 0.14);
    color: var(--primary);
    font-size: 1rem;
    line-height: 1;
}

.service-card-link:hover,
.service-card-link:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    outline: none;
}

.service-card-link:hover::after,
.service-card-link:focus-visible::after {
    background: var(--primary);
    color: white;
}

.service-card-static::after {
    content: none;
}

.service-card-static:hover,
.service-card-static:focus-visible {
    transform: none;
    box-shadow: var(--shadow);
}

.review-note,
.gallery-note {
    margin: 0.6rem 0 0;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-light);
}

.review-author {
    margin: 1rem 0 0;
    font-weight: 600;
    color: var(--secondary);
}

.showcase-section {
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(200, 168, 130, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 213, 196, 0.18), transparent 30%);
    pointer-events: none;
}

.showcase-layout,
.carousel-shell {
    position: relative;
    z-index: 1;
}

.showcase-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.showcase-column {
    min-width: 0;
}

.showcase-header {
    margin-bottom: 1.5rem;
}

.showcase-services-grid {
    gap: 1rem;
}

.services-grid {
    gap: 1rem;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(200, 168, 130, 0.18);
    background: #f3eee9;
    touch-action: pan-y;
}

.carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    padding: 0;
    border: 1px solid rgba(200, 168, 130, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--secondary);
    box-shadow: 0 10px 24px rgba(44, 44, 44, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease;
}

.carousel-arrow span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    outline: none;
}

.carousel-arrow-prev {
    left: -23px;
}

.carousel-arrow-next {
    right: -23px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 5 / 6;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(0.75rem, 2vw, 1.35rem);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 28%),
        linear-gradient(135deg, rgba(200, 168, 130, 0.3), rgba(232, 213, 196, 0.45));
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 3px;
    box-shadow: 0 18px 32px rgba(44, 44, 44, 0.12);
    background: rgba(255, 255, 255, 0.35);
}

.carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(44, 44, 44, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.25s ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
    transform: scale(1.08);
    background: rgba(200, 168, 130, 0.7);
    outline: none;
}

.carousel-dot.is-active {
    background: var(--primary);
    transform: scale(1.18);
}

.social-section-grid {
    align-items: stretch;
}

.social-profile-card {
    display: block;
    height: 100%;
    padding: 1.75rem;
    border-radius: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f5 100%);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-profile-card:hover,
.social-profile-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    outline: none;
}

.social-profile-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    background: rgba(200, 168, 130, 0.14);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-profile-card h3 {
    margin: 1rem 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    color: var(--secondary);
}

.photo-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.photo-fill {
    height: 240px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(200, 168, 130, 0.75), rgba(232, 213, 196, 0.85)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 45%);
}

.photo-warm .photo-fill {
    background:
        linear-gradient(135deg, rgba(200, 168, 130, 0.85), rgba(232, 213, 196, 0.95)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 45%);
}

.photo-cool .photo-fill {
    background:
        linear-gradient(135deg, rgba(111, 98, 88, 0.65), rgba(232, 213, 196, 0.92)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 45%);
}

.photo-night .photo-fill {
    background:
        linear-gradient(135deg, rgba(44, 44, 44, 0.82), rgba(200, 168, 130, 0.75)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 42%);
}

.photo-slot {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 168, 130, 0.18);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-social-links {
    margin-top: 1.25rem;
    gap: 0.9rem;
}

.footer-social-links a {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(200, 168, 130, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
    transform: translateY(-2px);
    background: var(--primary);
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

.footer-social-links a svg {
    width: 22px;
    height: 22px;
}

.gallery-social-links {
    margin-top: 1.5rem;
}

.contact-blend {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.contact-info-pane {
    display: grid;
    gap: 1rem;
}

.contact-line {
    display: block;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    background: var(--background-alt);
    border: 1px solid var(--border);
}

.contact-line strong {
    display: block;
    font-weight: 700;
    color: var(--secondary);
}

.map-embed {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--background-alt);
    min-height: 280px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.contact-form-pane {
    scroll-margin-top: calc(var(--header-height) + var(--subnav-height) + 16px);
}

.contact-intro {
    margin-bottom: 1.25rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.5rem;
}

.field label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dark);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(200, 168, 130, 0.28);
    border-radius: 2px;
    background: white;
    color: var(--text-dark);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 1px solid rgba(200, 168, 130, 0.45);
    border-color: var(--primary);
}

.form-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.form-actions .button {
    width: 100%;
}

.footer {
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.98), rgba(26, 26, 26, 1));
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.footer-section p,
.footer-section a {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.footer-section a {
    display: block;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: white;
    outline: none;
}

.footer-section .footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-badges {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (min-width: 720px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about-media .carousel-shell,
    .showcase-carousel-column .carousel-shell {
        max-width: 620px;
        margin: 0 auto;
    }

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

@media (min-width: 1200px) {
    .about-layout {
        grid-template-columns: minmax(0, 1.02fr) minmax(440px, 580px);
        align-items: start;
    }

    .about-media .carousel-shell {
        max-width: 580px;
        margin: 0 auto;
    }

    .carousel-slide {
        aspect-ratio: 4 / 5;
    }

    .carousel-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

    .contact-blend {
        grid-template-columns: 0.95fr 1.05fr;
    }

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

    .social-links {
        justify-content: flex-start;
    }

    .footer-badge {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .header-panel {
        position: static;
        display: flex;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.35rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 1rem;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-strong);
    }

    .header-panel.is-open .primary-nav {
        display: flex;
    }

    .primary-nav a {
        text-align: center;
    }

    .language-shell {
        border-left: none;
        padding: 0;
    }

    .language-shell label {
        display: none;
    }

    .language-select {
        min-width: 58px;
        padding-inline: 0.55rem;
    }
}

@media (max-width: 719px) {
    :root {
        --header-height: 76px;
        --subnav-height: 58px;
    }

    .brand-label span {
        display: none;
    }

    .brand-label strong {
        font-size: 1.18rem;
    }

    .hero {
        min-height: auto;
    }

    .detail-card,
    .service-link-card,
    .contact-card {
        padding: 1.5rem;
    }

    .page-section {
        padding: 3.25rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .button-row {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .photo-fill {
        height: 220px;
    }

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

    .about-image {
        min-height: 320px;
    }

    .carousel-slide {
        aspect-ratio: 4 / 5;
        padding: 0.75rem;
    }

    .service-card-link {
        padding: 1.3rem;
        padding-right: 3.2rem;
        gap: 0.65rem;
    }
}
