/* ── TOKENS ── */
:root {
  --green:    #5DC8A8;
  --green-dk: #34A882;
  --green-lt: #EAF7F2;
  --gold:     #F0D08A;
  --gold-lt:  #FBF5E8;
  --navy:     #2D4E6B;
  --yellow:   #F5C842;
  --white:    #FFFFFF;
  --cream:    #F8F7F2;
  --ink:      #1C1C24;
  --mid:      #56565F;
  --line:     #E6E3DC;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .20em; text-transform: uppercase; color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--green); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 13px 28px; border-radius: 6px; border: none; cursor: pointer; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--green-dk); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--green-dk); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 13px 28px; border-radius: 6px; border: 2px solid var(--green); cursor: pointer; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--green-lt); }
.btn-outline-white { display: inline-block; background: transparent; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 13px 28px; border-radius: 6px; border: 2px solid rgba(255,255,255,.55); transition: background .2s, border-color .2s; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-dk); transition: gap .2s; }
.link-arrow:hover { gap: 12px; }

/* ── TOP BAR ── */
.topbar { background: var(--green); color: #fff; font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; padding: 8px 40px; gap: 12px; }
.topbar a { color: #fff; font-weight: 600; opacity: .95; transition: opacity .2s; }
.topbar a:hover { opacity: .75; }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-info span { display: flex; align-items: center; gap: 6px; }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 2px solid var(--green); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 70px; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.nav-wordmark { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 24px; letter-spacing: .02em; color: var(--ink); line-height: 1; display: flex; flex-direction: column; }
.nav-wordmark .name { font-size: 26px; font-weight: 600; color: var(--green-dk); letter-spacing: .01em; }
.nav-wordmark .tag { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mid); font-family: 'DM Sans', sans-serif; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 6px; font-size: 13px; font-weight: 500; }
.nav-links a { color: var(--ink); padding: 6px 14px; border-radius: 6px; transition: background .18s, color .18s; white-space: nowrap; }
.nav-links a:hover { background: var(--green-lt); color: var(--green-dk); }
.nav-links a.active { background: var(--green-lt); color: var(--green-dk); font-weight: 600; }
.nav-cta { background: var(--green); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .05em; padding: 10px 20px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
.nav-cta:hover { background: var(--green-dk); }
.nav-app-btn { font-size: 12px; font-weight: 600; letter-spacing: .05em; color: var(--navy); border: 1.5px solid var(--navy); padding: 9px 16px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; transition: background .2s, color .2s; }
.nav-app-btn:hover { background: var(--navy); color: var(--white); }

/* ── MOBILE MENU ── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--green); z-index: 99; padding: 12px 0 20px; box-shadow: 0 8px 24px rgba(0,0,0,.10); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 14px 28px; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); transition: background .15s, color .15s; }
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { background: var(--green-lt); color: var(--green-dk); }
.mobile-menu-cta { display: block; margin: 16px 28px 0; text-align: center; background: var(--green); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 13px; border-radius: 6px; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(45,78,107,.60) 0%, rgba(45,78,107,.33) 55%, rgba(45,78,107,.06) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 110px 40px; width: 100%; }
.hero-text { max-width: 600px; }
.hero-text .eyebrow { margin-bottom: 16px; color: var(--gold); }
.hero-text h1 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(40px, 5.5vw, 70px); line-height: 1.08; color: var(--white); margin-bottom: 22px; }
.hero-text h1 em { font-style: italic; color: var(--gold); }
.hero-text p { font-size: 17px; color: rgba(255,255,255,.82); font-weight: 300; line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HEADER (inner pages, no photo) ── */
.page-header { background: var(--navy); padding: 64px 40px; }
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(32px, 4.5vw, 54px); color: var(--white); line-height: 1.15; }
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p { font-size: 16px; color: rgba(255,255,255,.70); font-weight: 300; line-height: 1.8; margin-top: 16px; max-width: 520px; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 28px 40px; }
.cta-band-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; text-align: center; }
.cta-band-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px, 2.5vw, 27px); color: var(--white); font-weight: 400; line-height: 1.3; }
.cta-band-text strong { color: var(--gold); font-weight: 600; font-style: italic; }
.cta-band-btn { background: var(--green); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 14px 32px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; transition: background .2s, transform .15s; display: inline-block; }
.cta-band-btn:hover { background: var(--green-dk); transform: translateY(-1px); }

