:root {
    --ink: #1c1a16;
    --muted: #6e675f;
    --paper: #fbf7ef;
    --sand: #e5d3bb;
    --wood: #a86435;
    --coral: #c75f3d;
    --sea: #1f7f91;
    --deep: #11343a;
    --white: #fff;
    --line: rgba(28, 26, 22, .14);
}

/* Laguna-inspired visual refresh: bright resort surfaces, slim navigation and calm editorial spacing. */
body {
    background: #ffffff;
}

.site-header {
    position: sticky;
    background: rgba(255,255,255,.96);
    color: #141414;
    min-height: 74px;
    border-bottom: 1px solid rgba(20,20,20,.08);
    box-shadow: none;
}

.site-header.scrolled {
    background: rgba(255,255,255,.98);
    color: #141414;
    box-shadow: 0 12px 30px rgba(20,20,20,.06);
}

.brand img {
    width: 128px;
    background: transparent;
    mix-blend-mode: multiply;
}

.main-nav {
    font-size: 12px;
    letter-spacing: 0;
}

.main-nav a {
    color: rgba(20,20,20,.58);
    font-weight: 700;
}

.main-nav a.active,
.main-nav a:hover {
    color: #141414;
}

.header-actions .btn.small {
    border-color: #141414;
    background: #141414;
    color: #fff;
}

.lang {
    color: #dab89a;
    font-weight: 800;
}

.hero {
    min-height: calc(100vh - 74px);
    align-items: center;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(20,20,20,.50), rgba(20,20,20,.18) 58%, rgba(20,20,20,.04));
}

.hero-content {
    margin: 0 0 0 clamp(20px, 7vw, 92px);
    width: min(690px, calc(100% - 40px));
}

h1,
.intro h2,
.section-head h2,
.feature-grid h2,
.contact-grid h2,
.image-band h2,
.service-list h2,
.post-card h2,
.post-card h3,
.card h3 {
    font-family: "Tenor Sans", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    font-size: clamp(43px, 6.4vw, 78px);
    line-height: 1.08;
}

.hero-content > p:not(.eyebrow) {
    max-width: 520px;
    font-size: 15px;
    color: rgba(255,255,255,.82);
}

.eyebrow {
    color: #dab89a;
    font-size: 12px;
    font-weight: 800;
}

.btn {
    background: #141414;
    border-color: #141414;
    border-radius: 0;
    min-height: 44px;
}

.btn.ghost {
    border-color: #fff;
    color: #fff;
}

.intro {
    padding: 110px 0 80px;
}

.intro p,
.feature-grid p,
.contact-grid p,
.seo-copy p,
.card p,
.post-card p {
    color: #7a7a7a;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    border-top: 1px solid rgba(20,20,20,.1);
    padding-top: 24px;
}

.stats-row span {
    display: grid;
    gap: 4px;
    color: #7a7a7a;
    font-size: 12px;
}

.stats-row strong {
    font-family: "Tenor Sans", Georgia, serif;
    color: #141414;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.image-band {
    background: #f8f5f1;
    color: #141414;
}

.image-band div {
    align-self: center;
}

.image-band p {
    color: #7a7a7a;
}

.image-band span {
    color: #dab89a;
}

.section {
    padding: 104px 0;
}

.cards,
.post-grid {
    gap: 30px;
}

