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

:root {
    --teal-900: #0a2e35;
    --teal-800: #0d3b44;
    --teal-700: #104a55;
    --teal-600: #145f6e;
    --teal-500: #1a7a8e;
    --teal-400: #2a9db5;
    --teal-300: #5bbdd2;
    --teal-100: #d0eef4;
    --teal-50:  #eaf7fa;
    --slate-950: #0c1522;
    --slate-900: #132035;
    --slate-800: #1e3048;
    --slate-700: #2a4060;
    --slate-600: #3d5575;
    --slate-500: #5a7190;
    --slate-400: #7e95ad;
    --slate-300: #a8b8cc;
    --slate-200: #cdd9e6;
    --slate-100: #e8eef5;
    --slate-50:  #f4f7fa;
    --cream:     #fafbfc;
    --white:     #ffffff;
    --gold:      #c8a45e;
    --gold-light:#e8cc80;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(12, 21, 34, 0.06), 0 1px 2px rgba(12, 21, 34, 0.04);
    --shadow-md: 0 4px 16px rgba(12, 21, 34, 0.08), 0 2px 4px rgba(12, 21, 34, 0.04);
    --shadow-lg: 0 12px 40px rgba(12, 21, 34, 0.12), 0 4px 12px rgba(12, 21, 34, 0.06);
    --shadow-xl: 0 24px 60px rgba(12, 21, 34, 0.16), 0 8px 20px rgba(12, 21, 34, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-800);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.section-headline .accent {
    color: var(--teal-600);
    font-style: italic;
    font-weight: 400;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-600);
    max-width: 540px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10, 46, 53, 0.25);
}

.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 46, 53, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--teal-400);
    color: var(--teal-600);
    background: var(--teal-50);
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(250, 251, 252, 0.95);
    border-bottom-color: var(--slate-100);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-900);
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--teal-700);
}

.logo-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.cta-nav {
    margin-left: 8px;
    background: var(--teal-700);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.cta-nav:hover {
    background: var(--teal-600);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--slate-50);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    left: 0;
    transition: all var(--transition-base);
}

.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--slate-50) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 122, 142, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 164, 94, 0.05) 0%, transparent 50%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--teal-400);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--slate-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .accent {
    display: block;
    color: var(--teal-600);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
    transition: transform var(--transition-slow);
}

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

.hero-accent-strip {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-700);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.15;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--slate-300), transparent);
}

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

/* ─── Info Strip ─── */
.info-strip {
    background: var(--slate-900);
    padding: 0;
}

.info-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 28px 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.info-item:last-child {
    border-right: none;
}

.info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.info-value {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--slate-200);
}

.info-link {
    color: var(--teal-300);
    transition: color var(--transition-fast);
}

.info-link:hover {
    color: var(--teal-200);
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/640;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 300/200;
}

.about-text-col {
    padding: 20px 0;
}

.about-text-col .lead {
    margin-bottom: 20px;
}

.about-text-col p {
    color: var(--slate-600);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal-700);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ─── Stay ─── */
.stay {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .lead {
    margin: 0 auto;
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stay-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.stay-card:hover {
    background: var(--white);
    border-color: var(--slate-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stay-card-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.stay-card:hover .stay-card-icon {
    background: var(--teal-700);
    color: var(--white);
}

.stay-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.stay-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--slate-500);
}

/* ─── Location ─── */
.location {
    padding: 120px 0;
    background: var(--slate-900);
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-text-col .section-eyebrow {
    color: var(--teal-400);
}

.location-text-col .section-headline {
    color: var(--white);
}

.location-text-col .lead {
    color: var(--slate-400);
    margin-bottom: 32px;
}

.location-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--slate-300);
}

.location-list-icon {
    width: 36px;
    height: 36px;
    background: rgba(26, 122, 142, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    flex-shrink: 0;
}

.location-image-col {
    position: relative;
}

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

.location-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/480;
}

.location-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 65%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-900);
}

.location-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/280;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
    text-align: center;
}

.cta-eyebrow {
    color: var(--teal-300) !important;
}

.cta-headline {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--teal-200);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-100);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.cta-contact-item:hover {
    color: var(--white);
}

.cta-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-300);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.cta-contact-item:hover .cta-contact-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col .section-headline {
    margin-bottom: 16px;
}

.contact-info-col .lead {
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.contact-detail-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--slate-800);
    line-height: 1.5;
}

.contact-link {
    color: var(--teal-600);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--teal-500);
    text-decoration: underline;
}

/* ─── Form ─── */
.contact-form-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--slate-900);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-input:focus {
    border-color: var(--teal-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 122, 142, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--teal-600);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

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

/* ─── Footer ─── */
.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-200);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    color: var(--teal-500);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate-500);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--teal-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--teal-400);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--slate-600);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 251, 252, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .cta-nav {
        margin-left: 0;
        text-align: center;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-scroll {
        display: none;
    }

    /* Info strip */
    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .info-item {
        padding: 20px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .info-item:last-child {
        border-bottom: none;
    }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
        border: none;
    }

    .about-stats {
        gap: 24px;
    }

    /* Stay */
    .stay {
        padding: 80px 0;
    }

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

    /* Location */
    .location {
        padding: 80px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .location-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
        border: none;
    }

    /* CTA */
    .cta {
        padding: 80px 0;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-col {
        padding: 28px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .section-headline {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
