/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terracotta: #C0603C;
    --terracotta-dark: #A34D2E;
    --terracotta-light: #D4856A;
    --sand: #FDF6EE;
    --sand-dark: #F5E6D3;
    --sand-mid: #EDE0D0;
    --warm-gray: #6B5B50;
    --warm-gray-light: #9A8A7E;
    --text-dark: #3A2A20;
    --text-mid: #5C4A3E;
    --text-light: #8A7A6E;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(58, 42, 32, 0.06);
    --shadow-md: 0 4px 20px rgba(58, 42, 32, 0.08);
    --shadow-lg: 0 8px 40px rgba(58, 42, 32, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--sand);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Utility ── */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(192, 96, 60, 0.3);
}

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 96, 60, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn--ghost:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn--outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192, 96, 60, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav__logo span {
    color: var(--terracotta);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
}

.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__links a:not(.nav__cta):hover {
    color: var(--terracotta);
}

.nav__links a:not(.nav__cta):hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

.nav__cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    padding: 2rem;
    animation: slideDown 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu__link {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--terracotta);
}

.mobile-menu__cta-btn {
    margin-top: 1rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 96, 60, 0.08);
    border: 1px solid rgba(192, 96, 60, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.hero__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero__trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero__image-wrapper:hover img {
    transform: scale(1.03);
}

.hero__image-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero__image-float--price {
    bottom: 15%;
    left: -12%;
    animation-delay: 0.5s;
}

.hero__image-float--rating {
    top: 10%;
    right: -8%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__float-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 0.25rem;
}

.hero__float-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero__float-stars {
    display: flex;
    gap: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__wave {
    margin-top: auto;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ── About ── */
.about {
    background: var(--sand-dark);
    padding: 5rem 1.5rem;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand-dark);
    width: 55%;
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content .section-title {
    margin-bottom: 1.5rem;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.highlight-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ── Menu ── */
.menu {
    background: var(--sand);
    padding: 5rem 1.5rem;
}

.menu__container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu__header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu__subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card__img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__img img {
    transform: scale(1.05);
}

.menu-card__body {
    padding: 1.5rem;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.menu-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-card__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-card__items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sand-mid);
}

.menu-card__items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-card__items li span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.menu__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── Visit ── */
.visit {
    background: var(--sand-dark);
    padding: 5rem 1.5rem;
}

.visit__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit__content .section-title {
    margin-bottom: 1.25rem;
}

.visit__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-detail__icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visit__map iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ── CTA ── */
.cta {
    background: var(--terracotta);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn--outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn--outline:hover {
    background: var(--white);
    color: var(--terracotta);
}

/* ── Contact ── */
.contact {
    background: var(--sand);
    padding: 5rem 1.5rem;
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--sand-mid);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--sand);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 96, 60, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--terracotta);
    transition: var(--transition);
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact__success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.contact__success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.contact__success svg {
    margin: 0 auto 1rem;
}

.contact__success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact__success p {
    color: var(--text-mid);
}

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

/* ── Footer ── */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 1.5rem 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer__logo span {
    color: var(--terracotta-light);
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links strong {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--terracotta-light);
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__hours strong {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer__hours p {
    font-size: 0.9rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.8rem;
}

.footer__bottom a {
    color: var(--terracotta-light);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--white);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2rem;
    }

    .hero__image-float--price {
        left: -5%;
    }

    .hero__image-float--rating {
        right: -4%;
    }
}

@media (max-width: 900px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero__badge {
        margin: 0 auto 1.5rem;
    }

    .hero__sub {
        margin: 0 auto 2rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero__image-float--price {
        left: -5%;
        bottom: 10%;
    }

    .hero__image-float--rating {
        right: -5%;
        top: 5%;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .visit__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit__map iframe {
        height: 350px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero__image-float {
        display: none;
    }

    .about__image-secondary {
        right: -0.5rem;
        bottom: -1.5rem;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
    }

    .about__image-secondary {
        width: 65%;
    }

    .contact__form {
        padding: 1.5rem;
    }
}
