@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1f3c;
  --gold: #b8973a;
  --gold-light: #d4af5a;
  --cream: #f9f6f0;
  --white: #ffffff;
  --gray: #64748b;
  --border: #e2d9c8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* ─── TOP BAR ─── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.78rem; padding: 8px 0; letter-spacing: 0.02em; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar span { margin: 0 8px; opacity: 0.4; }

/* ─── NAV ─── */
nav { background: var(--white); border-bottom: 2px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(13,31,60,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-emblem { width: 48px; height: 48px; background: var(--navy); display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.logo-emblem::after { content: 'MK'; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.logo-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text span { display: block; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li a { display: block; padding: 8px 14px; color: var(--navy); text-decoration: none; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; position: relative; }
.nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--gold); }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-links li { position: relative; }
.nav-links li:hover .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; border: 1px solid var(--border); border-top: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(13,31,60,0.1); z-index: 200; }
.dropdown a { display: block; padding: 10px 18px; font-size: 0.82rem; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border); transition: all 0.15s; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--gold); padding-left: 24px; }
.dropdown a::after { display: none !important; }
.has-dropdown > a::before { content: ' ▾'; font-size: 0.7rem; opacity: 0.6; }

.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 4px !important; transition: background 0.2s !important; margin-left: 8px; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { background: var(--navy); padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,151,58,0.03) 40px, rgba(184,151,58,0.03) 41px), repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,151,58,0.03) 40px, rgba(184,151,58,0.03) 41px); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.65; max-width: 600px; }
.page-hero-gold-line { height: 3px; background: linear-gradient(90deg, var(--gold), transparent); width: 80px; margin: 20px 0 0; }

/* ─── HERO (homepage) ─── */
.hero { background: var(--navy); position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,151,58,0.03) 40px, rgba(184,151,58,0.03) 41px), repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,151,58,0.03) 40px, rgba(184,151,58,0.03) 41px); }
.hero-glow { position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(184,151,58,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,151,58,0.15); border: 1px solid rgba(184,151,58,0.3); color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 24px; animation: fadeInUp 0.6s ease both; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; animation: fadeInUp 0.6s 0.1s ease both; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; animation: fadeInUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s 0.3s ease both; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; animation: fadeInUp 0.6s 0.4s ease both; }
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 24px 20px; text-align: center; transition: border-color 0.2s; }
.stat-card:hover { border-color: rgba(184,151,58,0.4); }
.stat-card .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-card .label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── BUTTONS ─── */
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,151,58,0.3); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 14px 28px; border-radius: 4px; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy { border: 1.5px solid var(--navy); color: var(--navy); padding: 12px 24px; border-radius: 4px; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; display: inline-block; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ─── SECTION COMMON ─── */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.7; max-width: 600px; }

/* ─── SERVICES ─── */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid var(--border); border-radius: 8px; padding: 32px 28px; background: var(--cream); transition: all 0.25s; position: relative; overflow: hidden; cursor: default; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,60,0.1); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.3rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
.service-card a { display: inline-block; margin-top: 14px; font-size: 0.8rem; color: var(--gold); font-weight: 600; text-decoration: none; letter-spacing: 0.04em; }
.service-card a:hover { text-decoration: underline; }

/* ─── WHY US ─── */
.why-section { background: var(--navy); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.why-left .section-title { color: var(--white); }
.why-left .section-desc { color: rgba(255,255,255,0.6); }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(184,151,58,0.15); border: 1px solid rgba(184,151,58,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1rem; margin-top: 2px; }
.why-point-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-point-text p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 28px 22px; text-align: center; transition: all 0.2s; }
.feature-box:hover { background: rgba(184,151,58,0.1); border-color: rgba(184,151,58,0.3); }
.feature-box .big { font-size: 2rem; margin-bottom: 8px; }
.feature-box h4 { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.feature-box p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.feature-box.gold-tint { background: rgba(184,151,58,0.1); border-color: rgba(184,151,58,0.2); grid-column: span 2; }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-main-box { background: var(--navy); border-radius: 8px; padding: 48px 40px; color: white; position: relative; overflow: hidden; }
.about-main-box::after { content: '"'; position: absolute; right: 20px; top: -20px; font-family: 'Cormorant Garamond', serif; font-size: 160px; color: rgba(184,151,58,0.08); line-height: 1; }
.about-main-box blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; line-height: 1.6; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.about-main-box cite { font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }
.about-address-card { margin-top: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; display: flex; gap: 14px; align-items: flex-start; }
.about-address-card .icon { font-size: 1.4rem; }
.about-address-card h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.about-address-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--navy); }
.about-list li::before { content: '✓'; width: 22px; height: 22px; min-width: 22px; background: rgba(184,151,58,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold); font-weight: 700; }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-info p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; min-width: 40px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold-light); }
.contact-item-text h5 { font-weight: 600; color: var(--navy); font-size: 0.85rem; margin-bottom: 3px; }
.contact-item-text p { font-size: 0.83rem; color: var(--gray); line-height: 1.5; }
.contact-item-text a { color: var(--gold); text-decoration: none; }
.contact-form { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 40px; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); background: var(--white); outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 100px; }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); padding: 14px 28px; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.04em; }
.btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

/* ─── MAP ─── */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 360px; border: none; display: block; filter: grayscale(15%) contrast(1.05); }

/* ─── INNER PAGE CONTENT ─── */
.inner-content { padding: 64px 0; }
.inner-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin: 32px 0 14px; }
.inner-content h2:first-child { margin-top: 0; }
.inner-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.inner-content ul { list-style: none; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.inner-content ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--navy); line-height: 1.6; }
.inner-content ul li::before { content: '▸'; color: var(--gold); font-size: 0.75rem; margin-top: 3px; min-width: 12px; }
.content-two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; margin-bottom: 24px; }
.sidebar-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--navy); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.15s, padding-left 0.15s; }
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul li a:hover { color: var(--gold); padding-left: 6px; }
.sidebar-card ul li a::before { content: '→'; color: var(--gold); font-size: 0.75rem; }
.cta-card { background: var(--navy); border-radius: 8px; padding: 28px; text-align: center; }
.cta-card h4 { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.6; margin-bottom: 20px; }
.cta-card a { background: var(--gold); color: var(--navy); padding: 12px 22px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 600; display: inline-block; transition: all 0.2s; }
.cta-card a:hover { background: var(--gold-light); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,31,60,0.1); }
.team-avatar { background: var(--navy); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.team-info { padding: 24px; }
.team-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info span { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.team-info p { font-size: 0.83rem; color: var(--gray); margin-top: 10px; line-height: 1.6; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { background: var(--navy); border-radius: 8px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.2s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(13,31,60,0.9)); padding: 20px 16px 12px; color: rgba(255,255,255,0.8); font-size: 0.82rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 56px 0 24px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-bar { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); margin-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner, .why-inner, .about-inner, .contact-grid, .footer-grid, .content-two-col { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .team-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--border); padding: 16px 24px; box-shadow: 0 8px 24px rgba(13,31,60,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a { padding: 12px 0; }
  .dropdown { display: none !important; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  .services-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .feature-box.gold-tint { grid-column: span 1; }
}
