:root {
    --bg: #f6f2e8;
    --sand: #efe4cf;
    --ink: #1f2f3a;
    --ink-soft: #4c5c66;
    --deep: #0e5a72;
    --sea: #2e8ca6;
    --foam: #d8edf2;
    --sun: #c76a2f;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 14px 40px rgba(16, 49, 64, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 15%, rgba(46, 140, 166, 0.18), transparent 36%),
        radial-gradient(circle at 93% 3%, rgba(199, 106, 47, 0.14), transparent 32%),
        var(--bg);
    line-height: 1.65;
}

.container { width: min(1140px, 92vw); margin: 0 auto; }

.topline {
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 12px;
    background: var(--ink);
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: color-mix(in srgb, var(--bg) 85%, white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 47, 58, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(14, 90, 114, 0.22);
    background: var(--white);
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo strong { display: block; font-size: 0.98rem; }
.logo small {
    color: var(--ink-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
    background: var(--sun);
}
.main-nav a:hover,
.main-nav a.active { color: var(--ink); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.menu-toggle {
    display: none;
    border: 1px solid rgba(31, 47, 58, 0.18);
    background: var(--white);
    border-radius: 14px;
    padding: 10px;
    color: var(--ink);
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(16, 49, 64, 0.08);
}

.menu-toggle-box {
    width: 20px;
    height: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle-box span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.menu-toggle[data-open='true'] .menu-toggle-box span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[data-open='true'] .menu-toggle-box span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[data-open='true'] .menu-toggle-box span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero { padding: 84px 0 54px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.74rem;
    color: var(--deep);
    font-weight: 800;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.06;
}

.hero-copy {
    max-width: 62ch;
    font-size: 1.04rem;
    color: var(--ink-soft);
    margin: 16px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-note {
    background: linear-gradient(160deg, rgba(14, 90, 114, 0.95), rgba(25, 74, 96, 0.95));
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.hero-note-content { padding: 18px 18px 16px; }
.hero-note h3 { margin: 0 0 12px; font-size: 1.26rem; }
.hero-note ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.hero-note li {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.btn {
    border: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--sun);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(199, 106, 47, 0.3);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(31, 47, 58, 0.22);
}

.section { padding: 26px 0 66px; }
.section-head { margin-bottom: 24px; }
.section h2,
.section-head h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.room-card,
.contact-card,
.gallery-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 47, 58, 0.08);
}

.feature-card h3,
.room-card h3,
.room-card h2 { margin: 0 0 10px; }

.room-meta {
    margin: 0 0 8px;
    color: var(--deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 800;
}

.room-foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.room-foot a {
    color: var(--deep);
    font-weight: 700;
    text-decoration: none;
}

.room-full h2 { font-size: 1.5rem; }

.chip-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip-list li {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--foam);
    font-size: 0.84rem;
    font-weight: 600;
}

.timeline {
    background: linear-gradient(180deg, rgba(216, 237, 242, 0.72), rgba(255, 255, 255, 0.4));
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.timeline-grid article {
    background: var(--white);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(31, 47, 58, 0.08);
}
.timeline-grid span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sun);
    font-weight: 800;
}

.cta-band { padding-bottom: 80px; }
.cta-inner {
    background: linear-gradient(120deg, var(--ink), #2f444f);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-hero { padding: 70px 0 34px; }
.page-hero p { max-width: 66ch; color: var(--ink-soft); }
.restaurant-hero { background: linear-gradient(180deg, rgba(199, 106, 47, 0.13), transparent); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.simple-list li {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(31, 47, 58, 0.1);
}

.soft-panel { background: rgba(239, 228, 207, 0.6); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(14, 90, 114, 0.9), rgba(46, 140, 166, 0.8));
    padding: 0;
}
.gallery-item:nth-child(2n) { background: linear-gradient(140deg, rgba(76, 92, 102, 0.92), rgba(20, 45, 57, 0.82)); }
.gallery-item:nth-child(3n) { background: linear-gradient(130deg, rgba(199, 106, 47, 0.93), rgba(120, 72, 42, 0.82)); }
.gallery-item:nth-child(4n + 1) { grid-row: span 2; }
.gallery-item:nth-child(5n + 2) { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}
.gallery-overlay span { opacity: 0.8; font-weight: 700; }
.gallery-overlay p { margin: 0; font-weight: 700; }

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
}
.contact-card a { color: var(--deep); text-decoration: none; }

.location-cta {
    margin-top: 8px;
    color: var(--white) !important;
}

.location-cta:visited,
.location-cta:hover,
.location-cta:focus,
.contact-card a.location-cta,
.contact-card a.location-cta:visited,
.contact-card a.location-cta:hover,
.contact-card a.location-cta:focus,
.map-card a.location-cta,
.map-card a.location-cta:visited,
.map-card a.location-cta:hover,
.map-card a.location-cta:focus {
    color: var(--white) !important;
}

.location-cta.btn-ghost {
    background: var(--sun);
    border-color: var(--sun);
}

.location-cta.btn-ghost:hover,
.location-cta.btn-primary:hover {
    color: var(--white) !important;
}

.footer-address-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.map-section {
    padding-top: 0;
}

.map-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.map-card-copy {
    display: grid;
    align-content: start;
    gap: 14px;
}

.map-card-copy h2,
.map-card-copy p {
    margin: 0;
}

.map-card-copy p:not(.eyebrow) {
    color: var(--ink-soft);
}

.map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 380px;
    background: var(--foam);
    border: 1px solid rgba(31, 47, 58, 0.08);
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.reservation-form { display: grid; gap: 12px; }
.reservation-form input:not([type='checkbox']),
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid rgba(31, 47, 58, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-alert {
    margin: 0 0 12px;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}
.form-alert.success { background: #e4f4e5; color: #0a5d1c; }
.form-alert.error { background: #fce6e6; color: #8a1d1d; }

.reservation-form label {
    font-weight: 700;
    color: var(--ink);
}

.reservation-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
    font-weight: 500;
}

.reservation-consent input[type='checkbox'] {
    width: auto;
    margin-top: 3px;
}

.reservation-consent a {
    color: var(--deep);
    text-decoration: underline;
}

.site-footer {
    margin-top: 40px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.92);
    padding: 40px 0 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}
.footer-grid h3,
.footer-grid h4 { margin: 0 0 8px; }
.footer-grid p { margin: 0 0 8px; color: rgba(255, 255, 255, 0.84); }
.footer-grid a { color: #9cdef0; text-decoration: none; }

.copyright {
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.mobile-action-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.mobile-action-btn {
    text-decoration: none;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    color: var(--ink);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 228, 207, 0.94));
    border: 1px solid rgba(31, 47, 58, 0.14);
    box-shadow: 0 10px 24px rgba(16, 49, 64, 0.16);
    backdrop-filter: blur(10px);
}

.mobile-action-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
}

.mobile-action-btn span {
    max-width: none;
    white-space: nowrap;
}

.mobile-action-btn.is-directions {
    color: var(--deep);
    border-color: rgba(14, 90, 114, 0.18);
}

.mobile-action-btn.is-call {
    color: var(--sun);
    border-color: rgba(199, 106, 47, 0.2);
}

.mobile-action-btn.is-whatsapp {
    color: #167a57;
    border-color: rgba(22, 122, 87, 0.2);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 1;
    transform: none;
}

.js .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1000px) {
    .hero-grid,
    .split,
    .contact-grid,
    .cards-3,
    .timeline-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 41;
    }

    .main-nav {
        position: absolute;
        z-index: 40;
        left: 0;
        right: 0;
        top: 82px;
        background: var(--white);
        border-bottom: 1px solid rgba(31, 47, 58, 0.1);
        display: grid;
        gap: 0;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .main-nav a {
        padding: 14px 20px 18px;
        border-top: 1px solid rgba(31, 47, 58, 0.08);
    }

    .main-nav a::after {
        left: 20px;
        right: 20px;
        bottom: 7px;
    }

    .main-nav[data-open='true'] {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .hero,
    .page-hero { padding-top: 52px; }

    .hero-grid,
    .cards-3,
    .split,
    .contact-grid,
    .timeline-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(5n + 2) { grid-column: span 1; }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row { grid-template-columns: 1fr; }

    .map-card {
        grid-template-columns: 1fr;
    }

    .map-embed {
        min-height: 320px;
    }

    .site-footer {
        padding-bottom: 72px;
    }

    .mobile-action-btn {
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        font-size: 0.66rem;
    }

    .mobile-action-dock {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
        gap: 8px;
    }

    .mobile-action-btn svg {
        width: 16px;
        height: 16px;
    }
}
/* Page media sections */
.page-media {
    padding-top: 10px;
}

.page-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 47, 58, 0.1);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
}

.media-card-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #fff;
    z-index: 1;
    font-weight: 700;
}

/* Modern photo gallery */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 14px;
}

.photo-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 160px;
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.5));
}

