/* ====== ROOT VARIABLES ====== */
:root {
  --white: #FFFFFF; --cream: #FFF9F5; --rose: #B76E79; --rose-light: #D4A5A5;
  --rose-gold: #E8C4B8; --gold: #C9A96E; --blush: #F5E6E0; --dark: #2C2C2C;
  --text: #4A4A4A; --text-light: #7A7A7A; --shadow: rgba(183,110,121,0.15);
  --font-heading: 'Playfair Display', serif; --font-body: 'Raleway', sans-serif;
  --font-script: 'Great Vibes', cursive;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:var(--font-body); color:var(--text); background:var(--white); overflow-x:hidden; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* ====== PRELOADER ====== */
#preloader { position:fixed; inset:0; background:var(--white); z-index:10000; display:flex; align-items:center; justify-content:center; transition:opacity .6s, visibility .6s; }
#preloader.hidden { opacity:0; visibility:hidden; }
.preloader-inner { text-align:center; }
.preloader-ring { width:60px; height:60px; border:3px solid var(--blush); border-top-color:var(--rose); border-radius:50%; animation:spin 1s linear infinite; margin:0 auto 20px; }
.preloader-text { font-family:var(--font-script); font-size:28px; color:var(--rose); }
@keyframes spin { to { transform:rotate(360deg); } }

/* ====== BUTTONS ====== */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:50px; font-family:var(--font-body); font-weight:600; font-size:15px; transition:all .3s; cursor:pointer; border:none; }
.btn-primary { background:linear-gradient(135deg, var(--rose), var(--rose-light)); color:var(--white); box-shadow:0 4px 20px var(--shadow); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 30px var(--shadow); }
.btn-outline { border:2px solid var(--white); color:var(--white); background:transparent; }
.btn-outline:hover { background:var(--white); color:var(--rose); }
.btn-large { padding:18px 40px; font-size:17px; }
.btn-full { width:100%; justify-content:center; }

/* ====== NAVBAR ====== */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:20px 0; transition:all .4s; }
.navbar.scrolled { background:rgba(255,255,255,0.97); padding:12px 0; box-shadow:0 2px 30px rgba(0,0,0,0.08); backdrop-filter:blur(10px); }
.nav-container { max-width:1200px; margin:0 auto; padding:0 20px; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; gap:8px; align-items:baseline; }
.logo-first { font-family:var(--font-script); font-size:28px; color:var(--rose); }
.logo-last { font-family:var(--font-heading); font-size:16px; letter-spacing:3px; text-transform:uppercase; color:var(--dark); }
.navbar:not(.scrolled) .logo-last { color:var(--white); }
.nav-menu { display:flex; list-style:none; gap:32px; }
.nav-link { font-size:14px; font-weight:500; letter-spacing:1px; text-transform:uppercase; color:var(--dark); position:relative; padding:4px 0; transition:color .3s; }
.navbar:not(.scrolled) .nav-link { color:rgba(255,255,255,0.9); }
.nav-link::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--rose); transition:width .3s; }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-link:hover, .nav-link.active { color:var(--rose); }
.nav-cta { padding:10px 24px; background:var(--rose); color:var(--white); border-radius:50px; font-size:13px; font-weight:600; letter-spacing:1px; text-transform:uppercase; transition:all .3s; }
.nav-cta:hover { background:var(--dark); transform:translateY(-2px); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:5px; }
.bar { width:25px; height:2.5px; background:var(--dark); border-radius:2px; transition:all .3s; }
.navbar:not(.scrolled) .bar { background:var(--white); }

