/* =============================================
   QUEEN TAILORS — Premium Boutique
   Clean · Professional · Fully Responsive
   v3.0 — All Devices
   ============================================= */

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

/* =============================================
   1. DESIGN TOKENS
   ============================================= */
:root {
  /* Colors */
  --rose:        #7A4E57;
  --rose-light:  #9b6672;
  --rose-dark:   #5c3940;
  --rose-soft:   #f2eaec;
  --cream:       #F8F4EF;
  --cream-dark:  #ede3d4;
  --beige:       #D8C3A5;
  --beige-mid:   #c9ad8a;
  --charcoal:    #252525;
  --body-text:   #5a5a5a;
  --muted:       #8f8f8f;
  --white:       #FFFDFB;
  --gold:        #c9a96e;

  /* Shadows */
  --s1: 0 2px 10px rgba(0,0,0,0.06);
  --s2: 0 6px 24px rgba(122,78,87,0.10);
  --s3: 0 14px 44px rgba(122,78,87,0.14);
  --s4: 0 24px 64px rgba(122,78,87,0.18);

  /* Motion */
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --t1: 0.22s;
  --t2: 0.4s;
  --t3: 0.7s;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* Radius */
  --r1: 4px;
  --r2: 10px;
  --r3: 16px;
  --r4: 24px;

  /* Layout */
  --nav-h:   72px;
  --max-w:   1200px;
  --pad-x:   clamp(20px, 5%, 80px);
  --sec-y:   clamp(60px, 8vw, 100px);
}

/* =============================================
   2. RESET
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

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

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* =============================================
   3. LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #0d0a09;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.loader-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.loader-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201,169,110,0.4));
  animation: floatY 2.2s ease-in-out infinite;
}

.loader-line {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), #ffd700, transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

@keyframes shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

/* =============================================
   4. NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  inset-block-start: 0;
  left: 0; right: 0;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,253,251,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--t2) var(--ease),
              box-shadow var(--t2) var(--ease);
}

.navbar.scrolled {
  border-color: var(--cream-dark);
  box-shadow: var(--s1);
}

/* Logo */
.nav-logo a { display: flex; align-items: center; }

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--t1);
}

.logo-img:hover { opacity: 0.8; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--t2) var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA pill */
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: var(--r1) !important;
  box-shadow: 0 3px 12px rgba(122,78,87,0.22) !important;
  letter-spacing: 1.2px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 18px rgba(122,78,87,0.32) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: none;
  border: none;
  border-radius: var(--r1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--rose);
  border-radius: 2px;
  transition: transform var(--t2) var(--ease), opacity var(--t2);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 16px var(--pad-x) 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.42s var(--ease), opacity 0.32s ease;
  z-index: 999;
  box-shadow: var(--s3);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--t1), padding-left var(--t1);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--rose); padding-left: 4px; }

/* =============================================
   5. LAYOUT HELPERS
   ============================================= */
.section { padding: var(--sec-y) var(--pad-x); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

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

/* Section labels / titles / subtitle */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-title em { font-style: italic; color: var(--rose); }

.section-sub {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.85;
  max-width: 540px;
}

.section-sub.center { margin: 0 auto; }

.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--beige-mid));
  border-radius: 2px;
  margin: 16px 0 28px;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* =============================================
   6. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--r1);
  border: none;
  cursor: pointer;
  transition: transform var(--t1), box-shadow var(--t1), background var(--t2);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(122,78,87,0.28);
}

.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 8px 24px rgba(122,78,87,0.36);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(122,78,87,0.28);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

/* =============================================
   7. SCROLL ANIMATIONS
   ============================================= */
.fade-up   { opacity:0; transform:translateY(28px); transition:opacity var(--t3) ease,transform var(--t3) ease; }
.fade-left { opacity:0; transform:translateX(-28px); transition:opacity var(--t3) ease,transform var(--t3) ease; }
.fade-right{ opacity:0; transform:translateX(28px);  transition:opacity var(--t3) ease,transform var(--t3) ease; }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible { opacity:1; transform:none; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* =============================================
   8. HERO — HOME
   ============================================= */
.hero{
    min-height: 90vh;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    padding-top: var(--nav-h);
    padding-bottom: 0;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

/* subtle right wash */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(216,195,165,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(122,78,87,0.05) 0%, transparent 45%);
  pointer-events: none;
}

/* ── Left content ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
 padding:
      20px
      20px
      20px
      clamp(40px,4vw,70px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(216,195,165,0.28);
  border: 1px solid rgba(216,195,165,0.5);
  border-radius: 99px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 26px;
  width: fit-content;
}

.hero-badge-dot{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:sandybrown;
    color: #FFFDFB;
    border-radius:50%;
    font-size:18px;
    font-weight:800;
    flex-shrink:0;
}

.hero-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem,5vw,5rem);
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1 ;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.hero-title em { font-style: italic; color: var(--rose); }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--muted);
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.96rem;
  color: var(--body-text);
  line-height: 1.92;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--beige);
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Right image ── */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  z-index: 2;
}

