* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5edd7;
    --bg-deep: #e5d4aa;
    --white: #fffaf0;
    --surface: rgba(255, 249, 235, 0.88);
    --surface-strong: rgba(255, 246, 223, 0.94);
    --surface-card: linear-gradient(180deg, rgba(243, 236, 214, 0.98) 0%, rgba(234, 224, 192, 0.92) 100%);
    --surface-section: rgba(248, 242, 227, 0.9);
    --header-h: 68px;
    --accent: #9b8b35;
    --accent-dark: #6f621e;
    --accent-glow: #f3dd7a;
    --text: #2f2617;
    --muted: #66573a;
    --forest: #4d5421;
    --forest-deep: #2d3414;
    --border-soft: rgba(116, 98, 30, 0.18);
    --border-card: rgba(165, 141, 74, 0.24);
    --shadow-soft: 0 22px 55px rgba(58, 46, 14, 0.16);
    --shadow-deep: 0 24px 60px rgba(33, 25, 9, 0.28);
    --shadow-section: 0 22px 52px rgba(0, 0, 0, 0.24), 0 10px 24px rgba(0, 0, 0, 0.14);
    --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 10px 22px rgba(52, 44, 19, 0.08);
    --shadow-media: 0 20px 40px rgba(0, 0, 0, 0.18);
    --footer-text: #f8efd4;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    position: relative;
    isolation: isolate;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 249, 235, 0.44) 0 10%, rgba(255, 249, 235, 0) 11%),
        radial-gradient(circle at 74% 34%, rgba(236, 226, 193, 0.38) 0 12%, rgba(236, 226, 193, 0) 13%),
        radial-gradient(circle at 38% 72%, rgba(109, 126, 72, 0.1) 0 9%, rgba(109, 126, 72, 0) 10%),
        radial-gradient(circle at 68% 18%, rgba(255, 251, 242, 0.34) 0 8%, rgba(255, 251, 242, 0) 9%),
        radial-gradient(circle at 16% 64%, rgba(201, 187, 143, 0.18) 0 11%, rgba(201, 187, 143, 0) 12%),
        linear-gradient(180deg, #f5ecd5 0%, #e4d6ae 54%, #cfbc84 100%);
    background-size: 320px 220px, 420px 260px, 280px 210px, 360px 240px, 460px 280px, 100% 100%;
    background-position: 0 0, 140px 80px, 60px 150px, 180px 30px, 40px 220px, 0 0;
    color: var(--text);
    line-height: 1.7;
    padding-top: var(--header-h);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(28px);
    transform: scale(1.08);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

a,
button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

section {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

h1,
h2,
h3,
h4 {
    color: var(--forest-deep);
}

h1 {
    font-size: clamp(1.95rem, 4.1vw, 3.55rem);
    margin: 0 auto 2.2rem;
    max-width: 20ch;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    color: #2c2412;
    text-shadow: 0 2px 8px rgba(255, 248, 230, 0.35);
}

h2 {
    font-size: clamp(1.8rem, 2.55vw, 2.7rem);
    margin-bottom: 1rem;
    line-height: 1.04;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

h3 {
    font-size: 1.28rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1rem;
}

p {
    color: var(--muted);
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
}

.section {
    position: relative;
    padding: 6rem 1.5rem;
}

#about,
#craft,
#gallery,
#booking,
#contact {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-white,
.section-accent,
.section-soft,
.intro-band {
    background: transparent;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow,
.label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    min-width: 14rem;
    padding: 0.95rem 1.6rem 0.95rem 3.8rem;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 250, 240, 0.45);
    color: #fffdf3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 18px 38px rgba(73, 60, 17, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    z-index: 1200;
}

.button::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.35rem;
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.7rem);
    border-radius: 999px;
    background-image: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 42%, var(--accent-dark) 100%);
    z-index: -1;
}

.button::after {
    content: "";
    position: absolute;
    left: 1.4rem;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: none;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(73, 60, 17, 0.3);
}

.button:hover::after {
    transform: translate(10px, -50%) rotate(45deg);
}

.button-full {
    width: 100%;
}

button:disabled {
    cursor: wait;
    opacity: 0.78;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(246, 236, 198, 0.94) 0%, rgba(232, 215, 155, 0.9) 72%, rgba(214, 193, 122, 0.82) 100%);
    border-bottom: 1px solid rgba(95, 84, 24, 0.12);
    box-shadow: 0 6px 18px rgba(70, 58, 18, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
}

.nav-container {
    position: relative;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
}

.nav a,
.nav button {
    position: relative;
    border: 0;
    padding: 0.35rem 0;
    background: none;
    text-decoration: none;
    color: rgba(45, 52, 20, 0.92);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav a::after,
.nav button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(155, 139, 53, 0), rgba(155, 139, 53, 0.95) 22%, rgba(111, 98, 30, 0.95) 78%, rgba(111, 98, 30, 0));
    transform: scaleX(0.2);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav a:hover,