/* ====== HERO ====== */
.hero-section { position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center; background-color:#2C2C2C; background-size:cover; background-position:center top; background-repeat:no-repeat; overflow:hidden; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.65) 100%); }
.about-image-frame img { width:100%; height:100%; object-fit:cover; }
.hero-particles { position:absolute; inset:0; overflow:hidden; }
.particle { position:absolute; width:4px; height:4px; background:var(--rose-gold); border-radius:50%; opacity:0; animation:floatUp 6s infinite; }
@keyframes floatUp { 0% { opacity:0; transform:translateY(100vh) scale(0); } 20% { opacity:1; } 100% { opacity:0; transform:translateY(-20vh) scale(1); } }
.hero-content { position:relative; z-index:2; text-align:center; padding:20px; }
.hero-greeting { font-family:var(--font-body); font-size:16px; letter-spacing:4px; text-transform:uppercase; color:var(--rose-gold); margin-bottom:16px; }
.hero-name { margin-bottom:20px; }
.name-line { display:block; }
.script-font { font-family:var(--font-script); font-size:clamp(48px, 10vw, 90px); color:var(--rose-gold); line-height:1.1; }
.serif-font { font-family:var(--font-heading); font-size:clamp(36px, 7vw, 64px); color:var(--white); letter-spacing:12px; text-transform:uppercase; font-weight:700; }
.hero-divider { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:20px; }
.divider-line { width:80px; height:1px; background:linear-gradient(90deg, transparent, var(--rose-gold)); }
.divider-icon { color:var(--rose-gold); font-size:20px; }
.hero-tagline { font-family:var(--font-body); font-size:18px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.85); margin-bottom:10px; font-weight:300; }
.hero-location { color:var(--rose-gold); font-size:14px; letter-spacing:2px; margin-bottom:30px; }
.hero-location i { margin-right:6px; }
.hero-cta { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.hero-scroll-indicator { position:absolute; bottom:30px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,0.5); font-size:11px; letter-spacing:3px; text-transform:uppercase; }
.scroll-line { width:1px; height:40px; background:linear-gradient(to bottom, var(--rose-gold), transparent); animation:scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.3; } 50% { opacity:1; } }

/* ====== STATS BAR ====== */
.stats-bar { background:linear-gradient(135deg, var(--rose), var(--rose-light)); padding:50px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; text-align:center; color:var(--white); }
.stat-number { font-family:var(--font-heading); font-size:48px; font-weight:700; }
.stat-suffix { font-family:var(--font-heading); font-size:30px; }
.stat-label { font-size:14px; letter-spacing:2px; text-transform:uppercase; opacity:.9; margin-top:4px; }

/* ====== SECTION HEADER ====== */
.section-header { text-align:center; margin-bottom:60px; }
.section-subtitle { font-family:var(--font-script); font-size:28px; color:var(--rose); margin-bottom:4px; }
.section-title { font-family:var(--font-heading); font-size:clamp(28px,4vw,42px); color:var(--dark); font-weight:700; }
.title-ornament { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:16px; }
.ornament-line { width:60px; height:1px; background:var(--rose-gold); }
.ornament-diamond { width:10px; height:10px; background:var(--rose); transform:rotate(45deg); }

/* ====== ABOUT ====== */
.about-section { padding:100px 0; background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-image-wrapper { position:relative; }
.about-image-frame { position:relative; border-radius:20px; overflow:hidden; aspect-ratio:3/4; background:var(--blush); border:3px solid var(--rose-gold); }
.about-image-placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; color:var(--rose-light); font-size:14px; gap:12px; }
.about-image-placeholder i { font-size:60px; }
.about-image-accent { position:absolute; bottom:-20px; right:-20px; width:200px; height:200px; border:3px solid var(--rose-gold); border-radius:20px; z-index:-1; }
.about-experience-badge { position:absolute; bottom:30px; left:-30px; background:linear-gradient(135deg,var(--rose),var(--rose-light)); color:var(--white); padding:20px; border-radius:16px; text-align:center; box-shadow:0 10px 30px var(--shadow); }
.badge-number { font-family:var(--font-heading); font-size:36px; font-weight:700; display:block; }
.badge-text { font-size:12px; letter-spacing:1px; text-transform:uppercase; }
.about-content .about-intro { font-family:var(--font-heading); font-size:24px; color:var(--dark); margin-bottom:20px; line-height:1.5; }
.highlight { color:var(--rose); }
.about-text { color:var(--text); line-height:1.8; margin-bottom:16px; font-size:15px; }
.about-highlights { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:30px 0; }
.highlight-item { display:flex; align-items:center; gap:12px; padding:12px 16px; background:var(--cream); border-radius:12px; font-size:14px; font-weight:500; color:var(--dark); transition:all .3s; }
.highlight-item:hover { background:var(--blush); transform:translateX(4px); }
.highlight-item i { color:var(--rose); font-size:18px; }
.about-cta { margin-top:10px; }
.about-quote { font-family:var(--font-heading); font-size:17px; color:var(--rose); border-left:3px solid var(--rose-gold); padding:12px 20px; margin-top:8px; background:var(--cream); border-radius:0 12px 12px 0; }