.hero-image img{
    width:100%;
    max-width:1000px;
    height:auto;
    object-fit:contain;
    border-radius:32px;
    box-shadow:
      0 20px 50px rgba(0,0,0,0.12),
      0 10px 20px rgba(0,0,0,0.08);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,rgba(122,78,87,0.06),transparent 70%);
  filter: blur(30px);
  z-index: 1;
}

/* Floating card */
.hero-float-card {
  position: absolute;
  bottom: 44px;
  left: -10px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r3);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  box-shadow: var(--s3);
  border: 1px solid rgba(216,195,165,0.35);
  z-index: 5;
  animation: cardFloat 3.5s ease-in-out infinite;
}

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

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--charcoal);
  font-weight: 600;
}

.float-text span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
}

/* hide decorative svg by default */
.hero-pattern { display: none; }

/* =============================================
   9. ABOUT PREVIEW
   ============================================= */
.about-preview { background: var(--white); }

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Image stack */
.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r3);
  box-shadow: var(--s3);
}

.about-img-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--r2);
  border: 6px solid var(--white);
  box-shadow: var(--s2);
}

.about-img-tag {
  position: absolute;
  top: 22px;
  left: -18px;
  background: var(--rose);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r1);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--s2);
}

.about-img-tag small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 400;
  margin-top: 3px;
}

/* Features grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: var(--cream);
  border-radius: var(--r2);
  border-left: 3px solid var(--rose);
  transition: transform var(--t1);
}

.feature-pill:hover { transform: translateX(4px); }

.feature-pill span:first-child {
  font-size: 0.82rem;
  color: var(--rose);
  flex-shrink: 0;
}

.feature-pill span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

/* =============================================
   10. SERVICES PREVIEW
   ============================================= */
.services-preview { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r3);
  padding: 32px 26px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform var(--t2) var(--ease),
              box-shadow var(--t2) var(--ease),
              border-color var(--t2);
}

/* animated bottom bar */
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--beige-mid));
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 3px 3px;
  transition: transform var(--t2) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3);
  border-color: var(--cream-dark);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: background var(--t2), transform var(--t2);
}

.service-card:hover .service-icon {
  background: var(--rose-soft);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 9px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.82;
}

/* =============================================
   11. CTA SECTION
   ============================================= */
.cta-section {
  background: var(--rose);
  padding: var(--sec-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}

/* Soft shapes */
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 5%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

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

.cta-inner .section-label { color: rgba(255,255,255,0.55); }
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-sub   { color: rgba(255,255,255,0.72); margin: 0 auto; }
.cta-inner .divider       { background: rgba(255,255,255,0.24); margin: 16px auto 24px; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: background var(--t1), transform var(--t1), box-shadow var(--t1);
  white-space: nowrap;
}

.cta-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* =============================================
   12. FOOTER
   ============================================= */
footer {
  background: linear-gradient(140deg, #4a2e33 0%, #2d1a1e 50%, #1a0f12 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(48px,6vw,80px) var(--pad-x) 0;
}

/* top glow line */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

/* Brand column */
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-brand-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.footer-brand-text span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.929);
  margin-top: 4px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.85;
  max-width: 270px;
}

/* Column headings */
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* Links */
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.879);
  transition: color var(--t1), padding-left var(--t1);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--beige);
  padding-left: 5px;
}

/* Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.879);
  line-height: 1.65;
  transition: color var(--t1);
}

.footer-contact-item a:hover { color: var(--beige); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:1rem;
  transition:all .3s ease;
}

.footer-social a:hover{
  background:var(--rose);
  transform:translateY(-3px);
  color:#fff;
}

/* =============================================
   13. FLOATING WIDGETS
   ============================================= */
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 900;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform var(--t1), box-shadow var(--t1);
  text-decoration: none;
  animation: waPulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.25); }
  60%     { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 1rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--t2), visibility var(--t2), transform var(--t2), background var(--t1);
  box-shadow: var(--s2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--rose-dark);
  transform: translateY(-3px);
}

/* =============================================
   14. PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: clamp(110px, 16vw, 150px) var(--pad-x) clamp(48px, 7vw, 72px);
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 75%, rgba(122,78,87,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(216,195,165,0.1)  0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: italic; color: var(--rose); }

.page-hero p {
  font-size: 0.96rem;
  color: #777;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--rose); transition: opacity var(--t1); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: var(--beige-mid); }

/* =============================================
   15. ABOUT PAGE
   ============================================= */