.photo-gallery-item:nth-child(4n + 1) {
    grid-row: span 2;
}

.photo-gallery-item:nth-child(5n + 2) {
    grid-column: span 2;
}

.photo-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    color: #fff;
}

.photo-gallery-overlay span {
    font-weight: 700;
    opacity: 0.9;
}

.photo-gallery-overlay p {
    margin: 0;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .page-media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-media-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .photo-gallery-item {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .photo-gallery-item:nth-child(4n + 1),
    .photo-gallery-item:nth-child(5n + 2) {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Fine tuning for small mobile screens */
@media (max-width: 390px) {
    .container {
        width: min(1140px, 94vw);
    }

    .topline {
        font-size: 0.68rem;
        line-height: 1.35;
        padding: 8px 10px;
    }

    .header-inner {
        min-height: 74px;
        gap: 10px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }

    .logo strong {
        font-size: 0.9rem;
    }

    .logo small {
        font-size: 0.66rem;
    }

    .main-nav {
        top: 74px;
    }

    .hero,
    .page-hero {
        padding-top: 40px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.7rem, 9vw, 2.3rem);
        line-height: 1.08;
    }

    .hero-copy {
        font-size: 0.95rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 11px 16px;
    }

    .hero-photo img {
        height: 190px;
    }

    .feature-card,
    .room-card,
    .contact-card {
        padding: 16px;
    }

    .cards-3,
    .timeline-grid,
    .photo-gallery-grid,
    .gallery-grid {
        gap: 10px;
    }

    .timeline-grid article {
        padding: 12px;
    }

    .photo-gallery-grid {
        grid-auto-rows: auto;
    }

    .photo-gallery-item:nth-child(4n + 1),
    .gallery-item:nth-child(4n + 1) {
        grid-row: span 1;
    }

    .reservation-form input:not([type='checkbox']),
    .reservation-form select,
    .reservation-form textarea,
    .reservation-form button {
        font-size: 16px;
    }

    .footer-grid {
        gap: 14px;
    }

    .mobile-action-btn {
        height: 40px;
        padding: 0 10px;
        font-size: 0.62rem;
    }
}

@media (max-width: 360px) {
    .topline {
        font-size: 0.64rem;
    }

    .logo strong {
        font-size: 0.84rem;
    }

    .logo small {
        display: none;
    }

    .eyebrow {
        font-size: 0.66rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.62rem;
    }

    .hero-copy {
        font-size: 0.9rem;
    }

    .main-nav a {
        padding: 12px 16px;
    }

    .photo-gallery-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-item,
    .gallery-item {
        min-height: 150px;
    }

    .btn {
        font-size: 0.92rem;
    }
}

/* iPhone SE (375x667) special tuning */
@media (max-width: 375px) and (max-height: 667px) {
    .hero,
    .page-hero {
        padding-top: 34px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.56rem;
        line-height: 1.12;
    }

    .hero-copy,
    .page-hero p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .hero-photo img {
        height: 170px;
    }

    .hero-note-content {
        padding: 14px 14px 12px;
    }

    .hero-note li {
        padding: 8px 10px;
        font-size: 0.84rem;
    }

    .section {
        padding: 18px 0 44px;
    }

    .feature-card,
    .room-card,
    .contact-card,
    .timeline-grid article {
        padding: 14px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .cta-inner {
        padding: 16px;
    }

    .footer-grid {
        gap: 10px;
    }

    .copyright {
        font-size: 0.78rem;
    }
}

/* Contact Form 7 theme integration */
.cf7-wrap .wpcf7 form {
    display: grid;
    gap: 12px;
}

.cf7-wrap .wpcf7 p {
    margin: 0;
}

.cf7-wrap .wpcf7 input[type='text'],
.cf7-wrap .wpcf7 input[type='email'],
.cf7-wrap .wpcf7 input[type='tel'],
.cf7-wrap .wpcf7 input[type='date'],
.cf7-wrap .wpcf7 textarea,
.cf7-wrap .wpcf7 select {
    width: 100%;
    border: 1px solid rgba(31, 47, 58, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
    color: var(--ink);
}

.cf7-wrap .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.cf7-wrap .wpcf7 input[type='submit'],
.cf7-wrap .wpcf7 button,
.cf7-wrap .wpcf7 .wpcf7-submit {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    background: var(--sun);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(199, 106, 47, 0.3);
}

.cf7-wrap .wpcf7 .wpcf7-spinner {
    margin: 8px 0 0;
}

.cf7-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 0.85rem;
}

.cf7-wrap .wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}

/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    background: rgba(31, 47, 58, 0.96);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-inner p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.cookie-consent-inner a {
    color: #9cdef0;
    font-weight: 700;
    text-decoration: none;
}

.cookie-consent-inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .cookie-consent-banner {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-inner .btn {
        width: 100%;
    }
}
