:root {
    --color-agave: #3f7f61;
    --color-agave-soft: #dfeee5;
    --color-green-dark: #163629;
    --color-green-deep: #0f261e;
    --color-gold: #c99a35;
    --color-gold-light: #f3d58a;
    --color-cream: #f8f1e3;
    --color-clay: #a45d3b;
    --color-white: #ffffff;
    --color-ink: #17251f;
    --color-muted: #66746d;
    --color-line: rgba(22, 54, 41, 0.14);
    --shadow-soft: 0 18px 45px rgba(16, 43, 32, 0.13);
    --shadow-card: 0 14px 30px rgba(16, 43, 32, 0.1);
    --radius: 8px;
    --radius-small: 6px;
    --font-display: "Marcellus", Georgia, serif;
    --font-body: "Source Sans 3", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 241, 227, 0.92);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-green-dark);
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: var(--color-green-dark);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border: 1px solid rgba(22, 54, 41, 0.12);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(23, 37, 31, 0.82);
    font-weight: 600;
}

.nav-menu a:not(.btn) {
    position: relative;
    padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-small);
    background: var(--color-white);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 3px auto;
    background: var(--color-green-dark);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    font: inherit;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-gold {
    color: var(--color-green-deep);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    box-shadow: 0 12px 24px rgba(201, 154, 53, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
    box-shadow: 0 16px 28px rgba(201, 154, 53, 0.35);
}

.btn-light {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.46);
}

.btn-light:hover,
.btn-light:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
    color: var(--color-green-dark);
    background: var(--color-white);
    border-color: rgba(22, 54, 41, 0.22);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.btn-small {
    min-height: 40px;
    padding: 10px 16px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    overflow: hidden;
    color: var(--color-white);
    background:
        linear-gradient(90deg, rgba(12, 33, 25, 0.95) 0%, rgba(19, 64, 45, 0.78) 45%, rgba(19, 64, 45, 0.28) 100%),
        radial-gradient(circle at 74% 30%, rgba(243, 213, 138, 0.36), transparent 31%),
        url("../img/destileria-barricas.jpeg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background:
        linear-gradient(180deg, transparent, rgba(15, 38, 30, 0.58)),
        repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 34px);
    opacity: 0.42;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 92px 0 120px;
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6.9rem);
    line-height: 0.95;
    font-weight: 400;
}

.hero-subtitle {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.28rem;
}

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

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.hero-highlights span {
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 0.95rem;
}

.hero-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.agave-line {
    position: absolute;
    width: 420px;
    height: 900px;
    bottom: -300px;
    border-radius: 60% 60% 0 0;
    border-left: 22px solid rgba(255, 255, 255, 0.14);
    transform-origin: bottom center;
}

.line-a {
    right: 14%;
    transform: rotate(28deg);
}

.line-b {
    right: 2%;
    transform: rotate(5deg);
}

.line-c {
    right: -12%;
    transform: rotate(-20deg);
}

.section {
    padding: 96px 0;
}

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

.section-heading.compact {
    max-width: 620px;
}

.section-heading h2,
.split-layout h2,
.contact-copy h2 {
    color: var(--color-green-dark);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 14px;
}

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

.eyebrow {
    margin-bottom: 10px;
    color: var(--color-clay);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.86rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}

.intro-section {
    background: var(--color-white);
}

.intro-copy {
    font-size: 1.08rem;
}

.tours-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(248, 241, 227, 0.9)),
        var(--color-cream);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tour-card,
.testimonial-card,
.admin-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.tour-media {
    min-height: 184px;
    background-color: var(--color-agave-soft);
    background-size: cover;
    background-position: center;
}

.tour-media-route {
    background-image:
        linear-gradient(150deg, rgba(22, 54, 41, 0.1), rgba(22, 54, 41, 0.5)),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px 24px),
        url("../img/destileria-barricas.jpeg");
}

.tour-media-tasting {
    background-image:
        linear-gradient(145deg, rgba(22, 54, 41, 0.18), rgba(22, 54, 41, 0.56)),
        radial-gradient(circle at 70% 36%, rgba(243, 213, 138, 0.86), transparent 23%),
        url("../img/experiencia-cantaritos.jpeg");
}

.tour-media-town {
    background-image:
        linear-gradient(145deg, rgba(22, 54, 41, 0.1), rgba(22, 54, 41, 0.42)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.72) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.36) 24% 36%, transparent 36%),
        url("../img/experiencia-cantaritos.jpeg");
}

.tour-media-hacienda {
    background-image:
        linear-gradient(145deg, rgba(22, 54, 41, 0.12), rgba(22, 54, 41, 0.54)),
        repeating-linear-gradient(90deg, rgba(248, 241, 227, 0.6) 0 18px, rgba(248, 241, 227, 0.18) 18px 36px),
        url("../img/destileria-barricas.jpeg");
}

.tour-content {
    padding: 22px;
}

.tour-content h3,
.why-item h3,
.experience-item h3,
.testimonial-card strong,
.site-footer h3 {
    color: var(--color-green-dark);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.tour-content p,
.why-item p,
.experience-item p,
.testimonial-card p {
    color: var(--color-muted);
}

.tour-meta {
    display: grid;
    gap: 6px;
    margin: 18px 0;
    color: var(--color-green-dark);
    font-weight: 700;
}

.why-section {
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(15, 38, 30, 0.97), rgba(22, 54, 41, 0.94)),
        var(--color-green-dark);
}

.why-section .section-heading h2,
.why-item h3 {
    color: var(--color-white);
}

.why-section .eyebrow {
    color: var(--color-gold-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-item {
    min-height: 238px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.06);
}

.why-item span {
    display: block;
    margin-bottom: 42px;
    color: var(--color-gold-light);
    font-weight: 800;
}

.why-item p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
}