.nav button:hover {
    color: #3c3418;
    transform: translateY(-1px);
}

.nav a:hover::after,
.nav button:hover::after,
.nav a:focus-visible::after,
.nav button:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav a:focus-visible,
.nav button:focus-visible {
    outline: none;
    color: #3c3418;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--forest-deep);
}
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--forest-deep);
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4.75rem 1.5rem 2.2rem;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("images/hero-bg.jpg") center center / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0, 0, 0, 0.32) 78%, rgba(0, 0, 0, 0.08) 90%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0, 0, 0, 0.32) 78%, rgba(0, 0, 0, 0.08) 90%, transparent 100%);
    transform: scale(1.03);
    z-index: 0;
}

.hero .container {
    max-width: 760px;
    padding-top: 0.5rem;
    padding-bottom: 0;
    background: transparent;
}

.hero-logo {
    width: min(39vw, 390px);
    height: auto;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.58)) drop-shadow(0 0 38px rgba(255, 248, 230, 0.34)) drop-shadow(0 14px 26px rgba(48, 39, 12, 0.18));
}

.hero p {
    max-width: 1180px;
    margin: 0 auto 2.4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #2f2410;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: none;
}

.hero .button {
    width: fit-content;
    min-width: 0;
    margin-top: 1rem;
    margin-bottom: 2.75rem;
    padding: 0.95rem 1.35rem 0.95rem 3.1rem;
}

.intro-band {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.intro-band .container {
    padding-left: 0;
    padding-right: 0;
}

.intro-grid,
.about-shell,
.craft-shell,
.booking-shell,
.contact-shell {
    display: grid;
    gap: 1.5rem;
}

.intro-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.62fr);
    align-items: stretch;
}

.intro-card,
.gallery-shell,
.about-shell,
.craft-shell,
.booking-shell,
.contact-shell,
.section-accent .container,
#gallery .container {
    padding: 2.4rem;
    border: none;
    border-radius: 22px;
    background: var(--surface-section);
    box-shadow: var(--shadow-section);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.intro-card,
.intro-panel {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 22px;
}

.intro-card {
    padding: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-card h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(1.8rem, 2.55vw, 2.7rem);
    line-height: 1.04;
}

.intro-card p {
    font-size: 1.03rem;
    line-height: 1.65;
}

.intro-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.6rem;
    color: #fff;
    box-shadow: var(--shadow-media);
    background:
        linear-gradient(180deg, rgba(34, 28, 18, 0.26), rgba(34, 28, 18, 0.78)),
        url("images/galerie/7.png") center center / cover no-repeat;
}

.intro-panel h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
}

.intro-panel p {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.96);
}

.about-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.about-highlight,
.booking-side,
.contact-methods,
.booking-list,
.benefit-grid,
.gallery-grid {
    display: grid;
    gap: 1rem;
}

.about-highlight {
    gap: 1.2rem;
}

.about-quote,
.feature-card,
.booking-note,
.booking-list article,
.gift-card,
.contact-methods article,
.contact-form-card {
    border: 1px solid var(--border-card);
    background: var(--surface-card);
    box-shadow: var(--shadow-card);
}

.about-quote,
.feature-card,
.booking-note,
.booking-list article,
.gift-card,
.contact-methods article {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 1.6rem 1.5rem 1.5rem;
    border-radius: 20px;
}

.about-quote strong,
.feature-number,
.label {
    color: var(--accent-dark);
}

.about-quote strong {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding-left: 0.2rem;
    font-size: 0.9rem;
}

.about-quote p {
    max-width: 28ch;
    margin: 0;
    padding-left: 0.2rem;
    color: #5e5034;
    font-size: 1.12rem;
    line-height: 1.72;
}

.craft-shell {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.62fr);
    align-items: stretch;
}

.benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.8rem;
}

.feature-card h3,
.booking-note h3,
.booking-list article strong,
.gift-card h3,
.contact-methods article h3 {
    position: relative;
    z-index: 1;
}

.feature-card p,
.booking-note p,
.booking-list article p,
.gift-card p,
.contact-methods article p {
    position: relative;
    z-index: 1;
    color: #5e5034;
    font-size: 1.06rem;
    line-height: 1.68;
}

.feature-number,
.gift-card .eyebrow {
    position: relative;
    z-index: 1;
}

.feature-number {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    color: #6e3f24;
}

.craft-visual {
    display: flex;
    align-items: end;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-media);
    background:
        linear-gradient(180deg, rgba(34, 28, 18, 0.18), rgba(34, 28, 18, 0.72)),
        url("images/galerie/9.png") center center / cover no-repeat;
}

.craft-visual-content {
    padding: 2rem;
}

