:root {
  --red: #8B1A1A;
  --red-deep: #5C0F0F;
  --gold: #C9992A;
  --gold-light: #F0D889;
  --cream: #FDF6EC;
  --cream-dark: #F3E8D2;
  --green: #1A3D2B;
  --white: #FFFFFF;
  --text: #2A1A0E;
  --text-muted: #6B4C2A;
  --shadow: 0 4px 24px rgba(80,20,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* SECTION */
.section { padding: 5rem 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--red-deep); text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.05rem; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--red); color: white; padding: 0.85rem 2rem; border-radius: 3px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 0.85rem; transition: background .2s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--red-deep); }
.btn-outline { display: inline-block; border: 2px solid white; color: white; padding: 0.85rem 2rem; border-radius: 3px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 0.85rem; transition: all .2s; }
.btn-outline:hover { background: white; color: var(--red-deep); }
.btn-outline-dark { display: inline-block; border: 2px solid var(--red); color: var(--red); padding: 0.85rem 2rem; border-radius: 3px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 0.85rem; transition: all .2s; }
.btn-outline-dark:hover { background: var(--red); color: white; }
.btn-gold { display: inline-block; background: var(--gold); color: var(--red-deep); padding: 0.85rem 2rem; border-radius: 3px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 0.85rem; transition: all .2s; }
.btn-gold:hover { background: var(--gold-light); }

/* NAV */
nav { background: var(--red-deep); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 62px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-light); letter-spacing: .03em; white-space: nowrap; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-size: 0.78rem; color: rgba(255,255,255,0.8); letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--red-deep); font-size: 0.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 0.5rem 1.2rem; border-radius: 2px; white-space: nowrap; transition: background .2s; }
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

/* HERO SHOWCASE */
.hero-showcase { position: relative; background: var(--red-deep); overflow: hidden; padding: 3rem 0 4rem; }
.hero-showcase-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(201,153,42,0.15) 0%, transparent 60%), radial-gradient(ellipse at bottom, rgba(26,61,43,0.2) 0%, transparent 50%); pointer-events: none; }
.hero-showcase-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-photo-frame { width: 340px; height: 340px; border-radius: 50%; overflow: hidden; border: 5px solid var(--gold); box-shadow: 0 0 40px rgba(201,153,42,0.35), 0 8px 32px rgba(0,0,0,0.4); margin-bottom: 2rem; animation: heroGlow 3s ease-in-out infinite alternate; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes heroGlow {
  from { box-shadow: 0 0 40px rgba(201,153,42,0.35), 0 8px 32px rgba(0,0,0,0.4); }
  to { box-shadow: 0 0 60px rgba(201,153,42,0.55), 0 8px 40px rgba(0,0,0,0.5); }
}
.hero-showcase-text { max-width: 640px; }
.hero-showcase-eyebrow { font-size: 0.85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; font-weight: 700; }
.hero-showcase-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.2rem); color: white; line-height: 1.15; margin-bottom: 1.2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-showcase-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.7; }
.hero-membership { margin: 1.5rem 0 2rem; }
.hero-membership-label { font-size: 0.75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; font-weight: 700; }
.hero-membership-logos { display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-membership-logos img { height: 50px; width: auto; object-fit: contain; border-radius: 6px; background: white; padding: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: transform .2s; }
.hero-membership-logos img:hover { transform: scale(1.1); }
.hero-showcase .hero-btns { justify-content: center; }

/* HERO (legacy) */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: var(--red-deep); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(60,5,5,0.95) 45%, rgba(60,5,5,0.3) 100%); z-index: 1; }
.hero-img { position: absolute; right: 0; top: 0; height: 100%; width: 55%; object-fit: cover; object-position: top center; }
.hero-content { position: relative; z-index: 2; padding: 3rem 2rem 3rem max(2rem, calc((100vw - 1100px)/2 + 1.5rem)); max-width: 580px; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); color: white; line-height: 1.15; margin-bottom: 1.2rem; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PROOF STRIP */
.proof-strip { background: var(--green); display: flex; justify-content: center; align-items: center; gap: 1.5rem; padding: 0.9rem 2rem; flex-wrap: wrap; }
.proof-item { color: var(--gold-light); font-size: 0.82rem; letter-spacing: .04em; }
.proof-divider { color: rgba(255,255,255,0.3); }

/* PAGE HERO */
.page-hero { background: var(--red-deep); text-align: center; padding: 4rem 2rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: white; margin-bottom: 0.5rem; }
.page-hero p { color: var(--gold-light); font-size: 1.05rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: white; border-radius: 6px; padding: 2rem; box-shadow: var(--shadow); transition: transform .2s; text-decoration: none; color: var(--text); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); }
.service-card.featured { border: 2px solid var(--gold); }
.service-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--red-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--red); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-link { color: var(--red); font-weight: 700; font-size: 0.85rem; letter-spacing: .04em; }