.card,
.post-card {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.card img,
.post-card img {
    height: 330px;
    border-radius: 0;
}

.card div {
    padding: 24px 0 0;
}

.card h3,
.post-card h2,
.post-card h3 {
    font-size: 24px;
}

.gallery-strip {
    height: 360px;
}

.feature-grid img,
.contact-form,
.service-list article {
    border-radius: 0;
}

.service-list article {
    border: 0;
    background: #f8f5f1;
}

.footer {
    background: #141414;
}

@media (max-width: 900px) {
    .site-header {
        min-height: 56px;
        position: sticky;
        padding: 10px 20px;
    }
    .brand img { width: 110px; }
    .hero {
        min-height: 635px;
    }
    .hero-content {
        margin-left: 40px;
        width: min(325px, calc(100% - 80px));
    }
    h1 {
        font-size: 43px;
    }
    .intro h2,
    .section-head h2,
    .image-band h2,
    .feature-grid h2,
    .contact-grid h2 {
        font-size: 37px;
        line-height: 1.12;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* Service cards and nearby places page. */
.section .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section .cards .card img {
    height: 300px;
}
.nearby-intro,
.nearby-grid,
.nearby-note {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
.nearby-intro {
    padding: 96px 0 36px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(28px, 6vw, 78px);
    align-items: end;
}
.nearby-intro h2,
.nearby-note h2 {
    margin: 0;
    font-family: "Tenor Sans", Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 400;
}
.nearby-intro p:not(.eyebrow),
.nearby-note p {
    color: #6f6f6f;
    font-size: 18px;
}
.nearby-grid {
    padding: 26px 0 90px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.nearby-card {
    background: #fff;
    border: 1px solid rgba(20,20,20,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(20,20,20,.06);
}
.nearby-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,.34) 96%, transparent);
    mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,.34) 96%, transparent);
}
.nearby-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 22px 12px;
}
.nearby-card span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8f3ef;
    color: #9d6c4a;
    font-size: 12px;
    font-weight: 800;
}
.nearby-card h2 {
    margin: 0 22px 10px;
    font-family: "Tenor Sans", Georgia, serif;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 400;
}
.nearby-card p {
    margin: 0 22px 24px;
    color: #6f6f6f;
}
.nearby-note {
    margin-bottom: 96px;
    padding: 44px;
    border-radius: 22px;
    background:
        linear-gradient(120deg, rgba(20,20,20,.68), rgba(20,20,20,.36)),
        url("/public/assets/img/aerial-beach.jpg") center / cover no-repeat;
    color: #fff;
}
.nearby-note p {
    max-width: 760px;
    color: rgba(255,255,255,.82);
}

@media (max-width: 900px) {
    .section .cards,
    .nearby-grid,
    .nearby-intro {
        grid-template-columns: 1fr;
    }
    .nearby-intro {
        padding-top: 70px;
    }
    .nearby-grid {
        gap: 22px;
    }
    .nearby-card img {
        height: 260px;
    }
    .nearby-note {
        width: 100%;
        margin-bottom: 70px;
        border-radius: 0;
        padding: 40px 18px;
    }
    .seo-copy.section {
        padding-bottom: 36px;
    }
    .seo-copy + .section {
        padding-top: 42px;
    }
}