.intro-panel h3,
.intro-panel p,
.craft-visual-content h3,
.craft-visual-content p {
    color: #fff;
}

.gallery-copy,
.gallery-copy h2,
.gallery-copy p {
    width: 100%;
    max-width: none;
}

.gallery-copy {
    margin-bottom: 1.8rem;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(160, 120, 80, 0.14);
    transition: transform 0.38s ease, filter 0.38s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(22, 17, 8, 0.04) 0%, rgba(22, 17, 8, 0.18) 44%, rgba(22, 17, 8, 0.68) 100%);
    transition: opacity 0.28s ease, background 0.28s ease;
}

.gallery-overlay span {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 246, 223, 0.36);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.22);
    box-shadow: 0 10px 24px rgba(20, 16, 8, 0.22);
    color: #fff9ec;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.28s ease, background 0.28s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.gallery-item:hover,
.gallery-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.04) brightness(0.92);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:focus-visible .gallery-overlay span {
    transform: translateY(0);
    background: rgba(255, 250, 240, 0.3);
}

.gallery-item:focus-visible {
    outline: 2px solid rgba(243, 221, 122, 0.95);
    outline-offset: 4px;
}

.booking-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.booking-list article {
    padding: 1.4rem;
    border-radius: 18px;
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.amount {
    color: #6e3f24;
    font-size: 1.7rem;
    line-height: 1;
}

.label {
    font-size: 0.78rem;
}

.contact-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-form-card {
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-section);
}

form {
    padding: 2.4rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 250, 238, 0.96) 0%, rgba(247, 239, 218, 0.98) 100%);
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--forest);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(111, 98, 30, 0.18);
    border-radius: 14px;
    background: rgba(255, 252, 246, 0.9);
    color: var(--text);
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(111, 98, 30, 0.55);
    box-shadow: 0 0 0 4px rgba(243, 221, 122, 0.18);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.checkbox-label {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 0.75rem;
    align-items: start;
    width: 100%;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.35rem;
}

.contact-form-card,
form,
.contact-shell > *,
.button-full,
input,
textarea {
    min-width: 0;
    max-width: 100%;
}

.checkbox-label span {
    min-width: 0;
    overflow-wrap: anywhere;
}



.hp-field {
    position: absolute;
    left: -9999px;
}

.contact-feedback {
    display: none;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-feedback.success,
.contact-feedback.error {
    display: block;
}

.contact-feedback.success {
    background: rgba(76, 120, 52, 0.12);
    border: 1px solid rgba(76, 120, 52, 0.28);
    color: #2f4a1f;
}

.contact-feedback.error {
    background: rgba(160, 58, 36, 0.1);
    border: 1px solid rgba(160, 58, 36, 0.24);
    color: #7a2d1c;
}

.checkbox-label a,
.modal-content a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
}

footer {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    padding: 3.4rem 2rem 1.5rem;

    background: linear-gradient(180deg, rgba(56, 50, 20, 0.9) 0%, rgba(36, 29, 15, 0.98) 100%);
    color: var(--footer-text);
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("images/footer-bg.jpg") center bottom / cover no-repeat;
    opacity: 0.58;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0.75) 28%, #000 44%, #000 74%, rgba(0, 0, 0, 0.4) 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0.75) 28%, #000 44%, #000 74%, rgba(0, 0, 0, 0.4) 88%, transparent 100%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand h3 {
    color: #f6e6a8;
}

.footer-brand p {
    max-width: 28rem;
}

.footer-logo {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28)) drop-shadow(0 0 20px rgba(255, 248, 230, 0.16));
}

.footer-col h4 {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
    padding: 0.35rem 0.9rem 0.35rem 0;
    color: #fff2bf;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 241, 196, 0.22);
}

.footer-col h4::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 221, 122, 0.95), rgba(243, 221, 122, 0.15));
    box-shadow: 0 0 12px rgba(243, 221, 122, 0.2);
}


.footer-col p {
    color: rgba(248, 239, 212, 0.78);
}

.footer-col a,
.footer-col button {
    display: block;
    margin-bottom: 0.75rem;
    border: 0;
    padding: 0;
    background: none;
    color: rgba(248, 239, 212, 0.82);
    text-align: left;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover,
.footer-col button:hover {
    color: #fff5cf;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}


.heart {
    color: #cc2f42;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 248, 226, 0.12);
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(248, 239, 212, 0.7);
}

#toTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    min-width: 12.5rem;
    padding: 0.95rem 1.6rem 0.95rem 3.8rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.45);
    color: #fffdf3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 18px 38px rgba(73, 60, 17, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    z-index: 1200;
}

#toTop::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.35rem;
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.7rem);
    border-radius: 999px;
    background-image: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 42%, var(--accent-dark) 100%);
    z-index: -1;
}