/* ABOUT */
.about { background: var(--cream-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-img-wrap img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; }
.about-text .about-eyebrow { font-size: 0.8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--red-deep); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.membership-logos { margin-top: 2rem; }
.logos-label { font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.logos-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.logos-row img { height: 50px; width: auto; object-fit: contain; border-radius: 4px; background: white; padding: 4px; }

/* REVIEWS */
.reviews-section { background: var(--cream-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.reviews-grid-4 { grid-template-columns: repeat(2, 1fr); }
.review-card { background: white; border-radius: 6px; padding: 1.5rem; box-shadow: var(--shadow); }
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--red-deep); }
.review-body { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.trust-card { background: white; border-radius: 6px; padding: 1.5rem; box-shadow: var(--shadow); text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-card h4 { font-family: 'Playfair Display', serif; color: var(--red); margin-bottom: 0.5rem; }
.trust-card p { color: var(--text-muted); font-size: 0.9rem; }
.memberships-section { text-align: center; margin-top: 1rem; }
.logos-row-lg { justify-content: center; gap: 2rem; }
.logo-badge { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.logo-badge img { height: 70px; width: auto; object-fit: contain; background: white; padding: 6px; border-radius: 6px; box-shadow: var(--shadow); }
.logo-badge span { font-size: 0.75rem; color: var(--text-muted); text-align: center; max-width: 100px; }

/* MASONRY */
.masonry-grid { columns: 3; column-gap: 1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.masonry-item img { width: 100%; display: block; transition: transform .3s; }
.masonry-item:hover img { transform: scale(1.03); }

/* CTA BANNER */
.cta-banner { background: var(--red-deep); text-align: center; padding: 5rem 2rem; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: white; margin-bottom: 1rem; line-height: 1.2; }
.cta-banner h2 em { color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; }

/* PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package-card { background: white; border-radius: 6px; padding: 2rem; box-shadow: var(--shadow); position: relative; }
.package-card.featured { border: 2px solid var(--gold); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--red-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.package-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--red); margin-bottom: 0.75rem; }
.package-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.package-card ul { list-style: none; margin-bottom: 1.5rem; }
.package-card ul li { color: var(--text-muted); font-size: 0.9rem; padding: 3px 0; }
.package-card ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* STEPS */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 1rem; }
.step { text-align: center; max-width: 220px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: white; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step h4 { font-family: 'Playfair Display', serif; color: var(--red-deep); margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow { font-size: 1.5rem; color: var(--gold); margin-top: 1.2rem; }

/* BOOKING FORM */
.booking-form { max-width: 700px; margin: 0 auto; background: white; padding: 2.5rem; border-radius: 8px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid #ddd; border-radius: 4px; padding: 0.65rem 0.85rem; font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--text); transition: border .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 100px; resize: vertical; }
.booking-form .btn-primary { width: 100%; margin-top: 0.5rem; font-size: 1rem; padding: 1rem; }

/* FAQ */
.faq-container { max-width: 700px; margin: 0 auto; }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.1rem 0; font-size: 1rem; font-family: 'Lato', sans-serif; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.faq-q span { font-size: 1.3rem; color: var(--red); transition: transform .2s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1rem; color: var(--text-muted); }
.faq-a.open { display: block; }

/* VIRTUAL */
.virtual-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.virtual-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--red-deep); margin-bottom: 1rem; }
.virtual-text p { color: var(--text-muted); margin-bottom: 1rem; }
.included-list { background: var(--cream-dark); border-radius: 6px; padding: 1.5rem; margin-top: 1.5rem; }
.included-list h4 { font-family: 'Playfair Display', serif; color: var(--red); margin-bottom: 0.75rem; }
.included-list ul { list-style: none; }
.included-list li { color: var(--text-muted); padding: 4px 0; font-size: 0.95rem; }
.virtual-img img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; }
.grandparent-note { background: var(--green); color: white; border-radius: 6px; padding: 1rem; margin-top: 1rem; font-size: 0.9rem; }

/* ELF SHOWCASE */
.elf-showcase { position: relative; background: var(--red-deep); overflow: hidden; padding: 3rem 0 4rem; }
.elf-showcase-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(201,153,42,0.15) 0%, transparent 60%), radial-gradient(ellipse at bottom, rgba(26,61,43,0.2) 0%, transparent 50%); pointer-events: none; }
.elf-showcase-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.elf-photo-frame { width: 340px; height: 340px; border-radius: 50%; overflow: hidden; border: 5px solid var(--gold); box-shadow: 0 0 40px rgba(201,153,42,0.35), 0 8px 32px rgba(0,0,0,0.4); margin-bottom: 2rem; animation: heroGlow 3s ease-in-out infinite alternate; }
.elf-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.elf-showcase-text { max-width: 640px; }
.elf-showcase .elf-badge { background: var(--gold); color: var(--red-deep); font-size: 0.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 1rem; display: inline-block; }
.elf-showcase-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.2rem); color: white; line-height: 1.15; margin-bottom: 1.2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.elf-showcase-lead { font-size: 1.15rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; line-height: 1.7; }
.elf-showcase-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.7; }
.elf-showcase-btns { margin-top: 1.5rem; }
.elf-showcase-btns .btn-primary { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ELF PAGE (legacy detail styles) */
.elf-details-row { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.elf-detail { display: flex; flex-direction: column; background: var(--cream-dark); padding: 0.75rem 1rem; border-radius: 5px; }
.elf-detail strong { font-size: 0.85rem; color: var(--red); }
.elf-detail span { font-size: 0.9rem; color: var(--text-muted); }
.elf-urgency { background: var(--red); color: white; border-radius: 6px; padding: 1rem; margin-top: 1rem; font-size: 0.9rem; }

/* CUTE SERVICES LIST */
.services-list-cute { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; max-width: 700px; margin: 0 auto 2rem; }
.service-list-item { display: flex; align-items: center; gap: 0.75rem; background: white; border-radius: 50px; padding: 0.85rem 1.6rem; box-shadow: var(--shadow); transition: transform .2s; position: relative; }
.service-list-item:hover { transform: translateY(-3px); }
.service-list-item.featured-item { border: 2px solid var(--gold); }
.service-list-icon { font-size: 1.5rem; flex-shrink: 0; }
.service-list-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--red-deep); font-weight: 700; }
.service-list-tag { background: var(--gold); color: var(--red-deep); font-size: 0.6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 12px; white-space: nowrap; }
.services-read-more { text-align: center; margin-top: 1rem; }

/* CORPORATE CLIENTS */
.corporate-clients-section { background: var(--cream-dark); }
.corporate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.corporate-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: transform .2s; }
.corporate-card:hover { transform: translateY(-4px); }
.corporate-card img { width: 100%; height: 180px; object-fit: cover; }
.corporate-card p { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--red-deep); font-weight: 700; padding: 0.75rem 0.5rem; }

