/* ===================================
   Bn Nail Salon — Custom Styles
   =================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --navy-950: #070e1f;
    --navy-900: #0a1f44;
    --navy-800: #0f2d5e;
    --navy-700: #163d7a;
    --navy-600: #1e5099;
    --gold-500: #C9A84C;
    --gold-400: #d4b760;
    --gold-300: #e0c97a;
    --gold-600: #a88a35;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ebe3d4;
    --stone-50: #f9f8f6;
    --stone-100: #f2efe9;
    --stone-200: #e5e0d6;
    --stone-300: #d4cec2;
    --stone-400: #a89f91;
    --stone-500: #7a7066;
    --stone-600: #5c544b;
    --stone-700: #433d36;
    --stone-800: #2d2925;
    --stone-900: #1a1714;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 31, 68, 0.18);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--stone-700);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

ul, ol {
    list-style: none;
}

/* ---- Accessibility ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--navy-900);
    color: var(--cream-50);
    z-index: 200;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---- Typography ---- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: var(--gold-300);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: var(--space-md);
}

.section-title--light {
    color: var(--cream-50);
}

.section-title--center {
    text-align: center;
}

.text-gold {
    color: var(--gold-500);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--center {
    text-align: center;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
}

.section-divider:not(.section-header .section-divider) {
    justify-content: flex-start;
}

.divider-line {
    flex: 0 0 60px;
    height: 1px;
    background: var(--stone-300);
}

.divider-diamond {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-icon {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--navy-900);
    color: var(--cream-50);
    border: 2px solid var(--navy-900);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--navy-800);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(250, 248, 244, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(250, 248, 244, 0.1);
    border-color: var(--cream-50);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
    border: 2px solid var(--gold-500);
}

.btn-gold:hover,
.btn-gold:focus-visible {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition-base);
}

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

.logo-link {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-50);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.75);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--gold-400);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--gold-400);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(250, 248, 244, 0.08);
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream-50);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream-50);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(6px);
}

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

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

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

/* ===================================
   Hero
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 14, 31, 0.92) 0%,
        rgba(10, 31, 68, 0.85) 50%,
        rgba(15, 45, 94, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: var(--space-md);
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-400);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 248, 244, 0.4);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

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

/* ===================================
   Services
   =================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-500);
}

.service-icon {
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--stone-500);
}

/* ===================================
   About
   =================================== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--navy-900);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

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

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

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

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

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--gold-500);
    color: var(--navy-950);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.badge-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content {
    color: var(--cream-50);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.75);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) 0;
    margin-bottom: var(--space-xl);
    margin-top: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.85);
}

.feature-check {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ===================================
   Gallery
   =================================== */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 14, 31, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream-50);
}

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

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 5;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / span 5;
    grid-row: 2;
}

.gallery-item:nth-child(4) {
    grid-column: 6 / span 6;
    grid-row: 2;
}

.gallery-item:nth-child(5) {
    grid-column: 1 / span 12;
    grid-row: 3;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 14, 31, 0.9) 0%,
        rgba(10, 31, 68, 0.85) 100%
    );
}

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

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.75);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ===================================
   Visit
   =================================== */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-details {
    margin-top: var(--space-xl);
}

.contact-item {
    margin-bottom: var(--space-lg);
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone-400);
    margin-bottom: 0.35rem;
}

.contact-icon {
    color: var(--gold-500);
}

.contact-link {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-900);
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--gold-600);
}

.hours-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hours-text span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.5;
}

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

.map-link {
    display: block;
    position: relative;
}

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

.map-link:hover img {
    transform: scale(1.03);
}

.map-cta {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--navy-900);
    color: var(--cream-50);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.map-cta:hover {
    background: var(--navy-800);
}

/* ===================================
   Contact Form
   =================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--navy-900);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.7);
    margin-top: var(--space-md);
}

.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-600);
    margin-bottom: 0.4rem;
}

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

.form-input:focus {
    border-color: var(--gold-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7066' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--stone-500);
    margin-top: var(--space-sm);
}

.form-note a {
    color: var(--gold-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: var(--space-md);
    margin-top: var(--space-md);
    background: #f0faf0;
    border: 1px solid #b8e6b8;
    border-radius: var(--radius-sm);
    color: #1a5c1a;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    color: #2d8a2d;
    flex-shrink: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy-950);
    color: rgba(250, 248, 244, 0.6);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
    align-items: start;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250, 248, 244, 0.5);
    margin-top: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--gold-400);
}

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

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--gold-400);
}

.footer-contact p {
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 244, 0.08);
    padding: var(--space-md) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 248, 244, 0.35);
}

/* ===================================
   Scroll Reveal (progressive enhancement)
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-accent {
        right: -20px;
        bottom: -20px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 31, 68, 0.98);
        backdrop-filter: blur(12px);
        padding: var(--space-lg);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        transform: translateY(-110%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

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

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-sm);
        border-width: 2px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: auto;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }
}
