/* Deliusion™ Website Styles */
:root {
    --bg-dark: #111717;
    --bg-card: rgba(22, 32, 30, 0.94);
    --bg-soft: #182420;
    --accent: #ffd68a;
    --accent-soft: #ffc76b33;
    --primary: #354f3d;
    --primary-light: #838a6c;
    --text-main: #f7f7f3;
    --text-soft: #c4cbc4;
    --border-subtle: #28362d;
    --danger: #ff6b6b;
    --radius-xl: 24px;
    --blur-strong: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #2b3a33 0, #050807 45%, #020303 100%);
    color: var(--text-main);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(6,12,10,0.92), rgba(6,12,10,0.55));
    border-bottom: 1px solid rgba(173, 190, 177, 0.18);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-orbit {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 214, 138, 0.3);
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 0 0 1px rgba(7,10,9,0.9), 0 12px 30px rgba(0,0,0,0.46);
    background: radial-gradient(circle at 30% 20%, #ffd68a 0, #354f3d 40%, #020202 100%);
    overflow: hidden;
}

.logo-orbit::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    border: 1px dashed rgba(255, 235, 190, 0.5);
    opacity: 0.55;
}

.logo-core {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(5, 9, 8, 0.85);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
}

.logo-text .brand-main {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.logo-text .tm {
    font-size: 0.62rem;
    vertical-align: super;
    opacity: 0.7;
}

.logo-text .brand-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--text-soft);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.86rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd68a, #ffb86c);
    transition: width 0.28s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.pill-btn {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,214,138,0.8);
    color: #151515;
    background: radial-gradient(circle at top, #ffd68a, #e7934c);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
}

/* HERO */
.hero {
    padding: 7.5rem 1.25rem 5rem;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: center;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 3.3vw, 3.4rem);
    line-height: 1.08;
    margin: 0 0 0.75rem;
}

.hero-kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.hero-brand {
    display: block;
    font-family: "Playfair Display", serif;
}

.hero-tagline {
    display: block;
    font-size: 1rem;
    color: var(--text-soft);
    margin-top: 0.3rem;
}

.gradient-text {
    background: linear-gradient(120deg, #ffd68a, #ffb86c, #ffeabf);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    margin-top: 1.1rem;
    color: var(--text-soft);
    max-width: 34rem;
    font-size: 0.98rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
    background: radial-gradient(circle at top left, #ffd68a, #e7934c);
    border-color: rgba(18,12,0,0.9);
    color: #20160c;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}

.btn.primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 42px rgba(0,0,0,0.68);
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255, 214, 138, 0.45);
    color: var(--accent);
    box-shadow: 0 0 0 1px rgba(9,14,10,0.6);
}

.btn.ghost:hover {
    background: rgba(255,214,138,0.08);
}

.btn.full {
    width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.6rem;
    font-size: 0.78rem;
    color: var(--text-soft);
}

.meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    color: var(--primary-light);
}

.meta-value {
    display: block;
}

.hero-right {
    position: relative;
    min-height: 340px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.orb-main {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 20%, #ffd68a 0, #354f3d 40%, #020202 100%);
    top: 5%;
    right: -10%;
}

.orb-side {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 20%, #ffb36c 0, #354f3d 45%, #020202 100%);
    bottom: -5%;
    left: -10%;
}

.plate-stack {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
}

.plate {
    position: relative;
    border-radius: 30px;
    padding: 1.2rem;
    background: radial-gradient(circle at top, #1e2b25, #020404 75%);
    border: 1px solid rgba(170, 196, 180, 0.35);
    box-shadow: 0 20px 45px rgba(0,0,0,0.75);
    overflow: hidden;
}

.plate-main {
    transform: rotate(-4deg) translateX(12px);
    z-index: 3;
}

.plate-burger {
    position: absolute;
    bottom: -24%;
    left: -8%;
    width: 70%;
    transform: rotate(-10deg);
    z-index: 2;
}

.card-mock {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 65%;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,214,138,0.1), rgba(53,79,61,0.9));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,214,138,0.5);
    z-index: 4;
}

.card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.card-body span {
    display: block;
    font-size: 0.8rem;
}