/* FOOTER */
footer { background: var(--red-deep); color: rgba(255,255,255,0.8); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.75rem; }
footer h4 { color: var(--gold-light); font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: rgba(255,255,255,0.7); transition: color .2s; }
footer a:hover { color: var(--gold-light); }
footer p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-photo-frame { width: 260px; height: 260px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--red-deep); padding: 1rem 2rem; gap: 1rem; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .about-grid, .virtual-intro { grid-template-columns: 1fr; gap: 2rem; }
  .elf-photo-frame { width: 260px; height: 260px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .masonry-grid { columns: 2; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-img { width: 100%; opacity: 0.25; }
  .hero-overlay { background: rgba(60,5,5,0.8); }
  .corporate-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list-cute { gap: 0.8rem; }
  .hero-content { padding: 3rem 2rem; max-width: 100%; }
}

@media (max-width: 600px) {
  .hero-showcase { padding: 2rem 0 3rem; }
  .hero-photo-frame { width: 220px; height: 220px; border-width: 4px; }
  .hero-showcase-text h1 { font-size: 1.8rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.7rem; }
  .masonry-grid { columns: 1; }
  .trust-grid { grid-template-columns: 1fr; }
  .proof-strip { flex-direction: column; gap: 0.5rem; text-align: center; }
  .proof-divider { display: none; }
  .corporate-grid { grid-template-columns: 1fr; }
  .services-list-cute { flex-direction: column; align-items: center; }
  .page-hero { padding: 3rem 1.5rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.95rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner p { font-size: 0.95rem; }
  .elf-showcase { padding: 2rem 0 3rem; }
  .elf-photo-frame { width: 220px; height: 220px; border-width: 4px; }
  .elf-showcase-text h1 { font-size: 1.8rem; }
  .footer-bottom { font-size: 0.72rem; padding: 1rem 1rem; }
  .booking-form { padding: 1.5rem; }
  .about-text h2 { font-size: 1.6rem; }
  .logos-row { justify-content: center; }
  .btn-primary, .btn-outline, .btn-outline-dark, .btn-gold { padding: 0.85rem 1.5rem; font-size: 0.82rem; min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 380px) {
  .hero-photo-frame { width: 180px; height: 180px; }
  .hero-showcase-text h1 { font-size: 1.5rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-eyebrow { font-size: 0.7rem; }
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: 0.92rem; }
  .service-list-item { padding: 0.7rem 1.2rem; }
  .service-list-name { font-size: 0.95rem; }
  .elf-photo-frame { width: 180px; height: 180px; }
  .elf-showcase-text h1 { font-size: 1.5rem; }
}
