:root {
    color-scheme: dark;
    --bg: #07110b;
    --bg-soft: rgba(255, 255, 255, 0.04);
    --panel: rgba(11, 22, 14, 0.84);
    --panel-strong: rgba(7, 14, 9, 0.94);
    --text: #f6efe3;
    --muted: rgba(246, 239, 227, 0.72);
    --gold: #d8a85a;
    --gold-soft: rgba(216, 168, 90, 0.16);
    --line: rgba(216, 168, 90, 0.2);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

body[data-theme="light"] {
    color-scheme: light;
    --bg: #f6f0e6;
    --bg-soft: rgba(27, 40, 28, 0.04);
    --panel: rgba(255, 255, 255, 0.75);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --text: #131511;
    --muted: rgba(19, 21, 17, 0.72);
    --gold: #a96f24;
    --gold-soft: rgba(169, 111, 36, 0.12);
    --line: rgba(169, 111, 36, 0.18);
    --shadow: 0 20px 50px rgba(56, 39, 12, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(216, 168, 90, 0.16), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(100, 182, 126, 0.08), transparent 18%),
        linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg) 88%, #000 12%));
    color: var(--text);
    min-height: 100vh;
}

body[dir="rtl"] {
    text-align: right;
}

body.nav-locked {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 32px;
}

.site-header,
.hero,
.about,
.contact-section {
    backdrop-filter: blur(14px);
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    margin-bottom: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

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

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--line);
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
}

.brand-copy small,
.eyebrow,
.product-label,
.contact-grid span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    justify-self: center;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
    padding: 8px 0;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 35;
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: none;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.lang-dropdown-toggle svg {
    width: 16px;
    height: 16px;
}

.lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.flag-fr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='8' height='24' fill='%230054A6'/%3E%3Crect x='8' width='8' height='24' fill='%23FFFFFF'/%3E%3Crect x='16' width='8' height='24' fill='%23EF4135'/%3E%3C/svg%3E");
}

.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23012169'/%3E%3Cpath d='M0 4h4l20 16v4h-4L0 8V4Z' fill='%23FFFFFF'/%3E%3Cpath d='M20 0h4v4L8 24H4v-4L20 0Z' fill='%23FFFFFF'/%3E%3Cpath d='M0 2.8 2.8 0 24 21.2 21.2 24 0 2.8Z' fill='%23C8102E'/%3E%3Cpath d='M21.2 0 24 2.8 2.8 24 0 21.2 21.2 0Z' fill='%23C8102E'/%3E%3Crect x='9.5' width='5' height='24' fill='%23FFFFFF'/%3E%3Crect y='9.5' width='24' height='5' fill='%23FFFFFF'/%3E%3Crect x='10.8' width='2.4' height='24' fill='%23C8102E'/%3E%3Crect y='10.8' width='24' height='2.4' fill='%23C8102E'/%3E%3C/svg%3E");
}

.flag-es {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23AA151B'/%3E%3Crect y='6' width='24' height='12' fill='%23F1BF00'/%3E%3C/svg%3E");
}

.flag-ar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23C1272D'/%3E%3Cpath d='M12 5.2 13.9 9l4.2.6-3.1 3 0.7 4.2L12 15.9 8.3 16.8 9 12.6 5.9 9.6 10.1 9Z' fill='none' stroke='%2300813E' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    min-width: 160px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--panel-strong);
    box-shadow: var(--shadow);
    display: none;
    z-index: 30;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: grid;
    gap: 6px;
}

.lang-dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: start;
}

.lang-dropdown-menu button.active,
.lang-dropdown-menu button:hover {
    background: var(--gold-soft);
    color: var(--gold);
}