.about-story { background: var(--white); }

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Stacked image grid */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-grid .img-tall {
  grid-row: 1 / 3;
  height: 420px;
}

.about-img-grid .img-short { height: 200px; }

.about-img-grid img {
  width: 100%;
  border-radius: var(--r3);
  object-fit: cover;
  box-shadow: var(--s1);
}

.about-story-text p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.92;
  margin-bottom: 18px;
}

/* Values */
.about-values { background: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--r3);
  border: 1px solid transparent;
  transition: border-color var(--t2), box-shadow var(--t2), transform var(--t2);
}

.value-card:hover {
  border-color: var(--cream-dark);
  box-shadow: var(--s2);
  transform: translateY(-4px);
}

.value-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background var(--t2);
}

.value-card:hover .value-icon { background: var(--rose-soft); }

.value-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.value-card p { font-size: 0.84rem; color: var(--body-text); line-height: 1.72; }

/* Why Choose Us */
.why-choose { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
  border-radius: var(--r3);
  position: relative;
  overflow: hidden;
  transition: transform var(--t2), box-shadow var(--t2), background var(--t2);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--beige-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2) var(--ease);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--s3);
  transform: translateY(-6px);
}

.why-card:hover::before { transform: scaleX(1); }

.why-number {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 14px;
  transition: color var(--t2);
  letter-spacing: -1px;
}

.why-card:hover .why-number { color: var(--rose); }

.why-card h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--charcoal); margin-bottom: 9px; }
.why-card p  { font-size: 0.84rem; color: var(--body-text); line-height: 1.8; }

/* Testimonials */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r3);
  padding: 28px 24px;
  border: 1px solid transparent;
  position: relative;
  transition: border-color var(--t2), box-shadow var(--t2), transform var(--t2);
}

/* decorative quote */
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 12px; right: 18px;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--cream-dark);
  line-height: 1;
  pointer-events: none;
  transition: color var(--t2);
}

.testimonial-card:hover::after { color: var(--rose-soft); }

.testimonial-card:hover {
  border-color: var(--cream-dark);
  box-shadow: var(--s3);
  transform: translateY(-4px);
}

.stars { color: #e8a838; font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 13px; }

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-author { display: flex; align-items: center; gap: 11px; }

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--charcoal); }
.author-info span   { font-size: 0.74rem; color: #aaa; letter-spacing: 0.3px; }

/* Mission Vision */
.mission-vision {
  background: var(--rose-dark);
  padding: 60px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 45%),
              radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.mv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mv-card {
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r3);
  text-align: center;
  background: rgba(255,255,255,0.03);
  transition: background var(--t2), border-color var(--t2), transform var(--t2);
}

.mv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.mv-card .icon { font-size: 2.2rem; display: block; margin-bottom: 18px; }

.mv-card h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.mv-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.9; }

/* =============================================
   16. SERVICES PAGE
   ============================================= */
.services-full { background: var(--white); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--t2), box-shadow var(--t2), border-color var(--t2);
}

.service-full-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s4);
  border-color: transparent;
}

.service-img-wrap { overflow: hidden; position: relative; }

.service-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.55s var(--ease);
}

.service-full-card:hover .service-img { transform: scale(1.06); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(92,57,64,0.3) 100%);
  opacity: 0;
  transition: opacity var(--t2);
}

.service-full-card:hover .service-img-overlay { opacity: 1; }

.service-full-body { padding: 24px; }

.service-tag {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--rose);
  padding: 3px 12px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-full-card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--charcoal); margin-bottom: 9px; line-height: 1.25; }
.service-full-card p  { font-size: 0.86rem; color: var(--body-text); line-height: 1.82; margin-bottom: 16px; }

.service-features { display: flex; flex-direction: column; gap: 6px; }

.service-features li {
  font-size: 0.8rem;
  color: var(--body-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  color: var(--rose);
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Process */
.process-section { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 68px; height: 68px;
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--rose);
  transition: background var(--t2), border-color var(--t2), color var(--t2), transform var(--t2);
}

.process-step:hover .step-num {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: scale(1.06);
}

.process-step h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; color: var(--body-text); line-height: 1.72; }

/* =============================================
   17. GALLERY PAGE
   ============================================= */
.gallery-section { background: var(--white); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 44px 0 40px;
}

