:root {
    --bg: #f5f5f7;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #ffffff;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --line: rgba(0, 0, 0, 0.08);
    --accent: #2e6417;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
    --radius-xl: 34px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(46, 100, 23, 0.10), transparent 34%),
        var(--bg);
    color: var(--text);
    font-family: 'MuseoModerno', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), transparent 280px);
    z-index: -1;
}

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

picture {
    display: block;
}

.service-card picture,
.gallery-image-button picture {
    width: 100%;
}

.about-left picture {
    width: 100%;
    height: 100%;
}

.about-left-felix picture {
    height: auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: rgba(245, 245, 247, 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.logo {
    color: var(--text);
    text-decoration: none;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.logo:hover {
    opacity: 0.72;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.82;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-logo {
    display: block;
    height: 21px;
    width: auto;
}

main {
    width: min(100% - 32px, 1440px);
    margin: 0 auto;
}

.hero-section,
.hero-section_2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 28px);
    min-height: 720px;
    padding: clamp(18px, 3vw, 38px) 0;
}

.box {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.left-box {
    background-image: url('optimized/cof-cart.jpg');
    background-image: image-set(
        url('optimized/cof-cart.webp') type('image/webp'),
        url('optimized/cof-cart.jpg') type('image/jpeg')
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.right-box,
.left-box_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: clamp(42px, 7vw, 96px);
    background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(239,239,241,0.72));
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.right-box h1,
.left-box_2 h2,
.testimonials h2,
.about-right h1,
.about-right h2,
.faq-section h1,
.faq-section h2 {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.right-box h1 {
    max-width: 720px;
    font-size: clamp(3.5rem, 7vw, 7.8rem);
}

.hero-copy {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.45rem);
    line-height: 1.5;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.button,
.but_dis,
.but_book_event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover,
.but_dis:hover,
.but_book_event:hover {
    transform: translateY(-2px);
}

.button-dark,
.but_dis {
    background: var(--text);
    color: white;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.button-light,
.but_book_event {
    background: rgba(255, 255, 255, 0.68);
    color: var(--text);
    border-color: var(--line);
}

.team-section {
    min-height: 560px;
}

.left-box_2 h2 {
    font-size: clamp(3rem, 5.5vw, 6.2rem);
}

.team-list {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.team-list a {
    margin: 0;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.team-list a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.right-box_2 {
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.05)),
        url('optimized/quad-team.jpg');
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.05)),
        image-set(
            url('optimized/quad-team.webp') type('image/webp'),
            url('optimized/quad-team.jpg') type('image/jpeg')
        );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-services {
    padding: clamp(76px, 8vw, 128px) 0;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text);
    font-size: clamp(2.7rem, 5.4vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

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

.service-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.10);
}

.service-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card:nth-child(1) img {
    object-position: center 58%;
}

.service-card:nth-child(2) img {
    object-position: center 62%;
}

.service-card:nth-child(3) img {
    object-position: center 48%;
}

.service-card:nth-child(4) img {
    object-position: center 58%;
}

.service-card-content {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    gap: 16px;
    padding: 26px;
}

.service-card h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.service-link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-link:hover {
    color: var(--text);
}

.events-section {
    padding: clamp(76px, 8vw, 128px) 0;
}

.events-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: stretch;
}

.calendar-card,
.event-list {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.calendar-card {
    padding: clamp(22px, 3vw, 34px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.calendar-header div {
    text-align: center;
}

.calendar-header p {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.calendar-header span {
    color: var(--muted);
    font-weight: 700;
}

.calendar-nav-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 1.45rem;
    font-weight: 700;
    transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.calendar-nav-button:hover:not(:disabled) {
    background: var(--text);
    color: white;
}

.calendar-nav-button:disabled {
    cursor: not-allowed;
    opacity: 0.34;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-grid > span:not(.calendar-day) {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.calendar-day {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--text);
    font-weight: 700;
}

.calendar-day.is-muted {
    color: rgba(110, 110, 115, 0.38);
}

.calendar-day.has-event {
    position: relative;
    background: var(--text);
    color: white;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.calendar-day.has-event::after {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
}

.event-card {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
}

.event-card time {
    display: grid;
    place-items: center;
    min-height: 58px;
    border-radius: 16px;
    background: rgba(46, 100, 23, 0.10);
    color: var(--accent);
    font-weight: 700;
}

.event-card h3 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    letter-spacing: -0.04em;
}

.event-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.event-button {
    align-self: flex-start;
    margin-top: auto;
}

.services-page {
    padding: clamp(64px, 8vw, 112px) 0 24px;
}

.services-page-hero {
    max-width: 920px;
    margin: 0 auto clamp(58px, 7vw, 92px);
    text-align: center;
}

.services-page-hero h1 {
    margin: 12px auto 20px;
    color: var(--text);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.services-page-hero p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.55;
}

.package-section,
.service-details-section,
.quote-section {
    padding: clamp(58px, 7vw, 92px) 0;
}

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

.package-card,
.service-detail-card,
.quote-section {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.package-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 28px;
}

.package-number {
    margin: 0 0 22px;
    color: var(--accent);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.package-card ul,
.service-detail-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.55;
}

.package-card li::marker,
.service-detail-card li::marker {
    color: var(--accent);
}

.service-details-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-detail-card {
    padding: 32px;
}

.service-detail-card h2,
.quote-copy h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.service-detail-card p,
.quote-copy p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.65;
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
    padding: clamp(28px, 5vw, 54px);
}

.quote-copy {
    position: sticky;
    top: 104px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: rgba(46, 100, 23, 0.42);
    box-shadow: 0 0 0 4px rgba(46, 100, 23, 0.10);
    outline: none;
}

.quote-options {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.50);
}

.quote-options legend {
    padding: 0 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.quote-options label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
}

.quote-options input {
    width: auto;
}

.quote-form button {
    align-self: flex-start;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
}

.quote-form button:hover {
    background: transparent;
    color: var(--text);
}

.testimonials {
    padding: clamp(78px, 8vw, 132px) 0;
    text-align: center;
}

.testimonials h2 {
    margin: 12px auto 42px;
    max-width: 820px;
    font-size: clamp(2.6rem, 5vw, 5.6rem);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    padding: 28px;
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.80);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.10);
}

.testimonial-card p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
}

.testimonial-card h4 {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer {
    margin: clamp(32px, 5vw, 72px) auto 0;
    padding: 54px clamp(20px, 5vw, 72px) 24px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-left h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.footer-left p {
    margin: 0;
    color: var(--muted);
}

.footer-links a,
.footer-social a {
    display: block;
    color: var(--text);
    text-decoration: none;
    margin: 7px 0;
    opacity: 0.74;
    transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-links a[href*="instagram"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a[href*="instagram"]::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: currentColor;
    -webkit-mask: url("insta-logo.svg") center / contain no-repeat;
    mask: url("insta-logo.svg") center / contain no-repeat;
}

.footer-links a[href*="instagram"]:hover {
    transform: translateX(2px);
}

.footer-bottom {
    max-width: 1440px;
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-img {
    display: block;
    height: 64px;
    width: auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-img:hover {
    transform: scale(1.04);
}

.gallery-page {
    padding: clamp(64px, 8vw, 112px) 0 24px;
}

.gallery-hero {
    max-width: 900px;
    margin: 0 auto clamp(48px, 6vw, 76px);
    text-align: center;
}

.gallery-hero h1 {
    margin: 12px auto 18px;
    color: var(--text);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.gallery-hero p:last-child {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.55;
}

.gallery-section {
    padding: 0 0 clamp(58px, 7vw, 92px);
}

.gallery-container {
    columns: 3 280px;
    column-gap: 18px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    background: transparent;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    break-inside: avoid;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.10);
}

.gallery-image-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    line-height: 0;
}

.gallery-image-button:focus-visible {
    outline: 4px solid rgba(46, 100, 23, 0.28);
    outline-offset: -4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.32s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 52px);
    background: rgba(245, 245, 247, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox img {
    max-width: min(100%, 1180px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: var(--shadow);
    animation: galleryPop 0.22s ease-out;
}

.gallery-lightbox-close {
    position: fixed;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--text);
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

.has-open-lightbox {
    overflow: hidden;
}

@keyframes galleryPop {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-section {
    padding: 70px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 28px;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-left-felix {
    display: block;
    aspect-ratio: auto;
    background: transparent;
}

.about-left img[src="optimized/felix.jpg"] {
    height: auto;
    object-fit: initial;
}

.about-left img[src="optimized/heidi.jpg"] {
    object-position: 68% center;
}

.about-left img[src="optimized/vivian.jpg"] {
    object-position: center 28%;
}

.about-right h1,
.about-right h2 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    margin-bottom: 20px;
}

.about-right p {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.about-container.reverse {
    flex-direction: row-reverse;
}

.faq-section {
    max-width: 920px;
    margin: 0 auto;
    padding: 88px 20px;
}

.faq-section > .eyebrow {
    text-align: center;
}

.faq-section h1,
.faq-section h2 {
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 5rem);
    margin-bottom: 44px;
}

.faq details {
    margin-bottom: 14px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.faq summary {
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 34px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.6rem;
    transition: 0.3s;
}

.faq details[open] summary::after {
    content: "−";
}

.faq p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

details[open] p {
    animation: fadeIn 0.3s ease-in;
}

.menu-page {
    padding: clamp(64px, 8vw, 112px) 0 24px;
}

.menu-page-hero {
    max-width: 920px;
    margin: 0 auto clamp(58px, 7vw, 92px);
    text-align: center;
}

.menu-page-hero h1 {
    margin: 12px auto 20px;
    color: var(--text);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.menu-page-hero p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.55;
}

.menu-card-section,
.quadrant-menu-section {
    padding: clamp(58px, 7vw, 92px) 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.menu-card {
    min-width: 0;
    padding: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.menu-card-featured {
    grid-column: span 3;
    grid-row: span 2;
}

.menu-card:not(.menu-card-featured) {
    grid-column: span 3;
}

.menu-card h3 {
    margin: 0 0 22px;
    color: var(--accent);
    font-size: clamp(1.45rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.menu-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-card li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    color: var(--text);
    line-height: 1.45;
}

.menu-card li span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.quadrant-map {
    position: relative;
    display: grid;
    min-height: 720px;
    padding: clamp(48px, 6vw, 82px);
    overflow: hidden;
    background:
        linear-gradient(rgba(46, 100, 23, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 100, 23, 0.18) 1px, transparent 1px),
        rgba(255, 255, 255, 0.74);
    background-size: 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.quadrant-map::before,
.quadrant-map::after {
    content: "";
    position: absolute;
    background: var(--accent);
    opacity: 0.82;
}

.quadrant-map::before {
    left: 50%;
    top: 12%;
    bottom: 12%;
    width: 4px;
    transform: translateX(-50%);
}

.quadrant-map::after {
    top: 54%;
    left: 8%;
    right: 8%;
    height: 4px;
    transform: translateY(-50%);
}

.axis-label {
    position: absolute;
    z-index: 1;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.axis-top {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.6rem, 4vw, 3rem);
}

.axis-bottom {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.6rem, 4vw, 3rem);
}

.axis-left {
    left: 28px;
    top: 51%;
    transform: translateY(-50%);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
}

.axis-right {
    right: 28px;
    top: 51%;
    transform: translateY(-50%);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
}

.quadrant-drink {
    position: absolute;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    max-width: 190px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.quadrant-drink img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.quadrant-drink span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.quadrant-drink h3 {
    margin: 0;
    color: var(--accent);
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.quadrant-drink-heidi {
    top: 14%;
    left: 10%;
}

.quadrant-drink-nina {
    top: 28%;
    left: 38%;
}

.quadrant-drink-ginger {
    top: 17%;
    right: 13%;
}

.quadrant-drink-vivian {
    left: 37%;
    bottom: 17%;
}

.quadrant-drink-orange-tonic {
    left: 13%;
    bottom: 29%;
}

.quadrant-drink-felix {
    right: 13%;
    bottom: 18%;
}

@media (max-width: 1040px) {
    .navbar {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .hero-section,
    .hero-section_2 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .events-panel {
        grid-template-columns: 1fr;
    }

    .left-box,
    .right-box_2 {
        min-height: 520px;
    }

    .testimonial-container,
    .service-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .menu-card-featured,
    .menu-card:not(.menu-card-featured) {
        grid-column: auto;
        grid-row: auto;
    }

    .quote-section {
        grid-template-columns: 1fr;
    }

    .quote-copy {
        position: static;
    }

    .gallery-container {
        columns: 2;
    }

    .service-card-content {
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 800px) {
    main {
        width: min(100% - 22px, 1440px);
    }

    .right-box h1 {
        font-size: clamp(3rem, 14vw, 5.2rem);
    }

    .left-box,
    .right-box_2 {
        min-height: 430px;
    }

    .testimonial-container,
    .service-grid,
    .package-grid,
    .service-details-section,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-featured {
        grid-column: auto;
    }

    .quadrant-map {
        min-height: 860px;
    }

    .axis-left,
    .axis-right {
        top: 50%;
        writing-mode: vertical-rl;
    }

    .about-container,
    .about-container.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .about-left img {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 18px;
    }

    .nav-links {
        gap: 12px 16px;
    }

    .nav-links a {
        font-size: 0.84rem;
    }

    .box {
        border-radius: 24px;
    }

    .right-box,
    .left-box_2 {
        padding: 42px 22px;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
    }

    .button,
    .but_dis,
    .but_book_event {
        width: 100%;
    }

    .service-card-content {
        min-height: auto;
        padding: 24px;
    }

    .package-card,
    .service-detail-card,
    .quote-section,
    .menu-card {
        padding: 24px;
    }

    .quadrant-map {
        min-height: auto;
        padding: 28px;
        background:
            linear-gradient(rgba(46, 100, 23, 0.14) 1px, transparent 1px),
            linear-gradient(90deg, rgba(46, 100, 23, 0.14) 1px, transparent 1px),
            rgba(255, 255, 255, 0.74);
        background-size: 28px 28px;
    }

    .quadrant-map::before,
    .quadrant-map::after,
    .axis-label {
        display: none;
    }

    .quadrant-drink {
        position: static;
        max-width: none;
        margin-bottom: 14px;
    }

    .quadrant-drink:last-child {
        margin-bottom: 0;
    }

    .quote-form button {
        width: 100%;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-day {
        min-height: 38px;
        border-radius: 12px;
        font-size: 0.86rem;
    }

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

    .event-card time {
        width: fit-content;
        min-height: 0;
        padding: 10px 14px;
    }

    .gallery-container {
        columns: 1;
    }
}
.contact-page {
    padding-top: clamp(84px, 10vw, 140px);
    padding-bottom: 100px;
    color: var(--text);
}

.contact-hero {
    text-align: center;
    margin-bottom: 72px;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.96;
    margin-bottom: 20px;
}

.hero-subtext {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.contact-tabs {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.contact-tab {
    min-height: 42px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.72;
    transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.contact-tab:hover,
.contact-tab.is-active {
    background: var(--text);
    color: white;
    opacity: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.contact-form-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.contact-form-section[hidden] {
    display: none;
}

.form-heading {
    text-align: center;
    margin-bottom: 34px;
}

.form-heading h2 {
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: -0.04em;
}

.form-heading p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(46, 100, 23, 0.42);
    box-shadow: 0 0 0 4px rgba(46, 100, 23, 0.10);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: center;
    margin-top: 10px;
    padding: 15px 42px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: inherit;
    font-weight: 700;
}

.contact-form button:hover {
    background: transparent;
    color: var(--text);
}

@media (max-width: 768px) {

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

    .contact-tabs {
        width: 100%;
        border-radius: 24px;
    }

    .contact-tab {
        flex: 1;
    }

    .contact-hero {
        margin-bottom: 70px;
    }

    .contact-form-section {
        padding: 24px;
    }

}
@media (max-width: 768px) {
    .menu-page {
        padding-top: 52px;
    }

    .menu-page-hero h1 {
        font-size: clamp(2.65rem, 12vw, 4.2rem);
        line-height: 1;
    }

    .menu-page-hero p:last-child,
    .menu-card li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .menu-card h3 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
        line-height: 1.05;
    }

    .menu-card li {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .menu-card li span {
        font-size: 0.88rem;
    }

    .quadrant-menu-section {
        padding: 52px 0 72px;
        overflow: visible;
    }

    .quadrant-menu-section .section-heading h2 {
        font-size: clamp(2.25rem, 10vw, 3.7rem);
        line-height: 1;
    }

    .quadrant-map {
        width: 100%;
        max-width: 100%;
        min-height: clamp(500px, 132vw, 650px);
        display: block;
        padding: 34px 14px;
        overflow: hidden;
        background:
            linear-gradient(rgba(46, 100, 23, 0.14) 1px, transparent 1px),
            linear-gradient(90deg, rgba(46, 100, 23, 0.14) 1px, transparent 1px),
            rgba(255, 255, 255, 0.74);
        background-size: 24px 24px;
    }

    .quadrant-map::before,
    .quadrant-map::after {
        display: block;
    }

    .quadrant-map::before {
        top: 14%;
        bottom: 14%;
        width: 3px;
    }

    .quadrant-map::after {
        top: 54%;
        left: 9%;
        right: 9%;
        height: 3px;
    }

    .axis-label {
        position: absolute;
        z-index: 1;
        display: block;
        padding: 5px 7px;
        border-radius: 10px;
        text-align: center;
        font-size: clamp(0.72rem, 3.4vw, 1rem);
        line-height: 1.05;
        transform: none;
        writing-mode: horizontal-tb;
    }

    .axis-top,
    .axis-bottom {
        left: 50%;
        transform: translateX(-50%);
    }

    .axis-top {
        top: 14px;
    }

    .axis-bottom {
        bottom: 14px;
    }

    .axis-left {
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .axis-right {
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .quadrant-drink {
        position: absolute;
        z-index: 1;
        width: auto;
        max-width: clamp(88px, 26vw, 122px);
        margin: 0;
        padding: 9px;
        gap: 5px;
        border-radius: 16px;
    }

    .quadrant-drink img {
        width: clamp(42px, 13vw, 58px);
        height: clamp(42px, 13vw, 58px);
        max-height: none;
        object-fit: cover;
    }

    .quadrant-drink span {
        font-size: 0.68rem;
    }

    .quadrant-drink h3 {
        font-size: clamp(0.72rem, 2.9vw, 0.92rem);
        line-height: 1.08;
    }

    .quadrant-drink-heidi {
        top: 15%;
        left: 8%;
    }

    .quadrant-drink-nina {
        top: 27%;
        left: 36%;
    }

    .quadrant-drink-ginger {
        top: 17%;
        right: 8%;
    }

    .quadrant-drink-vivian {
        left: 36%;
        bottom: 17%;
    }

    .quadrant-drink-orange-tonic {
        left: 9%;
        bottom: 29%;
    }

    .quadrant-drink-felix {
        right: 8%;
        bottom: 18%;
    }
}
