:root {
    color-scheme: light;
    --ink: #2b1714;
    --text: #4b3832;
    --muted: #7f6b60;
    --line: #e4d6c4;
    --paper: #f4ead9;
    --surface: #fffaf1;
    --soft: #eadcc7;
    --accent: #b8873f;
    --accent-dark: #4b0f14;
    --gold: #c79a48;
    --shadow: 0 18px 48px rgba(75, 15, 20, 0.16);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
}

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

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

.site-header {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(244, 234, 217, 0.9);
    border-bottom: 1px solid rgba(196, 164, 120, 0.38);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: 16px clamp(18px, 5vw, 76px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand,
.site-nav {
    align-items: center;
    display: flex;
}

.brand {
    gap: 11px;
    font-size: 1.02rem;
    font-weight: 850;
}

.brand-mark {
    align-items: center;
    background: var(--accent-dark);
    border: 1px solid rgba(199, 154, 72, 0.7);
    border-radius: 8px;
    color: var(--gold);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.site-nav {
    background: rgba(255, 250, 241, 0.76);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    gap: 4px;
    padding: 4px;
}

.site-nav a {
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 760;
    padding: 9px 14px;
}

.site-nav a:hover {
    background: var(--soft);
    color: var(--accent-dark);
}

.language-switcher select {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 700;
    min-height: 40px;
    padding: 8px 12px;
}

.hero {
    display: grid;
    gap: clamp(28px, 6vw, 86px);
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    min-height: calc(100vh - 72px);
    padding: clamp(42px, 7vw, 98px) clamp(18px, 5vw, 76px) clamp(34px, 5vw, 64px);
    position: relative;
}

.hero::before {
    background: linear-gradient(38deg, rgb(105 0 9), rgb(37 0 11 / 84%));
    content: "";
    inset: 0 0 auto;
    height: 58%;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.hero-copy {
    align-self: center;
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.55rem, 5vw, 5.6rem);
    line-height: 1;
    margin-bottom: 24px;
    max-width: 880px;
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 3.7rem);
    line-height: 1.04;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.22;
    margin-bottom: 10px;
}

.main-h1 {
    color: #ffba37;
}


.lead {
    color: var(--text);
    font-size: clamp(1.08rem, 1.6vw, 1.34rem);
    line-height: 1.7;
    margin-bottom: 28px;
}

.main-lead {
    color: #ffc7b6; 
}
.hero-actions,
.property-meta,
.amenity-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 820;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(75, 15, 20, 0.2);
    color: #2b1714;
}

.button.primary:hover {
    background: #d4aa5d;
}

.button.ghost {
    background: rgba(255, 250, 241, 0.74);
    border: 1px solid var(--line);
    color: var(--accent-dark);
}

.hero-photo {
    align-self: stretch;
    min-height: 520px;
    position: relative;
}

.hero-photo::after {
    background: var(--gold);
    border-radius: 8px;
    bottom: -16px;
    content: "";
    height: 34%;
    position: absolute;
    right: -16px;
    width: 42%;
    z-index: -1;
}

.hero-photo img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    width: 100%;
}

.stats-band {
    background: var(--accent-dark);
    color: #fff;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 clamp(18px, 5vw, 76px);
    overflow: hidden;
    border-radius: 8px;
}

.stats-band div {
    background: rgba(255, 255, 255, 0.07);
    padding: 28px clamp(18px, 4vw, 42px);
}

.stats-band strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-band span {
    color: rgba(255, 255, 255, 0.72);
}

.section,
.page-intro {
    padding: clamp(54px, 8vw, 106px) clamp(18px, 5vw, 76px);
}

.two-column {
    display: grid;
    gap: clamp(28px, 6vw, 88px);
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
}

.rich-text {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 34px rgba(75, 15, 20, 0.08);
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.8;
    padding: clamp(22px, 4vw, 40px);
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.section-heading {
    margin-bottom: 30px;
    max-width: 820px;
}

.section-heading p,
.page-intro p,
.detail-hero p,
.property-card p,
.details-grid span,
.property-location {
    color: var(--muted);
}

.section-heading.with-action {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: none;
}

.skills-grid,
.property-grid,
.details-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skill-card,
.property-card,
.details-grid div,
.detail-panel,
.empty-state {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(75, 15, 20, 0.08);
}

.skill-card {
    min-height: 190px;
    padding: 26px;
}

.skill-card h3::before {
    background: var(--gold);
    border-radius: 999px;
    content: "";
    display: block;
    height: 6px;
    margin-bottom: 20px;
    width: 44px;
}

.skill-card p {
    color: var(--muted);
    line-height: 1.65;
}

.gallery-section {
    background: var(--accent-dark);
    color: #fff;
}

.gallery-section .eyebrow {
    color: #d8b98a;
}

.gallery-section .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.photo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.15fr 0.92fr 0.92fr;
}