.card-body .chip {
    margin-top: 0.3rem;
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255,214,138,0.5);
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.plate-img {
    height: 160px;
    border-radius: 999px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.plate-glow {
    position: absolute;
    inset: 10%;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgba(255,214,138,0.4), transparent 60%);
    opacity: 0.7;
    mix-blend-mode: screen;
}

.plate-pasta {
    background-image: url('https://images.pexels.com/photos/6287490/pexels-photo-6287490.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.plate-burger-img {
    background-image: url('https://images.pexels.com/photos/1639557/pexels-photo-1639557.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 0.4rem;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    text-decoration: none;
    color: var(--text-soft);
}

.scroll-wheel {
    width: 18px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,214,138,0.7);
    position: relative;
    overflow: hidden;
}

.scroll-wheel::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateX(-50%);
    animation: wheel 1.3s ease-in-out infinite;
}

@keyframes wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    70% { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* FLOATING BADGES */
.floating-badge {
    position: absolute;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(20, 28, 25, 0.92);
    border: 1px solid rgba(255,214,138,0.4);
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 1px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.6);
}

.badge-time {
    top: 3.9rem;
    right: 3rem;
}

.badge-location {
    top: 7.3rem;
    right: 0.7rem;
}

.floating-badge .label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-light);
    font-size: 0.63rem;
}

.floating-badge .value {
    font-weight: 500;
}

/* SECTIONS */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
    position: relative;
    z-index: 2;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-heading.left {
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary-light);
    font-size: 0.72rem;
}