.filter-btn {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  color: var(--body-text);
  padding: 9px 22px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t2), border-color var(--t2), color var(--t2), box-shadow var(--t2);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 4px 14px rgba(122,78,87,0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

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


.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.tall { grid-row: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  transition: transform 0.52s var(--ease);
}

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

.gallery-placeholder .gal-icon  { font-size: 2.4rem; }
.gallery-placeholder .gal-label { font-family: var(--serif); font-size: 0.94rem; color: var(--rose); font-style: italic; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(50,24,30,0.9) 100%);
  opacity: 0;
  transition: opacity var(--t2);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text { transform: translateY(10px); transition: transform var(--t2); }
.gallery-item:hover .gallery-overlay-text { transform: translateY(0); }

.gallery-overlay-text h4  { font-family: var(--serif); font-size: 1.05rem; color: #fff; font-weight: 600; margin-bottom: 3px; }
.gallery-overlay-text span{ font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.8px; }

/* =============================================
   18. RESPONSIVE — ALL BREAKPOINTS
   ============================================= */

/* 1280px — Large Laptops */
@media (max-width: 1280px) {
  :root { --max-w: 1080px; }
  .hero { grid-template-columns: 58% 42%; }
  .hero-image img { max-width: 320px; }
}

/* 1024px — Tablets Landscape / Small Laptops */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 100px var(--pad-x) 48px;
    text-align: center;
    align-items: center;
  }

  .hero-badge     { margin-left: auto; margin-right: auto; }
  .hero-desc      { max-width: 580px; }
  .hero-stats     { justify-content: center; }
  .stat-item      { text-align: center; }

  .hero-image {
    padding: 0 var(--pad-x) 48px;
    justify-content: center;
  }

  .hero-image img { max-width: 380px; }

  .hero-float-card {
    position: relative;
    bottom: auto; left: auto;
    margin: -20px auto 0;
    width: fit-content;
  }

  /* 2-col grids */
  .about-preview-inner  { grid-template-columns: 1fr; gap: 48px; }
  .about-story-inner    { grid-template-columns: 1fr; gap: 48px; }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .services-full-grid   { grid-template-columns: repeat(2,1fr); }
  .why-grid             { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2,1fr); }
  .mv-inner             { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: repeat(2,1fr); }
  .process-steps::before{ display: none; }
  .values-grid          { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid          { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide     { grid-column: span 1; aspect-ratio: 4/5; }
  .gallery-item.tall     { grid-row: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* About images */
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .about-img-grid .img-tall { height: 360px; }
}

/* 768px — Tablets Portrait */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-img  { height: 44px; }

  .hero-content { padding: 88px var(--pad-x) 40px; }
  .hero-title   { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero-image img { max-width: 100%; }
  .hero-float-card { min-width: auto; width: 90%; }

  .services-grid        { grid-template-columns: 1fr; }
  .services-full-grid   { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-grid          { grid-template-columns: 1fr; gap: 28px; }
  .about-features       { grid-template-columns: 1fr; }
  .about-img-accent     { display: none; }
  .about-img-main       { height: 320px; }
  .about-img-grid .img-tall { height: 300px; }
  .about-img-grid .img-short{ height: 180px; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-whatsapp,
  .cta-actions .btn { width: 100%; justify-content: center; }

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

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
  .scroll-top     { bottom: 20px; left: 20px;  width: 42px; height: 42px; }
}

/* 480px — Standard Phones */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .logo-img { height: 38px; }

  .hero-content { padding: 82px var(--pad-x) 36px; text-align: left; align-items: flex-start; }
  .hero-badge   { margin-left: 0; }
  .hero-title   { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-desc    { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats   { gap: 20px; justify-content: flex-start; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/5; }

  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.72rem; }

  .mv-card { padding: 32px 22px; }
  .mv-card h3 { font-size: 1.5rem; }

  .process-steps { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  .about-img-tag { left: -10px; }

  .service-full-body { padding: 20px 18px; }
  .footer-brand-logo { width: 46px; height: 46px; }

  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-grid .img-tall { grid-row: auto; height: 260px; }
  .about-img-grid .img-short { height: 180px; }
}

/* 360px — Small Phones */
@media (max-width: 360px) {
  .hero-title  { font-size: 2.1rem; }
  .hero-tagline{ font-size: 0.92rem; }
  .btn         { padding: 12px 20px; font-size: 0.74rem; }
  .service-card{ padding: 26px 20px; }
  .why-card    { padding: 32px 18px; }
  .testimonial-card { padding: 22px 16px; }
}

/* =============================================
   19. ACCESSIBILITY + PRINT
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up,.fade-left,.fade-right { opacity:1 !important; transform:none !important; }
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

@media print {
  .navbar,.whatsapp-float,.scroll-top,#loader,.hamburger,.mobile-menu { display: none !important; }
  .hero { display: block; min-height: auto; }
  .hero-image { display: none; }
  body { font-size: 13px; }
}