/* ── TRUST BAND ── */
.trustband { background: var(--white); border-bottom: 1px solid var(--line); display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 18px 32px; font-size: 13px; color: var(--mid); border-right: 1px solid var(--line); font-weight: 400; }
.trust-item:last-child { border-right: none; }
.trust-item b { color: var(--ink); font-weight: 600; }

/* ── INTRO ── */
.intro { max-width: 1100px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-photo { width: 100%; height: 420px; object-fit: cover; border-radius: 14px; display: block; }
.intro-text .eyebrow { margin-bottom: 16px; }
.intro-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(28px, 4vw, 44px); line-height: 1.2; margin-bottom: 20px; color: var(--ink); }
.intro-text p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 14px; }

/* ── SECTION WRAPPERS ── */
.section { padding: 80px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(28px, 4vw, 42px); color: var(--ink); line-height: 1.2; }
.section-header p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.8; margin-top: 12px; max-width: 560px; }
.section-lt { background: var(--green-lt); border-top: 1px solid #C8EDE0; border-bottom: 1px solid #C8EDE0; }
.section-cream { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ── SERVICES CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 6px 24px rgba(52,168,130,.10); transform: translateY(-2px); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 24px; }
.service-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 21px; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.service-card p { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.75; }

/* ── GIFT SHOP ── */
.giftshop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.giftshop-text .eyebrow { margin-bottom: 14px; }
.giftshop-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(26px, 3.5vw, 40px); color: var(--ink); line-height: 1.2; margin-bottom: 16px; }
.giftshop-text p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 12px; }
.giftshop-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.giftshop-photos img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; display: block; }
.giftshop-photos img:first-child { grid-column: span 2; height: 220px; }

/* ── ABOUT / OWNERS ── */
.owners-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.owners-photo { width: 100%; height: 580px; object-fit: cover; object-position: center 32%; border-radius: 12px; display: block; }
.owners-text .eyebrow { margin-bottom: 14px; }
.owners-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(26px, 3.5vw, 40px); color: var(--ink); line-height: 1.2; margin-bottom: 20px; }
.owners-text p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 14px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.team-photo { width: 100%; height: 300px; object-fit: cover; object-position: center top; display: block; }
.team-card-body { padding: 24px; }
.team-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; letter-spacing: .10em; text-transform: uppercase; color: var(--green-dk); margin-bottom: 10px; display: block; }
.team-card p { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.75; }

/* ── APP BANNER ── */
.app-banner { background: var(--navy); padding: 64px 40px; }
.app-banner-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.app-banner-text { color: var(--white); }
.app-banner-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; margin-bottom: 10px; line-height: 1.2; }
.app-banner-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 440px; }
.app-buttons { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.app-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 12px 20px; color: var(--white); transition: background .2s; white-space: nowrap; }
.app-btn:hover { background: rgba(255,255,255,.18); }
.app-btn-label span:first-child { font-size: 10px; font-weight: 400; opacity: .75; letter-spacing: .04em; text-transform: uppercase; display: block; }
.app-btn-label span:last-child { font-size: 15px; font-weight: 600; display: block; }

/* ── TESTIMONIAL ── */
.testimonial-wrap { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 40px; }
.testimonial-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.stars { color: var(--yellow); letter-spacing: 3px; font-size: 18px; margin-bottom: 20px; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--green); line-height: .4; margin-bottom: 24px; }
.testimonial-inner blockquote { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(20px, 3vw, 30px); line-height: 1.55; color: var(--ink); font-style: italic; margin-bottom: 28px; }
.testimonial-attr { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--mid); }
.testimonial-attr .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); display: inline-block; }