/* ====== SERVICES ====== */
.services-section { padding:100px 0; background:var(--cream); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; }
.service-card { background:var(--white); border-radius:20px; padding:40px 30px; text-align:center; position:relative; overflow:hidden; transition:all .4s; box-shadow:0 5px 20px rgba(0,0,0,0.04); }
.service-card:hover { transform:translateY(-10px); box-shadow:0 20px 40px var(--shadow); }
.service-icon-wrapper { margin-bottom:24px; }
.service-icon { width:70px; height:70px; border-radius:50%; background:var(--blush); display:flex; align-items:center; justify-content:center; margin:0 auto; font-size:28px; color:var(--rose); transition:all .4s; }
.service-card:hover .service-icon { background:var(--rose); color:var(--white); transform:scale(1.1); }
.service-title { font-family:var(--font-heading); font-size:20px; color:var(--dark); margin-bottom:12px; }
.service-desc { font-size:14px; line-height:1.7; color:var(--text-light); }
.service-hover-line { position:absolute; bottom:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,var(--rose),var(--rose-gold)); transform:scaleX(0); transition:transform .4s; }
.service-card:hover .service-hover-line { transform:scaleX(1); }

/* ====== WHY SECTION ====== */
.why-section { padding:100px 0; background:var(--white); }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; }
.why-card { padding:40px 30px; border-radius:20px; border:1px solid var(--blush); transition:all .4s; position:relative; }
.why-card:hover { border-color:var(--rose); box-shadow:0 10px 30px var(--shadow); transform:translateY(-6px); }
.why-number { font-family:var(--font-heading); font-size:48px; font-weight:700; color:var(--blush); margin-bottom:12px; transition:color .3s; }
.why-card:hover .why-number { color:var(--rose-gold); }
.why-card h4 { font-family:var(--font-heading); font-size:20px; color:var(--dark); margin-bottom:12px; }
.why-card p { font-size:14px; line-height:1.7; color:var(--text-light); }

/* ====== GALLERY ====== */
.gallery-section { padding:100px 0; background:var(--cream); }
.gallery-subtitle { color:var(--text-light); font-size:15px; margin-top:10px; }

/* Tabs */
.gallery-tabs { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:36px; }
.gallery-tab { padding:10px 22px; border-radius:50px; border:2px solid var(--rose-gold); background:transparent; color:var(--dark); font-family:var(--font-body); font-size:14px; font-weight:600; cursor:pointer; transition:all .3s; }
.gallery-tab:hover { background:var(--blush); border-color:var(--rose); }
.gallery-tab.active { background:linear-gradient(135deg, var(--rose), var(--rose-light)); color:var(--white); border-color:transparent; box-shadow:0 4px 15px var(--shadow); }

/* Tab Panels */
.gallery-tab-panel { display:none; }
.gallery-tab-panel.active { display:block; }