@media (max-width: 560px) {
    .hero-content {
        margin-left: 40px;
        margin-bottom: 0;
    }
    .hero-actions .btn {
        width: auto;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 58px);
    color: var(--white);
    transition: .25s ease;
}
.site-header.scrolled { background: rgba(251,247,239,.94); color: var(--ink); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.brand img { width: 138px; mix-blend-mode: multiply; background: rgba(255,255,255,.82); border-radius: 2px; }
.main-nav { display: flex; justify-content: center; gap: 26px; font-size: 14px; text-transform: uppercase; letter-spacing: 0; }
.main-nav a { opacity: .82; }
.main-nav a.active, .main-nav a:hover { opacity: 1; color: var(--coral); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang { border-bottom: 1px solid currentColor; font-size: 13px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}
.btn.small { min-height: 38px; padding: 9px 15px; border-color: var(--white); }
.site-header.scrolled .btn.small { border-color: var(--ink); }
.btn.ghost { background: transparent; border-color: var(--white); }
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; margin: 7px 0; background: currentColor; }

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,52,58,.64), rgba(17,52,58,.18) 56%, rgba(0,0,0,.05)); }
.hero-content {
    position: relative;
    width: min(880px, calc(100% - 36px));
    margin: 0 0 clamp(58px, 12vh, 120px) clamp(18px, 7vw, 96px);
    color: var(--white);
}
.eyebrow { margin: 0 0 12px; color: var(--coral); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
.hero .eyebrow { color: #ffd4b8; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 7vw, 92px); line-height: .98; font-weight: 400; max-width: 820px; }
.hero-content > p:not(.eyebrow) { max-width: 660px; font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.intro, .section, .feature-grid, .contact-grid, .article, .plain-page {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}
.intro { padding: 96px 0 70px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 84px); align-items: start; }
.intro h2, .section-head h2, .feature-grid h2, .contact-grid h2, .image-band h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.05;
    margin: 0;
    font-weight: 400;
}
.intro p, .feature-grid p, .contact-grid p, .seo-copy p { color: var(--muted); font-size: 18px; }
.centered { max-width: 820px; text-align: center; }

.image-band {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    min-height: 620px;
    background: var(--deep);
    color: var(--white);
}
.image-band img { width: 100%; height: 100%; object-fit: cover; }
.image-band div { padding: clamp(36px, 7vw, 92px); align-self: end; }
.image-band span { display: block; color: #8ed5d7; margin-bottom: 22px; }

.section { padding: 88px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-head a { border-bottom: 1px solid currentColor; color: var(--sea); font-weight: 700; }
.cards, .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card, .post-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.card img, .post-card img { width: 100%; height: 280px; object-fit: cover; }
.card div, .post-card { padding-bottom: 20px; }
.card div { padding: 24px; }
.card h3, .post-card h2, .post-card h3 { margin: 0 0 10px; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.1; }
.card p, .post-card p { color: var(--muted); margin: 0; }

.gallery-strip { display: grid; grid-template-columns: repeat(8, 1fr); height: 280px; overflow: hidden; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
.columns { columns: 2 320px; column-gap: 48px; }
.post-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-card { padding: 0 0 24px; }
.post-card h2, .post-card h3, .post-card p, .post-card a, .post-card time { display: block; margin-left: 22px; margin-right: 22px; }
.post-card time { margin-top: 20px; color: var(--coral); font-weight: 700; font-size: 13px; }
.post-card a { margin-top: 18px; color: var(--sea); font-weight: 800; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
    padding: 30px 0 100px;
}
.feature-grid img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; }
.service-list { width: min(1180px, calc(100% - 36px)); margin: 0 auto 90px; display: grid; gap: 24px; }
.service-list article { display: grid; grid-template-columns: .9fr 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.service-list article:nth-child(even) { grid-template-columns: 1fr .9fr; }
.service-list article:nth-child(even) img { order: 2; }
.service-list img { width: 100%; height: 420px; object-fit: cover; }
.service-list div { padding: clamp(28px, 5vw, 64px); align-self: center; }
.service-list span { color: var(--coral); font-weight: 800; }
.service-list h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(30px, 4vw, 52px); line-height: 1.08; }

.article { padding: 90px 0; max-width: 820px; font-size: 20px; color: var(--muted); }
.article time { display: block; color: var(--coral); font-weight: 800; margin-bottom: 20px; }
.contact-grid { padding: 90px 0; display: grid; grid-template-columns: 1fr .9fr; gap: 46px; }
.contact-links { display: grid; gap: 12px; margin-top: 24px; font-weight: 800; color: var(--sea); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 13px 14px;
    font: inherit;
    background: #fffdf8;
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: saturate(.92); }

.footer { background: var(--ink); color: var(--white); padding: 58px clamp(18px, 5vw, 70px) 110px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 34px; }
.footer-logo { width: 150px; background: var(--white); margin-bottom: 18px; }
.footer h2 { font-size: 15px; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; color: #f5d2bd; }
.footer p { color: rgba(255,255,255,.72); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.66); font-size: 13px; }
.quick-actions { position: fixed; z-index: 60; left: 50%; bottom: 16px; transform: translateX(-50%); display: none; background: var(--ink); color: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.quick-actions a { padding: 12px 14px; font-size: 13px; font-weight: 800; border-right: 1px solid rgba(255,255,255,.18); white-space: nowrap; }
.plain-page { padding: 180px 0 110px; min-height: 70vh; }

@media (max-width: 900px) {
    .site-header { grid-template-columns: auto auto; justify-content: space-between; }
    .nav-toggle { display: block; color: inherit; }
    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 82px;
        display: none;
        grid-template-columns: 1fr;
        background: var(--paper);
        color: var(--ink);
        padding: 18px;
        border-radius: 8px;
        box-shadow: 0 20px 44px rgba(0,0,0,.18);
    }
    .main-nav.open { display: grid; }
    .header-actions .btn { display: none; }
    .hero { min-height: 86vh; }
    .split, .image-band, .feature-grid, .contact-grid, .service-list article, .service-list article:nth-child(even) { grid-template-columns: 1fr; }
    .service-list article:nth-child(even) img { order: 0; }
    .cards, .post-grid, .post-grid.wide, .footer-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: repeat(4, 1fr); height: 420px; }
    .footer-bottom { display: grid; }
    .quick-actions { display: flex; }
}

@media (max-width: 560px) {
    .brand img { width: 112px; }
    .site-header { padding: 14px 16px; }
    .hero-content { margin-left: 18px; margin-bottom: 58px; }
    .hero-actions .btn { width: 100%; }
    .section-head { display: block; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .card img, .post-card img, .service-list img { height: 250px; }
}

/* Final Laguna-style overrides. */
body { background: #fff; }
.site-header {
    position: sticky;
    min-height: 74px;
    background: rgba(255,255,255,.96);
    color: #141414;
    border-bottom: 1px solid rgba(20,20,20,.08);
    box-shadow: none;
}
.site-header.scrolled {
    background: rgba(255,255,255,.98);
    color: #141414;
    box-shadow: 0 12px 30px rgba(20,20,20,.06);
}
.brand img {
    width: 128px;
    background: transparent;
    mix-blend-mode: multiply;
}
.main-nav { font-size: 12px; }
.main-nav a { color: rgba(20,20,20,.58); font-weight: 700; }
.main-nav a.active, .main-nav a:hover { color: #141414; }
.header-actions .btn.small { border-color: #141414; background: #141414; color: #fff; }
.lang { color: #dab89a; font-weight: 800; }
.hero { min-height: calc(100vh - 74px); align-items: center; }
.hero-shade { background: linear-gradient(90deg, rgba(20,20,20,.50), rgba(20,20,20,.18) 58%, rgba(20,20,20,.04)); }
.hero-content {
    margin: 0 0 0 clamp(20px, 7vw, 92px);
    width: min(690px, calc(100% - 40px));
}
h1,
.intro h2,
.section-head h2,
.feature-grid h2,
.contact-grid h2,
.image-band h2,
.service-list h2,
.post-card h2,
.post-card h3,
.card h3 {
    font-family: "Tenor Sans", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 400;
}
h1 { font-size: clamp(43px, 6.4vw, 78px); line-height: 1.08; }
.hero-content > p:not(.eyebrow) { max-width: 520px; font-size: 15px; color: rgba(255,255,255,.82); }
.eyebrow { color: #dab89a; font-size: 12px; font-weight: 800; }
.hero .eyebrow { color: #dab89a; }
.btn { background: #141414; border-color: #141414; border-radius: 0; min-height: 44px; }
.btn.ghost { border-color: #fff; color: #fff; }
.intro { padding: 110px 0 80px; }
.intro p, .feature-grid p, .contact-grid p, .seo-copy p, .card p, .post-card p { color: #7a7a7a; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    border-top: 1px solid rgba(20,20,20,.1);
    padding-top: 24px;
}
.stats-row span { display: grid; gap: 4px; color: #7a7a7a; font-size: 12px; }
.stats-row strong { font-family: "Tenor Sans", Georgia, serif; color: #141414; font-size: 34px; font-weight: 400; line-height: 1; }
.image-band { background: #f8f5f1; color: #141414; }
.image-band div { align-self: center; }
.image-band p { color: #7a7a7a; }
.image-band span { color: #dab89a; }
.section { padding: 104px 0; }
.cards, .post-grid { gap: 30px; }
.card, .post-card { border: 0; border-radius: 0; background: #fff; box-shadow: none; }
.card img, .post-card img { height: 330px; border-radius: 0; }
.card div { padding: 24px 0 0; }
.card h3, .post-card h2, .post-card h3 { font-size: 24px; }
.gallery-strip { height: 360px; }
.feature-grid img, .contact-form, .service-list article { border-radius: 0; }
.service-list article { border: 0; background: #f8f5f1; }
.footer { background: #141414; }

@media (max-width: 900px) {
    .site-header { min-height: 56px; position: sticky; padding: 10px 20px; }
    .brand img { width: 110px; }
    .hero { min-height: 635px; }
    .hero-content { margin-left: 40px; margin-bottom: 0; width: min(325px, calc(100% - 80px)); }
    h1 { font-size: 43px; }
    .intro h2, .section-head h2, .image-band h2, .feature-grid h2, .contact-grid h2 {
        font-size: 37px;
        line-height: 1.12;
    }
    .stats-row { grid-template-columns: 1fr; }
    .main-nav.open { top: 62px; }
}

@media (max-width: 560px) {
    .hero-content { margin-left: 40px; margin-bottom: 0; }
    .hero-actions .btn { width: auto; }
}

/* Logo and navigation polish. */
.brand img {
    width: 116px;
    height: auto;
    background: transparent;
    mix-blend-mode: normal;
    border-radius: 0;
}
.main-nav {
    gap: 30px;
    font-size: 13px;
}
.main-nav a {
    position: relative;
    color: rgba(20,20,20,.74);
    font-weight: 800;
    opacity: 1;
    padding: 10px 0;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background: #dab89a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.main-nav a.active,
.main-nav a:hover {
    color: #141414;
}
.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}
.footer-logo {
    width: 120px;
    background: transparent;
    margin-bottom: 18px;
    filter: invert(1);
}

@media (max-width: 900px) {
    .brand img { width: 98px; }
    .main-nav { gap: 14px; font-size: 13px; }
}

/* Reservation, language switch and quick action redesign. */
.btn svg,
.quick-actions svg,
.reservation-trigger svg,
.menu-trigger svg {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.reservation-trigger {
    cursor: pointer;
    gap: 8px;
}
.menu-trigger {
    cursor: pointer;
    gap: 8px;
}
.reservation-trigger span {
    display: inline-block;
}
.header-actions {
    flex-wrap: nowrap;
}
.header-actions .lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.74);
    box-shadow: 0 8px 22px rgba(0,0,0,.05);
    text-decoration: none;
}
.quick-actions {
    position: fixed;
    z-index: 60;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    padding: 8px;
    background: rgba(255,255,255,.72);
    color: #141414;
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
    backdrop-filter: blur(16px);
}
.quick-actions a,
.quick-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid rgba(20,20,20,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    color: #141414;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}
.quick-actions svg {
    width: 18px;
    height: 18px;
    margin-right: 0;
}
.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.reservation-modal.open {
    display: flex;
}
.reservation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,.54);
    backdrop-filter: blur(8px);
}
.reservation-dialog {
    position: relative;
    width: min(980px, 100%);
    height: min(760px, 88vh);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.reservation-head {
    padding: 26px 30px 18px;
}
.reservation-head h2 {
    margin: 0;
    font-family: "Tenor Sans", Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}
.reservation-dialog iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}
.reservation-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(20,20,20,.12);
    background: rgba(255,255,255,.72);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.reservation-fallback {
    padding: 13px 30px 18px;
    color: #1f7f91;
    font-weight: 800;
}
.modal-open {
    overflow: hidden;
}
.form-notice {
    margin: 0 0 8px;
    padding: 12px 14px;
    font-weight: 700;
}
.form-notice.ok {
    background: #e6f2ee;
    color: #145044;
}
.form-notice.error {
    background: #fff1ea;
    color: #8b3b24;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }
    .header-actions {
        order: 2;
        margin-left: auto;
    }
    .nav-toggle {
        order: 3;
    }
    .brand {
        order: 1;
    }
    .header-actions .lang {
        min-width: 38px;
        min-height: 34px;
    }
    .quick-actions span {
        display: none;
    }
    .quick-actions a,
    .quick-actions button {
        width: 40px;
        padding: 0;
    }
    .reservation-dialog {
        height: 86vh;
    }
}

/* Home activities section, inspired by the reference layout. */
.activity-section {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 118px) max(18px, calc((100vw - 1180px) / 2));
    background: #f7f2ee;
}
.activity-section::before {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -95px;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(ellipse at center, rgba(20,20,20,.05), transparent 62%),
        linear-gradient(65deg, transparent 48%, rgba(20,20,20,.055) 49%, transparent 51%);
    opacity: .55;
    transform: rotate(-18deg);
    pointer-events: none;
}
.activity-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 34px;
}
.activity-head h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Tenor Sans", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.12;
    font-weight: 400;
    color: #141414;
}
.activity-copy {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 0 54px;
    color: #6f6f6f;
    font-size: 17px;
}
.activity-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid rgba(20,20,20,.14);
}
.activity-item {
    min-height: 230px;
    padding: 32px 38px 26px;
    border-right: 1px solid rgba(20,20,20,.14);
}
.activity-item svg {
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    fill: none;
    stroke: rgba(20,20,20,.48);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.activity-item h3 {
    margin: 0 0 12px;
    font-family: "Tenor Sans", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #141414;
}
.activity-item p {
    margin: 0;
    color: #6f6f6f;
    font-size: 14px;
}

@media (max-width: 900px) {
    .activity-section {
        padding: 64px 18px 78px;
    }
    .activity-head {
        grid-template-columns: 1fr;
        margin-bottom: 22px;
    }
    .activity-head h2 {
        font-size: 36px;
    }
    .activity-head .btn {
        justify-self: start;
    }
    .activity-copy {
        margin-bottom: 32px;
        font-size: 16px;
    }
    .activity-grid {
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(20,20,20,.14);
    }
    .activity-item {
        min-height: 190px;
        padding: 24px 20px 22px;
        border-bottom: 1px solid rgba(20,20,20,.14);
    }
    .activity-item svg {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
    }
    .activity-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .activity-grid {
        grid-template-columns: 1fr 1fr;
    }
    .activity-head h2 {
        font-size: 31px;
    }
    .activity-item {
        min-height: 176px;
        padding: 20px 14px 18px;
    }
    .activity-item svg {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    .activity-item h3 {
        font-size: 18px;
        line-height: 1.18;
    }
    .activity-item p {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* Requested refinements: softer media, clearer CTAs, floating language and cookie notice. */
.header-actions .btn.small,
.nav-text-action {
    background: rgba(255,255,255,.84);
    color: #141414;
    border: 1px solid rgba(20,20,20,.22);
    box-shadow: 0 8px 20px rgba(20,20,20,.06);
}
.header-actions .btn.small:hover,
.nav-text-action:hover {
    background: #141414;
    color: #fff;
}
.nav-panel-actions {
    display: none;
}
.nav-text-action {
    min-height: 38px;
    padding: 9px 14px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.laguna-band {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    min-height: 440px;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
    background: #f8f3ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(20,20,20,.08);
}
.parallax-frame {
    overflow: hidden;
}
.parallax-frame img {
    height: clamp(620px, 92vw, 980px);
    object-fit: cover;
    object-position: 50% var(--image-y, 0%);
    transition: object-position .08s linear;
}
.laguna-band img {
    min-height: 440px;
    filter: saturate(.95) contrast(.96);
    -webkit-mask-image: linear-gradient(90deg, #000 72%, rgba(0,0,0,.2));
    mask-image: linear-gradient(90deg, #000 72%, rgba(0,0,0,.2));
}
.laguna-band div {
    padding: clamp(28px, 4.8vw, 64px);
}
.rules-list {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
    counter-reset: rules;
}
.laguna-band .rules-list {
    margin-top: 18px;
}
.laguna-band .rules-list + .rules-note {
    margin-top: 14px;
}
.laguna-band h2 + p {
    margin-top: 14px;
}
.rules-list li {
    position: relative;
    list-style: none;
    padding: 12px 14px 12px 46px;
    border: 1px solid rgba(20,20,20,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.62);
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.52;
}
.rules-list li::before {
    counter-increment: rules;
    content: counter(rules, decimal-leading-zero);
    position: absolute;
    left: 13px;
    top: 13px;
    color: #c5936d;
    font-size: 12px;
    font-weight: 900;
}
.rules-note {
    margin-top: 18px;
    font-weight: 800;
    color: #141414 !important;
}
.post-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(20,20,20,.06);
}
.post-card img {
    border-radius: 18px 18px 0 0;
    -webkit-mask-image: linear-gradient(180deg, #000 76%, rgba(0,0,0,.35) 95%, transparent);
    mask-image: linear-gradient(180deg, #000 76%, rgba(0,0,0,.35) 95%, transparent);
}
.footer {
    padding-bottom: 132px;
}
.footer-grid {
    grid-template-columns: 1.05fr .75fr .7fr 1.05fr;
}
.footer-nav {
    display: grid;
    gap: 7px;
}
.footer-nav a,
.footer-nav button {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f5d2bd;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.footer-bottom a {
    color: rgba(255,255,255,.78);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.language-float {
    position: fixed;
    z-index: 70;
    right: 18px;
    bottom: 104px;
    display: grid;
    gap: 6px;
    padding: 7px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(20,20,20,.14);
    backdrop-filter: blur(14px);
}
.language-float a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 34px;
    border-radius: 999px;
    color: rgba(20,20,20,.58);
    font-size: 12px;
    font-weight: 900;
}
.language-float a.active {
    background: #141414;
    color: #fff;
}
body.cookie-visible .language-float {
    bottom: 168px;
}
.cookie-banner {
    position: fixed;
    z-index: 90;
    left: 18px;
    bottom: 18px;
    width: min(520px, calc(100% - 36px));
    display: none;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: rgba(255,255,255,.9);
    color: #141414;
    border: 1px solid rgba(20,20,20,.12);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(20,20,20,.18);
    backdrop-filter: blur(16px);
}
.cookie-banner.open {
    display: grid;
}
.cookie-banner strong {
    display: block;
    margin-bottom: 4px;
}
.cookie-banner p {
    margin: 0;
    color: #6f6f6f;
    font-size: 13px;
    line-height: 1.55;
}
.cookie-banner a {
    color: #141414;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-actions {
    display: flex;
    gap: 8px;
}
.cookie-actions button {
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(20,20,20,.16);
    background: rgba(255,255,255,.7);
    color: #141414;
    font-weight: 800;
    cursor: pointer;
}
.cookie-actions [data-cookie-accept] {
    background: #141414;
    color: #fff;
}
.legal-page {
    max-width: 920px;
}
.legal-page h2 {
    margin: 34px 0 14px;
    font-family: "Tenor Sans", Georgia, serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.12;
}
.legal-page p {
    color: #6f6f6f;
    font-size: 18px;
}
.legal-page a {
    color: #1f7f91;
    font-weight: 800;
}
.section-head {
    display: grid;
    grid-template-columns: minmax(90px, auto) 1fr auto;
    align-items: end;
    column-gap: clamp(18px, 4vw, 54px);
}
.section-head .eyebrow {
    margin: 0 0 9px;
    max-width: 120px;
    color: #d3a987;
    line-height: 1.25;
}
.section-head h2 {
    max-width: 700px;
}
.section-head > a {
    align-self: center;
    white-space: nowrap;
}
.parallax-gallery {
    height: min(72vh, 640px);
    grid-auto-rows: 1fr;
}
.parallax-gallery img {
    height: 128%;
    object-position: 50% var(--gallery-y, 0%);
    transform: translateY(var(--gallery-shift, -8%));
    transition: transform .08s linear, object-position .08s linear;
}
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: calc(var(--reveal-index, 0) * 80ms);
}
.reveal-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 901px) {
    .header-actions .btn.small svg {
        display: none;
    }
}

@media (max-width: 900px) {
    .main-nav {
        gap: 10px;
    }
    .nav-panel-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 8px;
    }
    .nav-text-action {
        width: 100%;
        min-height: 44px;
    }
    .laguna-band {
        width: 100%;
        min-height: 0;
        border-radius: 0;
        grid-template-columns: 1fr;
        box-shadow: none;
    }
    .laguna-band img {
        min-height: 0;
        max-height: none;
        height: 620px;
        -webkit-mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,.18));
        mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,.18));
    }
    .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    .section-head .eyebrow {
        max-width: none;
        margin: 0;
        display: inline-flex;
        width: fit-content;
        padding: 6px 10px;
        border-left: 2px solid #d3a987;
        background: #fbf7f3;
    }
    .section-head h2 {
        font-size: 38px;
        line-height: 1.08;
    }
    .section-head > a {
        justify-self: start;
        align-self: start;
    }
    .parallax-gallery {
        height: 520px;
    }
    .parallax-gallery img {
        height: 140%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        left: 12px;
        bottom: 94px;
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }
    .cookie-actions {
        justify-content: stretch;
    }
    .cookie-actions button {
        flex: 1;
    }
    .language-float {
        right: 12px;
        bottom: 98px;
    }
    body.cookie-visible .language-float {
        bottom: 260px;
    }
}

/* Header, mobile menu and footer tightening. */
.site-header,
.site-header.scrolled {
    background: rgba(255,255,255,.72);
    border-bottom-color: rgba(20,20,20,.07);
    box-shadow: 0 10px 34px rgba(20,20,20,.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.hero-actions .menu-trigger svg {
    display: none;
}
.footer {
    padding-top: 52px;
    padding-bottom: 86px;
}
.footer-grid {
    gap: 28px;
}
.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    align-items: center;
}

@media (max-width: 900px) {
    .site-header,
    .site-header.scrolled {
        background: rgba(255,255,255,.68);
    }
    .main-nav {
        top: 62px;
        padding: 22px 18px;
        overflow: hidden;
        color: #fff;
        background:
            linear-gradient(120deg, rgba(20,20,20,.78), rgba(20,20,20,.42)),
            url("/public/assets/img/terrace-view.jpg") center / cover no-repeat;
        border: 1px solid rgba(255,255,255,.34);
        box-shadow: 0 22px 58px rgba(20,20,20,.28);
    }
    .main-nav a {
        color: rgba(255,255,255,.86);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }
    .main-nav a.active,
    .main-nav a:hover {
        color: #fff;
    }
    .main-nav a::after {
        background: #f5d2bd;
        bottom: -1px;
    }
    .nav-panel-actions {
        display: none;
    }
    .footer {
        padding: 42px 32px 92px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-bottom {
        margin-top: 24px;
    }
}

/* Keep both desktop and mobile headers floating over the hero image. */
.site-header,
.site-header.scrolled {
    position: fixed;
    background: rgba(255,255,255,.58);
    border-bottom-color: rgba(255,255,255,.32);
    box-shadow: 0 12px 36px rgba(20,20,20,.08);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}
.hero {
    margin-top: 0;
}

@media (max-width: 900px) {
    .site-header,
    .site-header.scrolled {
        background: rgba(255,255,255,.52);
        border-bottom-color: rgba(255,255,255,.24);
    }
    .main-nav.open {
        top: calc(100% + 8px);
    }
}

/* Premium header CTA and richer footer surface. */
.header-actions {
    gap: 12px;
}
.header-actions .btn.small {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    letter-spacing: 0;
    border: 1px solid rgba(20,20,20,.16);
    background: rgba(255,255,255,.72);
    color: #141414;
    box-shadow: 0 14px 32px rgba(20,20,20,.09);
    backdrop-filter: blur(12px);
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.header-actions .btn.small:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(20,20,20,.14);
}
.header-actions .menu-trigger {
    background: rgba(255,255,255,.56);
}
.header-actions .reservation-trigger {
    background: #141414;
    color: #fff;
    border-color: #141414;
}
.header-actions .reservation-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 4px;
    border-radius: 999px;
    background: #d8ad86;
    box-shadow: 0 0 0 5px rgba(216,173,134,.16);
}
.footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(16,14,12,.92), rgba(16,14,12,.82) 48%, rgba(92,54,35,.74)),
        url("/public/assets/img/toast-sea.jpg") center / cover no-repeat;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(216,173,134,.24), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.05), transparent 34%);
    pointer-events: none;
}
.footer > * {
    position: relative;
    z-index: 1;
}
.footer-grid > div {
    padding: 18px 0;
}
.footer h2 {
    color: #fff;
    letter-spacing: 0;
}
.footer a,
.footer-nav button {
    color: #f6d7c4;
}
.footer p {
    color: rgba(255,255,255,.78);
}
.footer-logo {
    filter: invert(1) drop-shadow(0 12px 28px rgba(0,0,0,.28));
}
.footer-bottom {
    border-top-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.05);
    padding: 18px 18px 0;
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 18px 18px 0 0;
}

@media (max-width: 900px) {
    .footer {
        background:
            linear-gradient(180deg, rgba(16,14,12,.94), rgba(16,14,12,.84)),
            url("/public/assets/img/toast-sea.jpg") center / cover no-repeat;
    }
    .footer-grid > div {
        padding: 8px 0;
    }
}

/* Footer content alignment polish. */
.footer-grid {
    align-items: stretch;
}
.footer-grid > div {
    min-height: 218px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
}
.footer-grid > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-logo {
    margin-bottom: 22px;
}
.footer h2 {
    margin: 0 0 18px;
}
.footer p {
    max-width: 420px;
    margin: 0;
    line-height: 1.65;
}
.footer a,
.footer-nav button {
    margin: 0 0 10px;
}
.footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}
.footer-nav a,
.footer-nav button {
    font-size: 14px;
    line-height: 1.35;
}
.footer-grid > div:last-child p {
    max-width: 460px;
}
.footer-bottom {
    min-height: 58px;
    padding: 18px 18px;
}

@media (max-width: 900px) {
    .footer-grid > div {
        min-height: 0;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 16px;
        background: rgba(255,255,255,.055);
        backdrop-filter: blur(8px);
    }
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
    }
    .footer-bottom {
        padding: 16px;
        background: rgba(255,255,255,.05);
    }
}

@media (max-width: 480px) {
    .footer {
        padding-left: 18px;
        padding-right: 18px;
    }
    .footer-grid {
        gap: 14px;
    }
    .footer-grid > div {
        padding: 16px;
    }
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* Manageable home gallery: spacious slider with click-to-enlarge images. */
.gallery-carousel-section {
    padding: clamp(34px, 5vw, 72px) 0;
    overflow: hidden;
    background: #fff;
}
.gallery-carousel {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 max(20px, calc((100vw - 1180px) / 2)) 18px;
    scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar {
    display: none;
}
.gallery-slide {
    flex: 0 0 clamp(280px, 30vw, 430px);
    height: clamp(260px, 32vw, 430px);
    border: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 26px;
    scroll-snap-align: center;
    box-shadow: 0 26px 70px rgba(30, 22, 15, .12);
    cursor: zoom-in;
}
.gallery-slide img {
    width: 100%;
    height: 112%;
    display: block;
    object-fit: cover;
    object-position: 50% var(--gallery-y, 45%);
    transform: translateY(var(--gallery-shift, -6%)) scale(1.02);
    transition: transform .5s ease, filter .5s ease;
}
.gallery-slide:hover img {
    transform: translateY(var(--gallery-shift, -6%)) scale(1.08);
    filter: saturate(1.04);
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    place-items: center;
    padding: clamp(18px, 4vw, 56px);
    background: rgba(13, 12, 11, .84);
    backdrop-filter: blur(12px);
}
.gallery-lightbox.open {
    display: grid;
}
.gallery-lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 34px 90px rgba(0,0,0,.44);
}
.gallery-lightbox-close {
    position: fixed;
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 700px) {
    .gallery-carousel-section {
        padding: 26px 0 42px;
    }
    .gallery-carousel {
        padding-left: 18px;
        padding-right: 18px;
    }
    .gallery-slide {
        flex-basis: 78vw;
        height: 360px;
        border-radius: 20px;
    }
}
