:root {
  --ink: #22271e; --ink-soft: #596052; --paper: #fafaf8; --white: #fff;
  --green: #83bd18; --green-dark: #63950a; --lime-soft: #edf5dc;
  --charcoal: #29312b; --line: #dfe3da; --radius: 1rem;
  --background: var(--paper); --foreground: var(--ink); --card: var(--white);
  --card-foreground: var(--ink); --popover: var(--white); --popover-foreground: var(--ink);
  --primary: var(--green-dark); --primary-foreground: #fff; --secondary: var(--lime-soft);
  --secondary-foreground: var(--ink); --muted: #eef0eb; --muted-foreground: var(--ink-soft);
  --accent: var(--lime-soft); --accent-foreground: var(--ink); --destructive: #b42318;
  --border: var(--line); --input: var(--line); --ring: var(--green);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Trebuchet MS", "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
button { color: inherit; cursor: pointer; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: white; background: var(--charcoal); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgb(34 39 30 / 10%); background: rgb(250 250 248 / 94%); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { object-fit: contain; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 1.35rem; letter-spacing: -.03em; }
.brand small { color: var(--ink-soft); font-size: .7rem; margin-top: 5px; }
.desktop-nav { display: flex; align-items: center; gap: 23px; font-size: .92rem; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-book { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; color: #172008; background: var(--green); border-radius: 10px; font-size: .9rem; font-weight: 800; white-space: nowrap; }
.header-book:hover { background: #95d520; }
.header-book svg { width: 18px; height: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; color: white; background: var(--charcoal); border-radius: 10px; font-weight: 700; }
.header-phone svg, .button svg, .text-link svg { width: 18px; height: 18px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: 54px; width: min(300px, calc(100vw - 32px)); display: grid; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 50px rgb(28 36 24 / 18%); }
.mobile-menu nav a { padding: 10px 12px; font-weight: 700; border-radius: 8px; }
.mobile-menu nav a:hover { background: var(--lime-soft); }
.mobile-menu nav .mobile-booking { color: #172008; background: var(--green); }

.hero { padding: clamp(54px, 8vw, 110px) 0 70px; overflow: hidden; background: radial-gradient(circle at 85% 20%, #e6f2cc 0, transparent 35%), var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--green-dark); font-size: .79rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(3.4rem, 6.3vw, 6.3rem); font-weight: 500; }
h2 { margin: 0; font-size: clamp(2.35rem, 4vw, 4rem); font-weight: 500; }
h3 { margin: 0; font-size: 1.55rem; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid transparent; border-radius: 10px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #172008; }
.button-primary:hover { background: #95d520; }
.button-dark { background: var(--charcoal); color: white; }
.button-dark:hover { background: #3a453d; }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: white; }
.quick-info { display: grid; grid-template-columns: 1.25fr .85fr .85fr 1.15fr; gap: 16px; margin: 40px 0 0; padding-top: 25px; border-top: 1px solid var(--line); }
.quick-info > div { display: flex; gap: 10px; align-items: flex-start; }
.quick-info svg { width: 18px; margin-top: 3px; color: var(--green-dark); }
.quick-info span { display: grid; }
.quick-symbol { display: grid !important; place-items: center; width: 19px; min-width: 19px; height: 19px; margin-top: 3px; color: var(--green-dark); font-weight: 900; line-height: 1; }
.quick-info dt { color: var(--ink-soft); font-size: .76rem; }
.quick-info dd { margin: 1px 0 0; font-size: .86rem; font-weight: 800; }
.hero-visual { position: relative; min-width: 0; }
.hero-photo-wrap { position: relative; aspect-ratio: .88; border-radius: 46% 46% 18px 18px; overflow: hidden; box-shadow: 20px 24px 0 var(--lime-soft); }
.hero-photo-wrap > img, .about-image > img, .team-card-photo > img, .post-image > img, .article-cover > img, .gallery-grid img { width: 100%; height: 100%; display: block; }
.hero-photo { object-position: center 20%; }
.hero-note { position: absolute; left: -42px; bottom: 34px; display: grid; min-width: 210px; padding: 16px 20px; background: white; border-radius: 12px; box-shadow: 0 18px 50px rgb(35 45 29 / 18%); font-size: .89rem; }
.hero-note span { color: var(--green-dark); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.section { padding: clamp(76px, 9vw, 125px) 0; }
.section-soft { background: #f0f3ec; }
.section-dark { background: var(--charcoal); color: white; }
.section-heading { margin-bottom: 42px; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.split-heading > p { max-width: 430px; margin: 0 0 4px; color: var(--ink-soft); font-size: 1.05rem; }
.split-heading.compact { align-items: center; }
.section-dark .split-heading > p { color: #cbd1c7; }
.eyebrow-light { color: #aee14e; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { display: flex; min-height: 260px; padding: 34px; flex-direction: column; color: inherit; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.service-card.featured { background: var(--lime-soft); }
.service-card-link { transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-card-link:hover { position: relative; z-index: 1; background: var(--lime-soft); box-shadow: 0 16px 35px rgba(36, 54, 29, .12); transform: translateY(-3px); }
.service-card-link:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--green); outline-offset: -3px; }
.service-article-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; color: var(--green-dark); font-weight: 800; }
.service-article-link svg { width: 17px; transition: transform .2s ease; }
.service-card-link:hover .service-article-link svg { transform: translateX(4px); }
.service-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 32px; color: var(--green-dark); border: 1px solid #c9d6b3; border-radius: 50%; font-size: .72rem; font-weight: 900; letter-spacing: -.02em; }
.service-icon svg { width: 21px; }
.service-card p { color: var(--ink-soft); margin: 14px 0 0; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px, 9vw, 120px); }
.large-copy { margin: 28px 0; color: #d0d6cc; font-size: 1.12rem; }
.large-copy.dark-copy { color: var(--ink-soft); }
.check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #aee14e; font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.text-link.light { color: #b3e558; }
.about-image { position: relative; min-height: 610px; border-radius: 18px; overflow: hidden; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { position: relative; min-height: 430px; overflow: hidden; border-radius: 14px; }
.team-card-photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgb(17 22 18 / 92%)); }
.team-card-photo > img { object-position: center; }
.team-photo-monika { object-position: center 42% !important; }
.team-photo-beata { object-position: center 38% !important; }
.team-card-photo > div { position: absolute; z-index: 2; right: 24px; left: 28px; bottom: 28px; color: white; }
.team-card-photo p, .team-card-copy .role { margin: 0 0 10px; color: #b9e765; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.team-card-photo h3 { margin-bottom: 8px; }
.team-description { display: -webkit-box; overflow: hidden; color: #e1e6de; font-size: .88rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.team-card-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; background: var(--lime-soft); }
.team-card-copy:nth-child(3) { background: #e8ece5; }
.team-card-copy > span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: auto; color: var(--green-dark); border: 1px solid #b6c69b; border-radius: 50%; font-family: Georgia, serif; font-size: 1.15rem; }
.team-card-copy > p:last-child { color: var(--ink-soft); margin-bottom: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; }
.post-image { position: relative; aspect-ratio: 1.55; overflow: hidden; }
.post-image img { transition: transform .35s; }
.post-card:hover .post-image img { transform: scale(1.035); }
.post-image-placeholder { display: grid; place-items: center; color: var(--green-dark); background: linear-gradient(135deg, #eaf3d7, #dce8c7); }
.post-image-placeholder svg { width: 48px; height: 48px; }
.post-content { padding: 25px; }
.post-content time { color: var(--green-dark); font-size: .78rem; font-weight: 800; }
.post-content h3 { margin-top: 9px; }
.post-content > p { color: var(--ink-soft); }
.news-empty { display: flex; align-items: center; gap: 20px; padding: 32px; background: white; border: 1px dashed #bdc7b4; border-radius: 14px; }
.news-empty > svg { width: 40px; height: 40px; color: var(--green-dark); }
.news-empty h3, .news-empty p { margin: 0; }
.news-empty p { color: var(--ink-soft); margin-top: 5px; }
.gallery-empty { color: white; background: rgba(255, 255, 255, .06); border-color: #5a6258; }
.gallery-empty > svg { color: #b5e75d; }
.gallery-empty p { color: #c6cdc3; }
.gallery-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: repeat(2, 210px); gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; border-radius: 12px; overflow: hidden; }
.gallery-main { grid-row: 1 / 3; }
.gallery-grid img { transition: transform .35s; }
.gallery-grid figure:hover img, .gallery-zoom:hover img { transform: scale(1.03); }
.gallery-zoom { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; cursor: zoom-in; }
.gallery-zoom > span { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; color: white; border-radius: 7px; background: rgb(24 31 26 / 78%); font-size: .75rem; font-weight: 800; opacity: 0; transform: translateY(5px); transition: opacity .2s, transform .2s; }
.gallery-zoom:hover > span, .gallery-zoom:focus-visible > span { opacity: 1; transform: translateY(0); }
.gallery-zoom:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: clamp(50px, 8vw, 100px); }
.contact-phone { display: inline-flex; align-items: center; gap: 14px; margin: 10px 0 26px; font-family: Georgia, serif; font-size: 1.8rem; }
.contact-phone > svg { width: 24px; color: var(--green-dark); }
.contact-phone span { display: grid; }
.contact-phone small { color: var(--ink-soft); font-family: "Trebuchet MS", sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 18px; margin-bottom: 26px; font-size: .88rem; }
.map-wrap { min-height: 520px; overflow: hidden; border-radius: 16px; box-shadow: 14px 14px 0 var(--lime-soft); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3); }
.map-consent { min-height: 520px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 35px; text-align: center; background: #e9ede5; }
.map-consent-icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--green-dark); border: 1px solid #b6c69b; border-radius: 50%; font-size: 1.6rem; }
.map-consent p { max-width: 430px; margin: 0 0 5px; color: var(--ink-soft); }
.map-consent .text-link { margin-top: 4px; }
.site-footer { padding: 70px 0 24px; color: #d4dad0; background: #1d231f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand { color: white; }
.footer-brand small { color: #aeb5aa; }
.footer-grid > div > p { color: #aeb5aa; }
.footer-grid h2 { margin: 0 0 14px; color: white; font-family: "Trebuchet MS", sans-serif; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a:not(.brand) { margin: 3px 0; }
.footer-grid a:hover { color: #b4e85a; }
.socials { display: flex; gap: 14px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgb(255 255 255 / 12%); color: #8f9890; font-size: .78rem; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-legal button { padding: 0; color: inherit; border: 0; background: transparent; }
.footer-legal a:hover, .footer-legal button:hover { color: #b4e85a; }

.cookie-banner[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 200; right: 22px; bottom: 22px; left: 22px; width: min(1050px, calc(100% - 44px)); display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-inline: auto; padding: 22px 24px; border: 1px solid #cfd8c3; border-radius: 14px; background: white; box-shadow: 0 20px 70px rgb(21 29 18 / 24%); }
.cookie-banner-copy { max-width: 720px; }
.cookie-banner-copy strong { font-family: Georgia, serif; font-size: 1.25rem; }
.cookie-banner-copy p { margin: 5px 0 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.cookie-banner-copy a { color: var(--green-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; flex-shrink: 0; gap: 10px; }

.privacy-content { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.privacy-content h2 { margin: 1.5em 0 .45em; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.privacy-content h3 { margin: 1.4em 0 .4em; }
.privacy-content p, .privacy-content li { color: var(--ink-soft); }
.privacy-content table { width: 100%; border-collapse: collapse; margin: 25px 0; background: white; }
.privacy-content th, .privacy-content td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-content th { background: var(--lime-soft); }

.subpage-hero { padding: 72px 0 56px; background: var(--lime-soft); }
.subpage-hero p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.content-list { min-height: 380px; }
.article-shell { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.article-head { padding: 70px 0 40px; }
.article-head time { color: var(--green-dark); font-weight: 800; }
.article-head h1 { margin-top: 14px; font-size: clamp(2.7rem, 6vw, 5.3rem); }
.article-lead { color: var(--ink-soft); font-size: 1.2rem; }
.article-cover { position: relative; width: min(1080px, calc(100% - 40px)); aspect-ratio: 1.9; margin: 0 auto 50px; border-radius: 18px; overflow: hidden; }
.article-body { padding-bottom: 100px; font-family: Georgia, serif; font-size: 1.16rem; line-height: 1.85; }
.article-body p { margin: 0 0 1.35em; }
.back-link { margin-top: 22px; }
.gallery-page-grid { columns: 3; column-gap: 16px; }
.gallery-page-grid figure { position: relative; break-inside: avoid; margin: 0 0 16px; overflow: hidden; border-radius: 12px; background: #eef0ea; }
.gallery-page-grid img { width: 100%; height: auto; display: block; }
.gallery-page-grid figcaption { padding: 10px 14px; background: white; font-size: .84rem; font-weight: 700; }

body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox { position: fixed; z-index: 500; inset: 0; display: grid; grid-template-columns: minmax(52px, 1fr) minmax(0, 1200px) minmax(52px, 1fr); align-items: center; padding: 70px 16px 24px; background: rgb(8 12 9 / 94%); }
.gallery-lightbox figure { min-width: 0; max-height: calc(100vh - 100px); display: grid; justify-items: center; margin: 0; }
.gallery-lightbox img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 145px); display: block; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 70px rgb(0 0 0 / 45%); }
.gallery-lightbox figcaption { min-height: 28px; padding-top: 12px; color: white; text-align: center; }
.gallery-lightbox-close, .gallery-lightbox-nav { display: grid; place-items: center; color: white; border: 1px solid rgb(255 255 255 / 30%); background: rgb(255 255 255 / 10%); transition: background .2s; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { background: rgb(255 255 255 / 22%); }
.gallery-lightbox-close { position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.gallery-lightbox-nav { width: 48px; height: 62px; margin-inline: auto; border-radius: 10px; font-size: 2.4rem; }

.admin-page { min-height: 100vh; padding-bottom: 80px; background: #eef1eb; }
.admin-header { color: white; background: var(--charcoal); }
.admin-header > div { width: min(1040px, calc(100% - 40px)); margin: auto; padding: 45px 0; }
.admin-header h1 { margin-top: 16px; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.admin-header p { margin: 8px 0 0; color: #c6cdc3; }
.admin-back { display: inline-flex; align-items: center; gap: 8px; color: #b5e75d; font-weight: 800; }
.admin-back svg { width: 17px; }
.admin-shell { width: min(1040px, calc(100% - 40px)); margin: 28px auto; }
.admin-tabs { height: auto !important; flex-wrap: wrap; padding: 5px !important; margin-bottom: 22px; background: white !important; border: 1px solid var(--line); }
.admin-tabs button { min-height: 44px; padding-inline: 18px; }
.admin-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.admin-card h2, .admin-list h2 { font-size: 1.9rem; }
.admin-card p { color: var(--ink-soft); }
.admin-form { display: grid; gap: 19px; }
.field-stack { display: grid; gap: 7px; }
.field-stack label { font-weight: 800; }
.field-stack small { color: var(--ink-soft); }
.admin-form label { display: grid; gap: 7px; font-weight: 800; }
.admin-form label small { color: var(--ink-soft); font-weight: 400; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; padding: 11px 12px; border: 1px solid #cbd1c6; border-radius: 9px; background: #fafbf9; font-size: 1rem; }
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { outline: 3px solid rgb(131 189 24 / 23%); border-color: var(--green-dark); }
.admin-select { width: 100% !important; min-height: 44px; background: #fafbf9 !important; font-size: 1rem !important; }
.admin-form button { min-height: 46px; justify-self: start; padding-inline: 22px; }
.admin-form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button-link { border: 0; background: transparent; }
.admin-nav { width: min(1040px, calc(100% - 40px)); display: flex; flex-wrap: wrap; gap: 8px; margin: 22px auto; }
.admin-nav a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 8px; background: white; font-weight: 800; }
.admin-nav a:hover { background: var(--lime-soft); }
.admin-list-actions form { margin: 0; }
.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.dashboard-grid > a { padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: transform .2s, background .2s; }
.dashboard-grid > a:hover { transform: translateY(-2px); background: var(--lime-soft); }
.dashboard-grid strong { display: block; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 500; }
.dashboard-grid span { color: var(--ink-soft); }
.notice { padding: 13px 16px; margin-bottom: 18px; border: 1px solid #b9d58b; border-radius: 9px; background: var(--lime-soft); }
.notice.error { color: #7d2424; border-color: #e3b1b1; background: #fff0f0; }
.setup-page { min-height: 100vh; display: grid; place-items: center; padding: 30px 0; background: #eef1eb; }
.setup-card { width: min(680px, calc(100% - 30px)); padding: clamp(25px, 5vw, 48px); border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 22px 70px rgb(33 42 29 / 12%); }
.setup-card .brand { margin-bottom: 25px; }
.setup-card h1 { font-size: clamp(2.4rem, 8vw, 4.2rem); }
.setup-card > p { color: var(--ink-soft); }
.admin-list { margin-top: 28px; padding: 28px 34px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.admin-list > p { color: var(--ink-soft); }
.admin-list-row { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.admin-list-row:last-child { border: 0; }
.admin-list-row img, .admin-file-icon { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; background: var(--lime-soft); }
.admin-file-icon { display: grid; place-items: center; color: var(--green-dark); }
.admin-file-icon svg { width: 20px; }
.admin-list-row > div:nth-child(2) { display: grid; }
.admin-list-row small { color: var(--ink-soft); }
.admin-list-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 4px; }
.admin-list-actions > a { padding: 8px; color: var(--green-dark); font-weight: 800; }
.admin-list-actions button { gap: 5px; }
.admin-list-actions button svg { width: 16px; }
.admin-list-actions .admin-delete { color: #a33030; }
.admin-current-photo { display: flex; align-items: center; gap: 14px; padding: 12px; background: #f4f6f1; border: 1px solid var(--line); border-radius: 10px; }
.admin-current-photo img { width: 74px; height: 74px; object-fit: cover; border-radius: 9px; }
.admin-current-photo label { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.admin-current-photo input { width: 18px; height: 18px; accent-color: var(--green-dark); }
.admin-member-description { max-width: 560px; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 1220px) {
  .desktop-nav { display: none; } .mobile-menu { display: block; }
}
@media (max-width: 1060px) {
  .hero-grid { gap: 55px; } .service-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; gap: 10px; } .brand small { display: none; } .brand strong { font-size: 1.2rem; } .brand img { width: 43px; height: 40px; }
  .header-book { display: none; } .header-phone span { display: none; } .header-phone { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .hero { padding-top: 50px; } .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 15vw, 5.2rem); } h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero-visual { width: 92%; margin-left: auto; } .hero-note { left: -8%; bottom: 22px; }
  .quick-info { grid-template-columns: 1fr 1fr; }
  .split-heading { display: block; } .split-heading > p, .split-heading > .text-link { margin-top: 22px; }
  .service-grid, .post-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .about-image { min-height: 430px; order: -1; }
  .team-grid { grid-template-columns: 1fr; } .team-card { min-height: 390px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 180px; } .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .contact-details { grid-template-columns: 1fr 1fr; } .contact-details p:first-child { grid-column: 1 / 3; }
  .map-wrap { min-height: 380px; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: 1 / 3; }
  .map-consent { min-height: 380px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner-actions { justify-content: flex-end; }
  .gallery-page-grid { columns: 2; }
  .admin-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .admin-shell, .admin-header > div { width: min(100% - 28px, 1040px); }
  .admin-list { padding: 22px; }
  .admin-list-row { grid-template-columns: 44px 1fr; }
  .admin-list-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .button { width: 100%; } .hero-actions { display: grid; }
  .quick-info { grid-template-columns: 1fr; }
  .hero-note { position: relative; left: -5%; bottom: auto; margin-top: -30px; width: 90%; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 270px repeat(3, 190px); } .gallery-main { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; } .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { gap: 15px; flex-direction: column; } .footer-legal { justify-content: flex-start; flex-direction: column; } .gallery-page-grid { columns: 1; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 18px; }
  .cookie-banner-actions { display: grid; }
  .cookie-banner-actions .button { width: 100%; }
  .privacy-content table { display: block; overflow-x: auto; }
  .gallery-lightbox { grid-template-columns: 46px minmax(0, 1fr) 46px; padding: 66px 4px 16px; }
  .gallery-lightbox-nav { width: 40px; height: 54px; }
  .gallery-lightbox img { max-height: calc(100vh - 130px); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