/* Grid */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:28px; }
/* Single image layout */
.gallery-single { max-width:700px; margin:0 auto 28px; }
.gallery-single .gallery-item { border-radius:20px; height:420px; }
.gallery-single .gallery-item img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.gallery-item { position:relative; border-radius:16px; overflow:hidden; cursor:pointer; min-height:200px; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-tall { grid-row:span 2; }
.gallery-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(183,110,121,0.75) 0%, transparent 60%); display:flex; flex-direction:column; align-items:center; justify-content:flex-end; padding:24px; opacity:0; transition:opacity .4s; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { color:var(--white); font-size:24px; margin-bottom:8px; }
.gallery-overlay span { color:var(--white); font-size:14px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }

/* Album Drive Link */
.album-link { display:inline-flex; align-items:center; gap:10px; margin-top:8px; padding:14px 30px; background:linear-gradient(135deg,#4285F4,#34A853); color:var(--white); border-radius:50px; font-weight:600; font-size:15px; transition:all .3s; box-shadow:0 4px 15px rgba(66,133,244,0.3); }
.album-link:hover { transform:translateY(-3px); box-shadow:0 8px 25px rgba(66,133,244,0.4); }
.album-link i:first-child { font-size:18px; }
.album-link i:last-child { font-size:13px; transition:transform .3s; }
.album-link:hover i:last-child { transform:translateX(4px); }

/* Lightbox */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:10000; display:none; align-items:center; justify-content:center; }
.lightbox.active { display:flex; }
.lightbox-img { max-width:85%; max-height:85vh; object-fit:contain; border-radius:12px; box-shadow:0 10px 50px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position:absolute; background:none; border:none; color:var(--white); font-size:32px; cursor:pointer; transition:all .3s; padding:12px; }
.lightbox-close { top:20px; right:30px; font-size:40px; }
.lightbox-close:hover { color:var(--rose); transform:scale(1.2); }
.lightbox-prev { left:20px; top:50%; transform:translateY(-50%); }
.lightbox-next { right:20px; top:50%; transform:translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { color:var(--rose-gold); transform:translateY(-50%) scale(1.2); }

/* ====== CTA BANNER ====== */
.cta-banner { position:relative; padding:100px 0; background:linear-gradient(135deg,#2C2C2C,#1a1a2e); text-align:center; overflow:hidden; }
.cta-content h2 { font-family:var(--font-heading); font-size:clamp(28px,4vw,42px); color:var(--white); margin-bottom:16px; }
.cta-content p { color:rgba(255,255,255,0.7); font-size:16px; margin-bottom:30px; max-width:500px; margin-left:auto; margin-right:auto; margin-bottom:30px; }

/* ====== CONTACT ====== */
.contact-section { padding:100px 0; background:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-info h3 { font-family:var(--font-heading); font-size:28px; color:var(--dark); margin-bottom:16px; line-height:1.4; }
.contact-info > p { color:var(--text-light); line-height:1.7; margin-bottom:30px; }
.contact-details { display:flex; flex-direction:column; gap:20px; }
.contact-item { display:flex; align-items:center; gap:16px; padding:16px; border-radius:16px; background:var(--cream); transition:all .3s; }
.contact-item:hover { background:var(--blush); transform:translateX(6px); }
.contact-icon { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg,var(--rose),var(--rose-light)); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:20px; flex-shrink:0; }
.contact-label { font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-light); display:block; margin-bottom:2px; }
.contact-value { font-weight:600; color:var(--dark); font-size:15px; transition:color .3s; }
a.contact-value:hover { color:var(--rose); }
.contact-form-wrapper { background:var(--cream); border-radius:24px; padding:40px; }
.contact-form h3 { font-family:var(--font-heading); font-size:24px; color:var(--dark); margin-bottom:24px; text-align:center; }
.form-group { position:relative; margin-bottom:20px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:16px 20px; border:2px solid var(--blush); border-radius:14px; font-family:var(--font-body); font-size:15px; background:var(--white); color:var(--dark); transition:border-color .3s; outline:none; resize:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--rose); }
.form-group label { position:absolute; top:-8px; left:16px; background:var(--white); padding:0 6px; font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--rose); opacity:0; transition:opacity .3s; }
.form-group input:focus ~ label, .form-group select:focus ~ label, .form-group textarea:focus ~ label { opacity:1; }
.date-label { opacity:1 !important; }

/* ====== FOOTER ====== */
.footer { background:var(--dark); color:rgba(255,255,255,0.7); padding:60px 0 0; }
.footer-content { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:30px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size:13px; margin-top:8px; color:rgba(255,255,255,0.5); }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:14px; transition:color .3s; }
.footer-links a:hover { color:var(--rose-gold); }
.footer-social { display:flex; gap:16px; }
.footer-social a { width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; font-size:18px; transition:all .3s; }
.footer-social a:hover { background:var(--rose); border-color:var(--rose); color:var(--white); transform:translateY(-3px); }
.footer-bottom { text-align:center; padding:20px 0; font-size:13px; color:rgba(255,255,255,0.4); }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float { position:fixed; bottom:30px; right:30px; width:60px; height:60px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:30px; color:var(--white); box-shadow:0 4px 20px rgba(37,211,102,0.4); z-index:999; transition:all .3s; animation:whatsappPulse 2s infinite; }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-tooltip { position:absolute; right:70px; background:var(--white); color:var(--dark); padding:8px 16px; border-radius:8px; font-size:13px; font-weight:600; white-space:nowrap; box-shadow:0 4px 15px rgba(0,0,0,0.1); opacity:0; pointer-events:none; transition:opacity .3s; }
.whatsapp-float:hover .whatsapp-tooltip { opacity:1; }
@keyframes whatsappPulse { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow:0 4px 30px rgba(37,211,102,0.7); } }