.icon-button,
.lang-switch button,
.ghost-button,
.cta-button {
    border-radius: 999px;
    border: 1px solid var(--line);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button,
.lang-switch button {
    background: transparent;
    color: var(--text);
    min-height: 40px;
}

.icon-button {
    width: 40px;
    display: grid;
    place-items: center;
}

.lang-switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.lang-switch button {
    padding: 8px 11px;
    cursor: pointer;
    color: var(--muted);
}

.lang-switch button.active {
    background: var(--gold-soft);
    color: var(--gold);
}

.cta-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-button {
    background: linear-gradient(180deg, #e4b46c, #b37a2a);
    color: #111;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(179, 122, 42, 0.28);
}

.mobile-nav-cta {
    display: none;
}

.mobile-nav-tools {
    display: none;
}

.ghost-button {
    background: transparent;
    color: var(--text);
}

.cta-button:hover,
.ghost-button:hover,
.icon-button:hover,
.lang-switch button:hover {
    transform: translateY(-1px);
}

.section-block {
    margin-top: 20px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--panel), var(--panel-strong));
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(22px, 4vw, 54px);
    align-items: center;
    min-height: 82vh;
    position: relative;
    overflow: clip;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(216, 168, 90, 0.14), transparent 70%);
    top: -90px;
    right: -40px;
}

.hero::after {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
    left: -100px;
    bottom: -60px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    max-width: 11ch;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.hero-text,
.section-intro p,
.about-copy p,
.services-grid p,
.gallery-cta p,
.contact-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    max-width: 58ch;
    font-size: 1.02rem;
    margin: 20px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0 0;
}

.hero-stats div {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--bg-soft);
}

.hero-stats dt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.hero-stats dd {
    margin: 4px 0 0;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center;
}

.hero-ring {
    position: absolute;
    width: min(80vw, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(216, 168, 90, 0.34);
    box-shadow: 0 0 0 14px rgba(216, 168, 90, 0.05), 0 0 120px rgba(216, 168, 90, 0.08) inset;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    height: auto;
    filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.42));
}

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

.section-intro p {
    max-width: 66ch;
    margin: 12px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.12));
    box-shadow: var(--shadow);
}

.product-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

.product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.product-content p {
    margin: 12px 0 18px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    margin-bottom: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.product-meta strong,
.product-price {
    color: var(--gold);
    white-space: nowrap;
    font-weight: 700;
    line-height: 1;
}

.product-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.product-price__amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.product-price__unit {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    text-transform: uppercase;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 13px 18px;
    border: none;
    border-radius: var(--radius-md);
    background: #25D366;
    color: #ffffff;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.whatsapp-btn__icon {
    display: inline-flex;
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.whatsapp-btn__icon svg {
    width: 18px;
    height: 18px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
}

.whatsapp-btn:hover .whatsapp-btn__icon {
    transform: translateX(3px);
}

body:not([data-theme="light"]) .whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background: #1ebe57;
}

body[data-theme="light"] .whatsapp-btn:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.whatsapp-btn:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

body[data-theme="light"] .whatsapp-btn {
    background: #ffffff;
    color: #25D366;
    border: 2px solid #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-btn,
    .whatsapp-btn__icon {
        transition: none;
    }

    .whatsapp-btn:hover {
        transform: none;
    }

    .whatsapp-btn:hover .whatsapp-btn__icon {
        transform: none;
    }
}

.about {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 22px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 8px);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.feature-list li,
.services-grid article,
.contact-card,
.contact-form,
.gallery-cta {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.services-grid h3 {
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.gallery-grid img,
.gallery-cta {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: top center;
}

.gallery-cta {
    display: grid;
    align-content: center;
    gap: 12px;
    background: linear-gradient(160deg, rgba(16, 41, 25, 0.9), rgba(13, 23, 18, 0.94));
}

.contact-section {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 18px;
    align-items: stretch;
}

.contact-card h2 {
    margin-bottom: 10px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 20px;
}

.contact-grid div:last-child {
    grid-column: 1 / -1;
}

.contact-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    overflow-wrap: anywhere;
    line-height: 1.35;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 14px 16px;
}

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

.contact-form textarea {
    resize: vertical;
}

.form-status {
    min-height: 1.2em;
    margin: 0;
    color: var(--gold);
    font-size: 0.92rem;
}

.site-footer {
    margin-top: 20px;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: clamp(24px, 4vw, 48px);
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--line);
}

.footer-brand-copy {
    display: grid;
    gap: 4px;
    line-height: 1.05;
}

.footer-brand-copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: var(--text);
}