.experiences-section {
    background: var(--color-white);
}

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

.experience-item {
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(223, 238, 229, 0.78), rgba(255, 255, 255, 0.92));
}

.gallery-section {
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 38, 30, 0.76));
    z-index: 1;
}

.gallery-item figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: var(--color-white);
    font-weight: 800;
}

.gallery-agave {
    background-image:
        repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 24px),
        linear-gradient(135deg, #5f9d75, #1f4d3b 58%, #c99a35);
}

.gallery-distillery {
    background-image:
        repeating-linear-gradient(90deg, rgba(248, 241, 227, 0.55) 0 18px, transparent 18px 38px),
        linear-gradient(135deg, #163629, #8f6c38);
}

.gallery-tasting {
    background-image:
        radial-gradient(circle at 70% 42%, rgba(243, 213, 138, 0.95), transparent 26%),
        linear-gradient(135deg, #8f5a35, #163629);
}

.gallery-hacienda {
    background-image:
        linear-gradient(90deg, rgba(248, 241, 227, 0.65) 0 18%, transparent 18% 34%, rgba(248, 241, 227, 0.48) 34% 52%, transparent 52%),
        linear-gradient(135deg, #a45d3b, #f3d58a 52%, #3f7f61);
}

.gallery-town {
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.58) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.3) 24% 36%, transparent 36%),
        linear-gradient(135deg, #f8f1e3, #c99a35 50%, #163629);
}

.gallery-food {
    background-image:
        radial-gradient(circle at 36% 42%, rgba(248, 241, 227, 0.78), transparent 24%),
        linear-gradient(135deg, #a45d3b, #c99a35 46%, #163629);
}

.testimonials-section {
    background: var(--color-white);
}

.route-media-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(223, 238, 229, 0.7)),
        var(--color-agave-soft);
}

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

.video-card {
    margin: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    max-height: 560px;
    background: var(--color-green-deep);
    object-fit: cover;
}

.video-card figcaption {
    padding: 16px 18px 18px;
    color: var(--color-green-dark);
    font-weight: 800;
}

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

.testimonial-card {
    padding: 28px;
}

.testimonial-card p {
    font-size: 1.05rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: var(--color-muted);
}

.contact-section {
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(15, 38, 30, 0.96), rgba(40, 83, 64, 0.94)),
        var(--color-green-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 54px;
    align-items: start;
}

.contact-copy h2 {
    color: var(--color-white);
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-copy .eyebrow {
    color: var(--color-gold-light);
}

.contact-details {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.reservation-form {
    padding: 30px;
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 6px;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    color: var(--color-green-dark);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: var(--color-ink);
    background: #fbfaf6;
    border: 1px solid rgba(22, 54, 41, 0.18);
    border-radius: var(--radius-small);
    font: inherit;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    background: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201, 154, 53, 0.16);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #b23b2f;
}

.form-submit {
    width: 100%;
    margin-top: 18px;
}

.form-message {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius-small);
    font-weight: 700;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    color: #1e563b;
    background: #e3f3e8;
    border: 1px solid #b8dfc7;
}

.form-message.error {
    color: #7d241c;
    background: #fde7e3;
    border: 1px solid #efb9b0;
}

.site-footer {
    padding: 56px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #0c1f18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    color: var(--color-white);
    margin-bottom: 18px;
}

.site-footer h3 {
    color: var(--color-white);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-gold-light);
}

.social-links {
    display: grid;
    gap: 8px;
}

.copyright {
    margin-top: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    color: var(--color-white);
    background: #1f8f52;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(16, 43, 32, 0.3);
    font-weight: 800;
}

.admin-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(248, 241, 227, 0.94), rgba(223, 238, 229, 0.88)),
        var(--color-cream);
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-card {
    width: min(440px, 100%);
    padding: 32px;
}

.admin-card h1,
.admin-topbar h1 {
    color: var(--color-green-dark);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.05;
}

.admin-form {
    display: grid;
    gap: 12px;
}

.admin-shell {
    width: min(1260px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-table-wrap {
    overflow-x: auto;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.admin-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--color-green-dark);
    background: var(--color-agave-soft);
    font-size: 0.92rem;
}

.admin-table a {
    color: var(--color-green-dark);
    font-weight: 700;
}

.message-cell {
    max-width: 260px;
}

.status-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.status-form select {
    min-width: 138px;
}

.status-form button {
    min-height: 40px;
    padding: 8px 12px;
    color: var(--color-green-dark);
    background: var(--color-gold-light);
    border: 1px solid rgba(22, 54, 41, 0.12);
    border-radius: var(--radius-small);
    font-weight: 800;
    cursor: pointer;
}

.empty-state {
    text-align: center;
    color: var(--color-muted);
}

@media (max-width: 1040px) {
    .tour-grid,
    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .why-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: grid;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        display: grid;
        align-content: start;
        gap: 0;
        height: calc(100vh - 76px);
        padding: 20px 24px 40px;
        background: rgba(248, 241, 227, 0.98);
        border-top: 1px solid var(--color-line);
        transform: translateX(100%);
        transition: transform 220ms ease;
        overflow-y: auto;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 14px 0;
    }

    .nav-menu .btn {
        margin-top: 12px;
    }

    .hero-content {
        padding-top: 76px;
    }

    .split-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .video-card video {
        max-height: 620px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1140px);
    }

    .brand {
        font-size: 1rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        min-height: 720px;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }

    .tour-grid,
    .experience-grid,
    .why-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .why-item:last-child {
        grid-column: auto;
    }

    .reservation-form {
        padding: 22px;
    }

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

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-form {
        align-items: stretch;
        flex-direction: column;
    }
}