/* ====== BACK TO TOP ====== */
.back-to-top { position:fixed; bottom:30px; left:30px; width:46px; height:46px; background:var(--rose); color:var(--white); border:none; border-radius:50%; font-size:18px; cursor:pointer; opacity:0; visibility:hidden; transition:all .3s; box-shadow:0 4px 15px var(--shadow); z-index:999; }
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--dark); transform:translateY(-3px); }

/* ====== RESPONSIVE ====== */

/* ---- Small Desktop / Large Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .about-section, .services-section, .why-section, .gallery-section, .contact-section { padding: 80px 0; }
  .cta-banner { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---- Tablet (max-width: 768px) ---- */
@media (max-width: 768px) {
  /* --- Navigation: Slide-down hamburger menu --- */
  .hamburger { display: flex; z-index: 1001; padding: 10px; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .hamburger.active .bar { background: var(--dark) !important; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease, box-shadow 0.3s ease;
    box-shadow: none;
    padding: 0;
  }
  .nav-menu.active {
    max-height: 400px;
    padding: 16px 0 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu .nav-link {
    color: var(--dark) !important;
    font-size: 16px;
    display: block;
    padding: 14px 20px;
    min-height: 44px;
    line-height: 1;
  }
  .nav-menu .nav-link:hover { background: var(--cream); }
  .nav-cta { display: none; }

  /* --- Hero --- */
  .hero-greeting { font-size: 13px; letter-spacing: 3px; }
  .script-font { font-size: clamp(38px, 9vw, 70px); }
  .serif-font { font-size: clamp(26px, 6vw, 48px); letter-spacing: 6px; }
  .hero-tagline { font-size: 15px; letter-spacing: 2px; }
  .hero-location { font-size: 13px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta .btn { width: 220px; justify-content: center; min-height: 48px; }

  /* --- Stats --- */
  .stats-bar { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 40px; }
  .stat-suffix { font-size: 24px; }
  .stat-label { font-size: 12px; letter-spacing: 1.5px; }

  /* --- About --- */
  .about-section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrapper { max-width: 400px; margin: 0 auto; }
  .about-experience-badge {
    left: auto; right: 16px; bottom: 16px;
    padding: 14px; border-radius: 12px;
  }
  .badge-number { font-size: 28px; }
  .badge-text { font-size: 10px; }
  .about-image-accent { display: none; }
  .about-content .about-intro { font-size: clamp(18px, 3.5vw, 24px); }
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* --- Services --- */
  .services-section { padding: 60px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-card { padding: 30px 20px; }

  /* --- Why Section --- */
  .why-section { padding: 60px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-card { padding: 30px 20px; }

  /* --- Gallery --- */
  .gallery-section { padding: 60px 0; }
  .gallery-tabs { gap: 8px; }
  .gallery-tab { padding: 10px 16px; font-size: 13px; min-height: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-single { max-width: 100%; }
  .gallery-single .gallery-item { height: 340px; }

  /* --- Contact --- */
  .contact-section { padding: 60px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrapper { padding: 30px; }
  .contact-item { min-height: 44px; }

  /* --- CTA Banner --- */
  .cta-banner { padding: 70px 0; }
  .cta-content h2 { font-size: clamp(22px, 4vw, 36px); }
  .cta-content p { font-size: 14px; }

  /* --- Footer --- */
  .footer { padding: 40px 0 0; }
  .footer-content { flex-direction: column; text-align: center; gap: 24px; }
  .footer-links { justify-content: center; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-social a { min-width: 44px; min-height: 44px; }
}

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

  /* --- Navigation --- */
  .nav-logo { gap: 6px; }
  .logo-first { font-size: 24px; }
  .logo-last { font-size: 13px; letter-spacing: 2px; }
  .nav-container { padding: 0 16px; }

  /* --- Hero --- */
  .hero-content { padding: 16px; }
  .hero-greeting { font-size: 11px; letter-spacing: 2px; margin-bottom: 12px; }
  .script-font { font-size: clamp(32px, 11vw, 52px); }
  .serif-font { font-size: clamp(22px, 7vw, 36px); letter-spacing: 4px; }
  .hero-tagline { font-size: 12px; letter-spacing: 2px; }
  .hero-location { font-size: 12px; margin-bottom: 24px; }
  .hero-divider { gap: 10px; margin-bottom: 14px; }
  .divider-line { width: 50px; }
  .divider-icon { font-size: 16px; }
  .hero-cta .btn { width: 100%; max-width: 260px; padding: 14px 24px; font-size: 14px; min-height: 48px; }
  .hero-scroll-indicator { bottom: 16px; font-size: 10px; }
  .scroll-line { height: 28px; }

  /* --- Stats --- */
  .stats-bar { padding: 30px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 32px; }
  .stat-suffix { font-size: 20px; }
  .stat-label { font-size: 11px; letter-spacing: 1px; }

  /* --- Section Headers --- */
  .section-header { margin-bottom: 36px; }
  .section-subtitle { font-size: 22px; }
  .section-title { font-size: clamp(22px, 5vw, 32px); }
  .ornament-line { width: 40px; }

  /* --- About --- */
  .about-section { padding: 48px 0; }
  .about-grid { gap: 28px; }
  .about-image-wrapper { max-width: 320px; }
  .about-experience-badge {
    padding: 10px 14px; border-radius: 10px;
    right: 10px; bottom: 10px;
  }
  .badge-number { font-size: 22px; }
  .badge-text { font-size: 9px; letter-spacing: 0.5px; }
  .about-content .about-intro { font-size: clamp(16px, 4vw, 20px); margin-bottom: 14px; }
  .about-text { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
  .about-quote { font-size: 14px; padding: 10px 14px; }
  .about-highlights { grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
  .highlight-item { padding: 10px 14px; font-size: 13px; min-height: 44px; }

  /* --- Services --- */
  .services-section { padding: 48px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; border-radius: 16px; }
  .service-icon { width: 60px; height: 60px; font-size: 24px; }
  .service-title { font-size: 18px; }
  .service-desc { font-size: 13px; }

  /* --- Why Section --- */
  .why-section { padding: 48px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 20px; border-radius: 16px; }
  .why-number { font-size: 40px; }
  .why-card h4 { font-size: 18px; }
  .why-card p { font-size: 13px; }

  /* --- Gallery --- */
  .gallery-section { padding: 48px 0; }
  .gallery-subtitle { font-size: 13px; }
  .gallery-tabs { gap: 6px; }
  .gallery-tab { padding: 8px 12px; font-size: 12px; min-height: 44px; flex: 0 1 auto; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 1; }
  .gallery-single .gallery-item { height: 280px; border-radius: 14px; }
  .gallery-single .gallery-item img { border-radius: 14px; }
  .gallery-item { border-radius: 12px; min-height: 180px; }
  .album-link { padding: 12px 22px; font-size: 13px; gap: 8px; width: 100%; justify-content: center; min-height: 48px; }

  /* --- CTA Banner --- */
  .cta-banner { padding: 50px 0; }
  .cta-content h2 { font-size: clamp(20px, 5vw, 30px); }
  .cta-content p { font-size: 13px; margin-bottom: 24px; }
  .cta-content .btn-large { padding: 14px 28px; font-size: 15px; min-height: 48px; }

  /* --- Contact --- */
  .contact-section { padding: 48px 0; }
  .contact-grid { gap: 28px; }
  .contact-info h3 { font-size: clamp(20px, 5vw, 26px); }
  .contact-info > p { font-size: 14px; margin-bottom: 20px; }
  .contact-item { padding: 12px; }
  .contact-icon { width: 44px; height: 44px; font-size: 18px; }
  .contact-label { font-size: 11px; }
  .contact-value { font-size: 14px; }
  .contact-form-wrapper { padding: 20px 16px; border-radius: 18px; }
  .contact-form h3 { font-size: 20px; margin-bottom: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px 16px; font-size: 14px; border-radius: 12px; min-height: 48px; }
  .btn-full { min-height: 48px; font-size: 15px; }

  /* --- Footer --- */
  .footer { padding: 36px 0 0; }
  .footer-content { gap: 20px; padding-bottom: 28px; }
  .footer-brand p { font-size: 12px; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { padding: 16px 0; font-size: 12px; }

  /* --- WhatsApp Float --- */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 26px; }
  .whatsapp-tooltip { display: none; }

  /* --- Back to Top --- */
  .back-to-top { bottom: 20px; left: 16px; width: 42px; height: 42px; font-size: 16px; }

  /* --- Lightbox --- */
  .lightbox-img { max-width: 95%; max-height: 80vh; border-radius: 8px; }
  .lightbox-close { top: 12px; right: 12px; font-size: 32px; min-width: 44px; min-height: 44px; }
  .lightbox-prev { left: 8px; min-width: 44px; min-height: 44px; font-size: 24px; }
  .lightbox-next { right: 8px; min-width: 44px; min-height: 44px; font-size: 24px; }

  /* --- Buttons (global touch targets) --- */
  .btn { min-height: 44px; padding: 12px 24px; font-size: 14px; }
}

/* ---- Extra small (max-width: 360px) ---- */
@media (max-width: 360px) {
  .hero-cta .btn { max-width: 100%; padding: 12px 20px; font-size: 13px; }
  .script-font { font-size: clamp(28px, 12vw, 44px); }
  .serif-font { font-size: clamp(18px, 8vw, 30px); letter-spacing: 3px; }
  .stat-number { font-size: 28px; }
  .stat-suffix { font-size: 18px; }
  .gallery-tab { padding: 8px 10px; font-size: 11px; }
  .about-image-wrapper { max-width: 280px; }
  .about-experience-badge { padding: 8px 10px; }
  .badge-number { font-size: 18px; }
  .badge-text { font-size: 8px; }
  .service-card { padding: 24px 16px; }
  .album-link { padding: 10px 16px; font-size: 12px; }
}

/* ---- Prevent horizontal scroll globally ---- */
html, body { overflow-x: hidden; max-width: 100vw; }