#toTop::after {
    content: "";
    position: absolute;
    left: 1.4rem;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    transition: none;
}

#toTop:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(73, 60, 17, 0.3);
}

#toTop:hover::after {
    transform: translateY(-50%) rotate(-45deg);
}

#toTop:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(52, 44, 19, 0.28);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(20, 16, 8, 0.78);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2.5rem 2.4rem 2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 250, 238, 0.98) 0%, rgba(247, 239, 218, 1) 100%);
    box-shadow: var(--shadow-deep);
    scrollbar-width: thin;
    scrollbar-color: rgba(111, 98, 30, 0.45) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 12px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(111, 98, 30, 0.45);
    border: 3px solid rgba(247, 239, 218, 1);
    border-radius: 999px;
}

.modal-content h1 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.85rem;
    font-size: clamp(1.5rem, 2.2vw, 2.3rem);
    line-height: 1.02;
    text-align: left;
}

.modal-content h2 {
    margin-top: 1.4rem;
    margin-bottom: 0.55rem;
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.close {
    position: absolute;
    top: 15px;
    right: 18px;
    color: var(--forest);
    font-size: 24px;
    cursor: pointer;
}

.modal.image-mode {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
}

.modal.image-mode .modal-content {
    width: auto;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.modal.image-mode .close {
    display: none;
}

.lightbox-frame {
    position: relative;
    display: inline-block;
}

.lightbox-frame img {
    display: block;
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 20px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.1rem;
    min-height: 3.1rem;
    padding: 0.35rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.45);
    box-shadow: 0 18px 38px rgba(73, 60, 17, 0.24);
    color: #fffdf3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lightbox-close::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.35rem;
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.7rem);
    border-radius: 999px;
    background-image: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 42%, var(--accent-dark) 100%);
    z-index: -1;
}

.lightbox-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(73, 60, 17, 0.3);
}

@media (max-width: 1080px) {
    .intro-grid,
    .about-shell,
    .craft-shell,
    .booking-shell,
    .contact-shell,
    .footer-container,
    .benefit-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        max-width: 18ch;
        font-size: 2.45rem;
    }

    .hero p {
        font-size: 0.82rem;
    }

    .intro-panel {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 80px;
    }

    .hamburger {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        display: flex;
        transform: translateY(-50%);
        z-index: 2000;
    }

    .nav {
        position: absolute;
        top: calc(100% + 0.85rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        border: 1px solid rgba(120, 96, 33, 0.18);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 238, 210, 0.96) 100%);
        box-shadow: 0 22px 48px rgba(52, 44, 19, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .nav a,
    .nav button {
        width: 100%;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        border-radius: 16px;
        background: rgba(255, 251, 242, 0.58);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        color: #3f3619;
        font-size: 0.95rem;
        letter-spacing: 0.06em;
    }

    .nav a::after,
    .nav button::after {
        left: 1rem;
        right: 1rem;
        bottom: 0.45rem;
    }

    .nav a:hover,
    .nav button:hover,
    .nav a:focus-visible,
    .nav button:focus-visible {
        background: rgba(255, 254, 248, 0.88);
        box-shadow: 0 12px 24px rgba(95, 84, 24, 0.1);
        transform: none;
    }

    .nav.active {
        display: flex;
    }

    .hero {
        padding: 4.1rem 1rem 1.6rem;
    }

    .hero .container {
        width: min(100%, 430px);
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .hero-logo {
        width: min(56vw, 250px);
        margin: 0 auto 1.1rem;
    }

    .hero h1 {
        display: block;
        width: min(94vw, 18ch);
        max-width: none;
        margin: 0 auto 1.8rem;
        text-align: center;
        font-size: 2.3rem;
        line-height: 0.96;
    }

    .hero p {
        width: min(88vw, 31rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        font-size: 0.8rem;
        text-align: center;
    }

    .contact-form-card {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    form {
        padding: 1.35rem;
    }

    input,
    textarea {
        padding: 0.82rem 0.92rem;
        font-size: 0.96rem;
    }

    textarea {
        min-height: 132px;
    }



    .contact-shell {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .button {
        width: 100%;
    }

    .lightbox-close {
        top: 0.7rem;
        right: 0.7rem;
        min-width: 2.7rem;
        min-height: 2.7rem;
        font-size: 1.2rem;
    }

    .lightbox-frame img {
        border-radius: 16px;
    }
}
@media (max-width: 480px) {
    .section {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .intro-card,
    .gallery-shell,
    .about-shell,
    .craft-shell,
    .booking-shell,
    form,
    .modal-content {
        padding: 1.4rem;
        border-radius: 18px;
    }
}

@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(22, 17, 8, 0.02) 0%, rgba(22, 17, 8, 0.1) 48%, rgba(22, 17, 8, 0.46) 100%);
    }

    .gallery-overlay span {
        transform: translateY(0);
    }
}






