.photo-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    height: 100%;
    width: 100%;
}

.country-list,
.market-nav {
    display: grid;
    gap: 12px;
}

.country-row,
.market-nav a {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    font-weight: 780;
    justify-content: space-between;
    padding: 17px 18px;
}

.country-row:hover,
.market-nav a:hover {
    border-color: rgba(199, 154, 72, 0.72);
    box-shadow: 0 12px 30px rgba(75, 15, 20, 0.1);
}

.property-card {
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.property-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.property-media {
    display: block;
    position: relative;
}

.property-media-link {
    display: block;
}

.property-card-slides {
    aspect-ratio: 16 / 11;
    background: var(--soft);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.property-card-slide {
    height: 100%;
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 160ms ease;
    width: 100%;
}

.property-card-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.property-card-gallery-controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 12px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 160ms ease;
    z-index: 3;
}

.property-media:hover .property-card-gallery-controls,
.property-media:focus-within .property-card-gallery-controls {
    opacity: 1;
    pointer-events: auto;
}

.property-card-gallery-controls button {
    align-items: center;
    background: rgba(75, 15, 20, 0.82);
    border: 1px solid rgba(199, 154, 72, 0.46);
    border-radius: 999px;
    color: #f8e3aa;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 1.4rem;
    height: 38px;
    justify-content: center;
    line-height: 1;
    width: 38px;
}

.property-card-gallery-controls button:hover {
    background: rgba(75, 15, 20, 0.96);
}

.property-media.has-single-slide .property-card-gallery-controls {
    display: none;
}

.property-badge,
.count-pill,
.amenity-strip span {
    background: var(--accent);
    border-radius: 999px;
    color: #2b1714;
    font-size: 0.8rem;
    font-weight: 820;
    padding: 7px 11px;
}

.property-badge {
    bottom: 12px;
    left: 12px;
    position: absolute;
    z-index: 10;
}

.property-body {
    padding: 20px;
}

.property-body h3 a:hover {
    color: var(--accent);
}

.property-location {
    font-size: 0.9rem;
    font-weight: 720;
    margin-bottom: 8px;
}

.property-meta {
    align-items: center;
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding-top: 15px;
}

.property-meta strong {
    color: var(--accent-dark);
    margin-right: auto;
}

.property-meta span {
    color: var(--muted);
    font-size: 0.92rem;
}

.page-intro {
    background: linear-gradient(135deg, rgba(75, 15, 20, 0.14), rgba(199, 154, 72, 0.16));
    padding-bottom: 54px;
}

.services-hero {
    display: grid;
    gap: clamp(28px, 6vw, 76px);
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.services-hero > div:first-child {
    align-self: center;
}

.services-hero-media img {
    aspect-ratio: 16 / 11;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    width: 100%;
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(75, 15, 20, 0.08);
    min-height: 250px;
    padding: 26px;
}

.service-card span {
    color: var(--gold);
    display: block;
    font-size: 0.86rem;
    font-weight: 850;
    margin-bottom: 28px;
}

.service-card h2 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.service-process {
    background: var(--accent-dark);
    color: #fff;
}

.service-process .eyebrow {
    color: #d8b98a;
}

.process-list {
    counter-reset: process;
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-list li {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    padding: 18px;
}

.process-list li::before {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: #2b1714;
    content: counter(process);
    counter-increment: process;
    display: inline-flex;
    flex: 0 0 34px;
    font-weight: 850;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.page-intro h1 {
    margin-bottom: 18px;
}

.page-intro p {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 760px;
}

.market-nav {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    padding: 24px clamp(18px, 5vw, 76px) 0;
}

.country-section {
    border-bottom: 1px solid var(--line);
}

.empty-state {
    margin: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 76px);
    padding: 34px;
}

.detail-hero {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 360px;
    padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 76px) 36px;
}

.back-link {
    color: var(--accent);
    display: inline-block;
    font-weight: 820;
    margin-bottom: 24px;
}

.detail-panel {
    align-self: start;
    display: grid;
    gap: 12px;
    padding: 24px;
    position: sticky;
    top: 98px;
}

.detail-panel strong {
    color: var(--accent-dark);
    font-size: 2rem;
}

.detail-gallery {
    display: grid;
    gap: 14px;
    padding: 0 clamp(18px, 5vw, 76px);
    max-height: 50%;
}

.gallery-stage {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.gallery-stage img {
    aspect-ratio: 16 / 9;
    cursor: zoom-in;
    transition: opacity 140ms ease;
    width: 100%;
}

.gallery-stage img.is-changing {
    opacity: 0.92;
}

.gallery-controls {
    align-items: center;
    bottom: 18px;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.gallery-controls button,
.gallery-thumbs button {
    cursor: pointer;
    font: inherit;
}

.gallery-controls button {
    align-items: center;
    background: rgba(75, 15, 20, 0.82);
    border: 1px solid rgba(199, 154, 72, 0.46);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 1.7rem;
    height: 44px;
    justify-content: center;
    line-height: 1;
    width: 44px;
}

.gallery-controls span {
    background: rgba(75, 15, 20, 0.82);
    border-radius: 999px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 820;
    min-width: 56px;
    padding: 9px 12px;
    text-align: center;
}

.gallery-fullscreen {
    background: rgba(255, 250, 241, 0.94);
    border: 1px solid rgba(199, 154, 72, 0.46);
    border-radius: 999px;
    bottom: 18px;
    color: var(--accent-dark);
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 820;
    padding: 10px 14px;
    position: absolute;
    right: 18px;
}

.gallery-thumbs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
}

.gallery-thumbs button {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    opacity: 0.72;
    overflow: hidden;
    padding: 0;
    transition: border-color 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
    border-color: var(--gold);
    opacity: 1;
    transform: translateY(-1px);
}

.gallery-thumbs img {
    aspect-ratio: 4 / 3;
    height: 100%;
    width: 100%;
}

.has-lightbox {
    overflow: hidden;
}

.image-lightbox {
    align-items: center;
    background: rgba(43, 12, 14, 0.95);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    inset: 0;
    padding: 72px clamp(14px, 3vw, 34px) 28px;
    position: fixed;
    z-index: 100;
}

.lightbox-toolbar {
    display: flex;
    gap: 8px;
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    top: 18px;
    z-index: 102;
}

.lightbox-toolbar button,
.lightbox-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 820;
    justify-content: center;
}

.lightbox-toolbar button {
    min-height: 42px;
    min-width: 42px;
    padding: 0 14px;
}

.lightbox-toolbar button:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-canvas {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
}

.lightbox-canvas img {
    cursor: zoom-in;
    max-height: calc(100vh - 120px);
    max-width: 100%;
    object-fit: contain;
    pointer-events: auto;
    touch-action: none;
    transform-origin: center;
    transition: transform 80ms linear;
    user-select: none;
}

.lightbox-canvas img.is-zoomed {
    cursor: grab;
}

.lightbox-canvas img.is-zoomed:active {
    cursor: grabbing;
}

.lightbox-nav {
    align-self: center;
    font-size: 1.5rem;
    height: 52px;
    justify-self: center;
    line-height: 1;
    width: 52px;
}

.details-grid div {
    padding: 21px;
}

.details-grid strong {
    display: block;
    font-size: 1.15rem;
    margin-top: 7px;
}

.amenity-strip {
    padding-top: 0;
}

.has-modal {
    overflow: hidden;
}

.contact-modal {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 180ms ease;
    z-index: 80;
}

.contact-modal[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal__backdrop {
    background: rgba(43, 23, 20, 0.62);
    backdrop-filter: blur(8px);
    inset: 0;
    position: absolute;
}

.contact-modal__dialog {
    background: linear-gradient(145deg, var(--surface), #f3e3cb);
    border: 1px solid rgba(199, 154, 72, 0.45);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(43, 23, 20, 0.34);
    color: var(--ink);
    left: 50%;
    max-height: min(760px, calc(100vh - 32px));
    max-width: 660px;
    overflow: auto;
    padding: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -48%);
    transition: transform 180ms ease;
    width: min(calc(100vw - 28px), 660px);
}

.contact-modal[data-open="true"] .contact-modal__dialog {
    transform: translate(-50%, -50%);
}

.contact-modal__close {
    align-items: center;
    background: var(--accent-dark);
    border: 1px solid rgba(199, 154, 72, 0.5);
    border-radius: 999px;
    color: #fffaf1;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 1.35rem;
    height: 42px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
}

.contact-modal__property {
    color: var(--muted);
    margin: -4px 0 22px;
}

.contact-options {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.contact-options a {
    align-items: center;
    background: rgba(255, 250, 241, 0.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    transition: border-color 160ms ease, transform 160ms ease;
}

.contact-options a:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
}

.contact-options span,
.contact-options small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-options strong {
    color: var(--accent-dark);
    font-size: 1.05rem;
}

.contact-modal__compose {
    width: 100%;
}

.inquiry-form {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding-top: 22px;
}

.inquiry-form label {
    color: var(--muted);
    display: grid;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 8px;
}

.inquiry-form input,
.inquiry-form textarea {
    background: #fffaf1;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    outline: none;
    padding: 12px 14px;
    width: 100%;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 154, 72, 0.18);
}

.errorlist {
    color: #8d1f2a;
    list-style: none;
    margin: 0;
    padding: 0;
}

.form-notice {
    border-radius: 8px;
    font-weight: 760;
    margin: 14px 0;
    padding: 12px 14px;
}

.form-notice.success {
    background: rgba(184, 135, 63, 0.18);
    border: 1px solid rgba(184, 135, 63, 0.36);
    color: var(--accent-dark);
}

.form-notice.error {
    background: rgba(141, 31, 42, 0.1);
    border: 1px solid rgba(141, 31, 42, 0.28);
    color: #8d1f2a;
}

.site-footer {
    align-items: center;
    background: var(--ink);
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 24px clamp(18px, 5vw, 76px);
}

.site-footer a {
    color: var(--gold);
    font-weight: 820;
}

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

@media (max-width: 980px) {
    .hero,
    .two-column,
    .detail-hero,
    .services-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-photo {
        min-height: 390px;
    }

    .skills-grid,
    .property-grid,
    .details-grid,
    .stats-band,
    .photo-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .detail-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .site-header,
    .section-heading.with-action,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav a {
        text-align: center;
        flex: 1;
    }

    .hero-photo::after {
        display: none;
    }

    .property-card-gallery-controls {
        opacity: 1;
        pointer-events: auto;
    }

    .gallery-controls {
        bottom: 12px;
        left: 14px;
        transform: none;
    }

    .gallery-fullscreen {
        bottom: 12px;
        right: 12px;
    }

    .image-lightbox {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        padding: 70px 10px 18px;
    }

    .lightbox-toolbar {
        left: 10px;
        right: 10px;
        justify-content: flex-end;
    }

    .lightbox-toolbar button {
        min-height: 38px;
        min-width: 38px;
        padding: 0 11px;
    }

    .lightbox-nav {
        font-size: 2rem;
        height: 42px;
        width: 42px;
    }
}





/* ==========================
   Mobile navigation
========================== */

.nav-toggle {
    display: none;

    background: var(--accent-dark);
    color: white;

    border: none;
    border-radius: 8px;

    width: 44px;
    height: 44px;

    font-size: 1.4rem;
    cursor: pointer;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 720px) {

    .site-header {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .header-menu {
        width: 100%;

        display: none;
        flex-direction: column;

        margin-top: 14px;
        padding-top: 14px;

        border-top: 1px solid var(--line);
    }

    .header-menu.open {
        display: flex;
    }

    .site-nav {
        width: 100%;

        flex-direction: column;
        border-radius: 16px;
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        width: 100%;
    }

    .language-switcher select {
        width: 100%;
    }
}









.contact-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.copy-button {
    align-self: center;
    background: var(--accent-dark);
    color: white;
    border: none;
    border-radius: 10px;
    width: 42px;
    height: 90%;
    cursor: pointer;
    transition: 160ms;
}

.copy-button:hover {
    transform: scale(1.06);
}

.copy-button.is-copied {
    background: var(--gold);
    color: var(--ink);
    width: auto;
    padding: 0 12px;
}