.footer-brand-copy small {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

.footer-about {
    max-width: 38ch;
    margin: 0;
    line-height: 1.75;
    color: var(--muted);
}

.footer-social {
    margin-top: 22px;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social-list a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.footer-social-list svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    margin: 0 0 16px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
}

.footer-nav {
    display: grid;
    gap: 10px;
}

.footer-nav a {
    color: var(--text);
    font-size: 0.94rem;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
    color: var(--gold);
    transform: translateX(2px);
}

body[dir="rtl"] .footer-nav a:hover {
    transform: translateX(-2px);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.footer-contact-list li {
    display: grid;
    gap: 6px;
}

.footer-contact-list span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 600;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    color: var(--text);
    font-style: normal;
    line-height: 1.45;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

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

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.1);
    color: #25D366 !important;
    font-weight: 600;
    font-size: 0.88rem;
}

body[data-theme="light"] .footer-whatsapp {
    background: rgba(37, 211, 102, 0.08);
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    color: #1ebe57 !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(24px, 3vw, 34px);
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.footer-copy,
.footer-tagline {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-tagline {
    color: var(--gold);
    text-align: end;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.footer-brand-link:focus-visible,
.footer-contact-list a:focus-visible,
.footer-whatsapp:focus-visible,
.footer-social-list a:focus-visible,
.icon-button:focus-visible,
.lang-dropdown-toggle:focus-visible,
.lang-dropdown-menu button:focus-visible,
.cta-button:focus-visible,
.ghost-button:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        border-radius: var(--radius-lg);
    }

    .nav-toggle {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
    }

    .header-actions {
        display: none;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-nav {
        position: static;
        grid-column: 1 / -1;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 10px;
        padding: 18px 0 0;
        background: var(--panel-strong);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: auto;
    }

    .site-header.nav-open .site-nav {
        display: grid;
    }

    .mobile-nav-cta {
        display: inline-flex;
        margin-top: 8px;
    }

    .mobile-nav-tools {
        display: grid;
    }

    .desktop-cta {
        display: none;
    }

    .hero,
    .about,
    .contact-section {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero-visual {
        min-height: 440px;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 18px, 100%);
        padding-top: 8px;
    }

    .site-header {
        position: static;
        padding: 16px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .nav-toggle {
        grid-column: 3;
        justify-self: end;
    }

    .site-nav {
        position: static;
        grid-column: 1 / -1;
        width: 100%;
        padding: 16px 0 0;
    }

    .mobile-nav-tools {
        display: grid;
        gap: 12px;
        margin-top: 10px;
        justify-items: end;
    }

    .mobile-nav-tools .mobile-theme-toggle,
    .mobile-nav-tools .mobile-lang-dropdown {
        width: 100%;
    }

    .mobile-nav-tools .lang-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-lang-dropdown .lang-dropdown-menu {
        inset: auto 0 calc(100% + 10px) auto;
        min-width: min(100%, 280px);
        text-align: right;
    }

    .lang-dropdown-menu {
        inset-inline-start: auto;
        inset-inline-end: 0;
    }

    .mobile-nav-cta {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-button svg {
        width: 22px;
        height: 22px;
    }

    .nav-backdrop {
        display: none;
    }

    .footer-grid,
    .contact-grid,
    .hero-actions,
    .feature-list,
    .products-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

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

    .footer-tagline {
        text-align: start;
    }

    .site-nav {
        gap: 6px;
    }

    .site-header.nav-open .site-nav {
        display: grid;
    }

    .lang-switch {
        width: fit-content;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding-top: 10px;
    }

    h1 {
        max-width: 100%;
    }
}