.section-heading h2 {
    margin: 0.35rem 0;
    font-size: 1.7rem;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.menu {
    margin-top: 1.6rem;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.menu-tab {
    background: rgba(24, 36, 30, 0.85);
    border-radius: 999px;
    border: 1px solid rgba(192, 210, 196, 0.4);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: var(--text-soft);
    cursor: pointer;
}

.menu-tab.active {
    background: radial-gradient(circle at top left, #ffd68a, #e7934c);
    color: #20160c;
    border-color: rgba(18,12,0,0.9);
}

.menu-panels {
    position: relative;
}

.menu-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.menu-panel.active {
    display: grid;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.1rem 1rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top right, rgba(255,214,138,0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-main h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.menu-card-main p {
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-soft);
}

.menu-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.price {
    font-weight: 600;
    font-size: 0.98rem;
}

.tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 216, 204, 0.6);
}

.tag.hot { border-color: #ffb86c; }
.tag.veg { border-color: #9ae6b4; }
.tag.bestseller { border-color: #ffd68a; }
.tag.quick { border-color: #c4c7ff; }

/* EXPERIENCE */
.xp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.xp-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.3rem 1.1rem;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.xp-card::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at top left, rgba(255,214,138,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.xp-card:hover::after {
    opacity: 1;
}

.xp-card h3 {
    margin: 0 0 0.4rem;
}

.xp-card p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.pill {
    display: inline-flex;
    margin-top: 0.6rem;
    font-size: 0.7rem;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(187, 204, 191, 0.7);
}

.xp-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-soft);
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 0.7rem;
}

.gallery-item {
    position: relative;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gi-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    box-shadow: 0 14px 30px rgba(0,0,0,0.8);
}

.gi-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,3,3,0.85), rgba(3,3,3,0.1));
}

.gi-label {
    position: absolute;
    left: 0.9rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
}

.pasta-red {
    background-image: url('https://images.pexels.com/photos/1279330/pexels-photo-1279330.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.snack-attack {
    background-image: url('https://images.pexels.com/photos/1580466/pexels-photo-1580466.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.fusion {
    background-image: url('https://images.pexels.com/photos/6287768/pexels-photo-6287768.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.burger-blast {
    background-image: url('https://images.pexels.com/photos/1639562/pexels-photo-1639562.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.plate-momos {
    background-image: url('https://images.pexels.com/photos/12916841/pexels-photo-12916841.jpeg?auto=compress&cs=tinysrgb&w=800');
}

/* VISIT */
.visit-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.8rem;
    align-items: center;
}

.visit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.4rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.visit-list li + li {
    margin-top: 0.4rem;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.visit-map-card {
    position: relative;
}

.map-orb {
    position: absolute;
    inset: -18%;
    background: radial-gradient(circle at 30% 20%, rgba(255,214,138,0.3), transparent 55%);
    filter: blur(26px);
    pointer-events: none;
}

.map-fake {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #050809;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.85);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    background: linear-gradient(to right, #111a15, #1c291f);
    border-bottom: 1px solid #1c251f;
    font-size: 0.7rem;
}

.map-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.dot.red { background: #ff6b6b; }
.dot.yellow { background: #ffd93b; }
.dot.green { background: #51cf66; }

.map-title {
    margin-left: 0.4rem;
    color: var(--text-soft);
}

.map-body {
    position: relative;
    height: 210px;
    background: radial-gradient(circle at 30% 10%, #24382f, #050808 70%);
    overflow: hidden;
}

.map-pin {
    position: absolute;
    left: 52%;
    top: 46%;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid #ffd68a;
    box-shadow: 0 0 0 8px rgba(255,214,138,0.18);
    transform: translate(-50%, -50%);
}

.map-rings {
    position: absolute;
    left: 52%;
    top: 46%;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    border: 1px dashed rgba(255,214,138,0.35);
    transform: translate(-50%, -50%);
}

.map-street {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 60%;
    height: 30px;
    background: linear-gradient(to right, #0f1513, #1b2520, #0f1513);
}

.map-block {
    position: absolute;
    width: 70px;
    height: 40px;
    border-radius: 10px;
    background: #18231f;
    border: 1px solid #24342b;
}

.block-a { left: 15%; top: 25%; }
.block-b { right: 18%; top: 30%; }

.map-footer {
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
    color: var(--text-soft);
    border-top: 1px solid #1c251f;
    background: #050706;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 1.7rem;
    align-items: flex-start;
}

.contact-form {
    background: rgba(10, 16, 13, 0.95);
    border-radius: var(--radius-xl);
    padding: 1.4rem 1.25rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(0,0,0,0.85);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.7rem;
}

.field label {
    font-size: 0.76rem;
    color: var(--text-soft);
}

input, select, textarea {
    background: #050807;
    border-radius: 999px;
    border: 1px solid #28362d;
    padding: 0.55rem 0.9rem;
    color: var(--text-main);
    font-size: 0.86rem;
    outline: none;
    font-family: inherit;
}

textarea {
    border-radius: 18px;
    min-height: 110px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    border-color: rgba(255,214,138,0.9);
    box-shadow: 0 0 0 1px rgba(255,214,138,0.4);
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-soft);
}

.code {
    font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.contact-side {
    display: grid;
    gap: 0.9rem;
}

.cs-card {
    background: rgba(18, 25, 22, 0.95);
    border-radius: 18px;
    padding: 1.1rem 1rem;
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-soft);
}

.cs-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.cs-card.translucent {
    background: linear-gradient(135deg, rgba(53, 79, 61, 0.35), rgba(12, 18, 15, 0.9));
}

.cs-card ul {
    margin: 0.4rem 0 0;
    padding-left: 1rem;
}

.insta-btn {
    margin-top: 0.7rem;
    font-size: 0.84rem;
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.4rem 1.25rem 1.7rem;
    background: radial-gradient(circle at top, rgba(21,33,27,0.85), #050706 60%);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--text-soft);
}

/* THANK-YOU PAGE */
.thank-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.thank-wrapper {
    padding: 1.5rem;
}

.thank-card {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(10, 16, 13, 0.97);
    border-radius: 24px;
    padding: 1.4rem 1.3rem 1.5rem;
    border: 1px solid var(--border-subtle);
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.9);
}

.thank-card h1 {
    margin: 0 0 0.5rem;
}

.thank-text {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.thank-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}

.thank-meta {
    margin-top: 0.5rem;
    font-size: 0.76rem;
    color: var(--text-soft);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-inner {
        padding-inline: 1rem;
    }
    .nav-links {
        position: fixed;
        inset: 56px 0 auto;
        background: rgba(4,8,6,0.98);
        flex-direction: column;
        padding: 0.8rem 1.4rem 1.3rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.26s ease, opacity 0.26s ease;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        padding-top: 6.2rem;
    }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-right {
        order: -1;
    }
    .floating-badge {
        display: none;
    }
    .visit-inner,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 150px;
    }
}

@media (max-width: 640px) {
    .section {
        padding-inline: 1rem;
    }
    .hero {
        padding-inline: 1rem;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-text {
        font-size: 0.9rem;
    }
    .btn {
        padding-inline: 1.1rem;
    }
}