/* ── REVIEWS CAROUSEL ── */
.reviews-section { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.reviews-header { max-width: 1100px; margin: 0 auto 40px; padding: 0 40px; text-align: center; }
.reviews-header .eyebrow { margin-bottom: 12px; }
.reviews-header h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(28px, 4vw, 42px); color: var(--ink); line-height: 1.2; }
.reviews-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; max-width: 1180px; margin: 0 auto; padding: 8px 40px; scrollbar-width: none; -ms-overflow-style: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 370px; scroll-snap-align: start; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; box-shadow: 0 4px 20px rgba(28,28,36,.05); display: flex; flex-direction: column; }
.review-card .stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; margin-bottom: 14px; }
.review-card blockquote { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); margin-bottom: 20px; flex: 1 0 auto; }
.review-attr { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-attr span { color: var(--green-dk); font-weight: 500; }
.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.reviews-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, color .2s; }
.reviews-arrow:hover { background: var(--green); border-color: var(--green); color: #fff; }
@media (max-width: 900px) { .reviews-section { padding: 60px 0; } }
@media (max-width: 640px) {
  .reviews-track { padding: 8px 20px; scroll-snap-type: x mandatory; }
  .review-card { flex: 0 0 100%; }
  .reviews-header { padding: 0 20px; }
}

/* ── REVIEW CTA ── */
.reviews-cta { display: block; text-align: center; margin-top: 22px; }
.reviews-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--green-dk); border: 2px solid var(--green); border-radius: 6px; padding: 12px 24px; transition: background .2s, color .2s; }
.reviews-cta a:hover { background: var(--green); color: #fff; }

/* ── TRANSFER FORM ── */
.transfer-section { background: var(--green-lt); border-top: 1px solid #C8EDE0; padding: 80px 40px; }
.transfer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.transfer-intro .eyebrow { margin-bottom: 16px; }
.transfer-intro h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(26px, 3.5vw, 40px); color: var(--ink); line-height: 1.2; margin-bottom: 18px; }
.transfer-intro p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.8; margin-bottom: 14px; }
.transfer-options { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.transfer-option { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border: 1px solid #C8EDE0; border-radius: 10px; padding: 16px 18px; }
.transfer-option-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--green-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.transfer-option-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.transfer-option-text span { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.6; }
.transfer-option-text a { color: var(--green-dk); font-weight: 500; }
.transfer-form-wrap { background: var(--white); border-radius: 14px; padding: 40px; border: 1px solid #C8EDE0; box-shadow: 0 4px 24px rgba(52,168,130,.08); }
.transfer-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 26px; color: var(--ink); margin-bottom: 4px; }
.form-sub { font-size: 13px; color: var(--mid); font-weight: 300; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--ink); }
.form-group input, .form-group textarea { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 10px 13px; width: 100%; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(93,200,168,.15); background: var(--white); }
.form-submit { width: 100%; margin-top: 6px; padding: 14px; font-size: 14px; }
.form-note { font-size: 11px; color: var(--mid); font-weight: 300; text-align: center; margin-top: 10px; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 36px 20px; }
.form-success .check { width: 54px; height: 54px; background: var(--green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.form-success a { color: var(--green-dk); font-weight: 500; }

/* ── VISIT / MAP ── */
.visit-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.map-frame { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 4px 20px rgba(28,28,36,.06); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: none; }
.visit-details { display: flex; flex-direction: column; gap: 20px; }
.visit-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px; }
.visit-card-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.visit-card-head svg { color: var(--green); flex-shrink: 0; }
.visit-card-head strong { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.visit-card p, .visit-card a { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; display: block; }
.visit-card a { color: var(--green-dk); font-weight: 500; transition: color .2s; }
.visit-card a:hover { color: var(--green); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--mid); font-weight: 300; padding: 5px 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--ink); }
.hours-row.closed span:last-child { font-weight: 300; color: var(--mid); }

/* ── MAPS MODAL ── */
.maps-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1000; align-items: center; justify-content: center; }
.maps-overlay.open { display: flex; }
.maps-modal { background: #fff; border-radius: 16px; padding: 32px 28px; max-width: 320px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,.25); text-align: center; }
.maps-modal h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.maps-modal p { font-size: 13px; color: var(--mid); margin-bottom: 24px; line-height: 1.5; }
.maps-btns { display: flex; flex-direction: column; gap: 10px; }
.maps-btn { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: opacity .15s; }
.maps-btn:hover { opacity: .85; }
.maps-btn.google { background: #4285F4; color: #fff; }
.maps-btn.apple { background: var(--ink); color: #fff; }
.maps-btn.waze { background: #33CCFF; color: #000; }
.maps-close { margin-top: 16px; background: none; border: none; font-size: 13px; color: var(--mid); cursor: pointer; letter-spacing: .04em; }
.maps-close:hover { color: var(--ink); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: #fff; padding: 60px 40px 28px; }
.footer-top { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-brand .fname { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 26px; color: var(--green); display: block; margin-bottom: 2px; }
.footer-brand .ftag { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 500; display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.50); line-height: 1.75; max-width: 250px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--green); color: var(--green); }
.footer-col h5 { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.40); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.60); margin-bottom: 10px; line-height: 1.4; }
.footer-col ul li a { color: rgba(255,255,255,.60); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.f-hours-row { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 300; color: rgba(255,255,255,.60); margin-bottom: 8px; }
.f-hours-row span:last-child { color: rgba(255,255,255,.35); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 6px; }
.footer-bottom a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom a:hover { color: var(--green); }

/* ── SCROLL FADE ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .10s; }
.fade-up.d2 { transition-delay: .20s; }
.fade-up.d3 { transition-delay: .30s; }
.fade-up.d4 { transition-delay: .40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-app-btn { display: none; }
}
@media (max-width: 1000px) {
  .transfer-inner { grid-template-columns: 1fr; }
  .owners-inner { grid-template-columns: 1fr; }
  .giftshop-inner { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar { padding: 9px 20px; font-size: 12px; }
  .topbar-info { gap: 12px; }
  .topbar-info span:first-child { display: none; }
  .nav { padding: 0 20px; }
  .nav-links li:nth-child(n+4) { display: none; }
  .hero { min-height: 460px; }
  .hero-inner { padding: 80px 20px; }
  .page-header { padding: 48px 20px; }
  .cta-band { padding: 22px 20px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .section { padding: 60px 20px; }
  .intro { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
  .intro-photo { height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .app-banner { padding: 48px 20px; }
  .app-banner-inner { flex-direction: column; text-align: center; }
  .app-buttons { justify-content: center; }
  .testimonial-wrap { padding: 60px 20px; }
  .transfer-section { padding: 60px 20px; }
  .footer { padding: 44px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trustband { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-app-btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .giftshop-photos { grid-template-columns: 1fr; }
  .giftshop-photos img:first-child { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .transfer-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .owners-photo { height: 340px; }

  /* Compact mobile topbar — drop the long wrapping address, keep phone + transfer */
  .topbar { padding: 7px 16px; font-size: 11px; gap: 8px; }
  .topbar-info { gap: 0; }
  .topbar-info span:first-child { display: none; }

  /* App-style hero: tighter, CTA stays above the fold, full-width buttons */
  .hero { min-height: auto; }
  .hero-overlay { background: rgba(22,46,68,.72); }
  .hero-inner { padding: 40px 22px 44px; }
  .hero-text h1 { font-size: 34px; margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
  .hero-text .eyebrow { margin-bottom: 12px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
  .hero-text p { font-size: 15px; line-height: 1.7; margin-bottom: 26px; font-weight: 400; color: rgba(255,255,255,.96); text-shadow: 0 1px 4px rgba(0,0,0,.3); }
  .hero-actions { width: 100%; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-white { width: 100%; text-align: center; padding: 15px 24px; }

  /* CTA band: a touch tighter */
  .cta-band-text { font-size: 20px; }
  .cta-band-btn { width: 100%; max-width: 320px; text-align: center; }

  /* Forms: 16px inputs prevent iOS auto-zoom on focus */
  .form-group input, .form-group textarea { font-size: 16px; }

  /* Tighter vertical rhythm so phones aren't endless scrolling */
  .section { padding: 52px 20px; }
  .transfer-section { padding: 52px 20px; }
  .app-banner { padding: 46px 20px; }
  .reviews-section { padding: 52px 0; }
  .intro { padding: 48px 20px; gap: 28px; }

  /* Inner-page navy headers: less bulky on phones */
  .page-header { padding: 36px 20px; }
  .page-header h1 { font-size: 30px; }
  .page-header p { font-size: 15px; margin-top: 12px; }

  /* Section headings step down slightly */
  .section-header h2, .owners-text h2, .giftshop-text h2, .transfer-intro h2 { font-size: 28px; }
  .reviews-header h2 { font-size: 28px; }

  /* Map a touch shorter on phones */
  .map-frame iframe { height: 300px; }

  /* Gift shop photos a bit shorter stacked */
  .giftshop-photos img, .giftshop-photos img:first-child { height: 200px; }
}
