/* ============================================================
   EAGLE PEAK CREATIVES — style.css v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --green:        #1B6B45;
  --green-dark:   #145236;
  --green-light:  #e8f5ee;
  --orange:       #C45C1A;
  --orange-dark:  #a34c16;
  --orange-light: #fdf0e8;
  --white:        #FFFFFF;
  --black:        #0D0D0D;
  --grey-bg:      #F7F7F5;
  --grey-mid:     #E2E2DE;
  --grey-text:    #666660;
  --whatsapp:     #1B6B45;
  --font: 'Poppins', sans-serif;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.13);
  --transition:   all 0.25s ease;
  --container:    1200px;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font); color:var(--black); background:var(--white); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul,ol { list-style:none; }

h1,h2,h3,h4,h5,h6 { font-family:var(--font); line-height:1.2; font-weight:700; color:var(--black); }
h1 { font-size:clamp(2rem,4.5vw,3.6rem); }
h2 { font-size:clamp(1.5rem,3vw,2.4rem); }
h3 { font-size:clamp(1.15rem,2vw,1.5rem); }
h4 { font-size:1rem; }
p  { font-size:0.95rem; line-height:1.75; color:var(--grey-text); }

.eyebrow { display:inline-block; font-size:0.72rem; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--orange); margin-bottom:12px; }
.section-label { font-size:0.72rem; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--orange); display:block; margin-bottom:10px; }

.container { max-width:var(--container); margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section--grey  { background:var(--grey-bg); }
.section--dark  { background:var(--black); }
.section--green { background:var(--green); }
.section--dark h2,.section--dark h3,.section--dark p { color:var(--white); }
.section--green h2,.section--green h3,.section--green p { color:var(--white); }

.section-header--center { text-align:center; max-width:640px; margin:0 auto 48px; }
.section-header--center p { margin-top:10px; }

.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.flex-between { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.flex-center  { display:flex; align-items:center; justify-content:center; }
.text-center  { text-align:center; }
.text-white   { color:var(--white)!important; }
.text-green   { color:var(--green)!important; }
.text-orange  { color:var(--orange)!important; }

/* ── FEATHER BG ── */
.feather-bg { position:relative; overflow:hidden; }
.feather-bg::before {
  content:'';
  position:absolute; right:-60px; top:50%; transform:translateY(-50%) rotate(-8deg);
  width:280px; height:420px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 380'%3E%3Cpath d='M80 8 C55 35 22 95 28 170 C34 245 65 305 80 372 C95 305 126 245 132 170 C138 95 105 35 80 8Z' fill='none' stroke='%231B6B45' stroke-width='1.2' stroke-opacity='0.15'/%3E%3Cline x1='80' y1='8' x2='80' y2='372' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.14'/%3E%3Cpath d='M80 55 C62 72 35 88 26 115' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.11' fill='none'/%3E%3Cpath d='M80 55 C98 72 125 88 134 115' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.11' fill='none'/%3E%3Cpath d='M80 100 C58 118 32 132 24 158' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.1' fill='none'/%3E%3Cpath d='M80 100 C102 118 128 132 136 158' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.1' fill='none'/%3E%3Cpath d='M80 148 C56 164 30 178 24 202' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.09' fill='none'/%3E%3Cpath d='M80 148 C104 164 130 178 136 202' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.09' fill='none'/%3E%3Cpath d='M80 196 C58 210 34 222 26 244' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.08' fill='none'/%3E%3Cpath d='M80 196 C102 210 126 222 134 244' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-size:contain;
  pointer-events:none; z-index:0;
}

/* ── BUTTONS ── */
.btn-primary { display:inline-block; background:var(--orange); color:var(--white); font-family:var(--font); font-size:0.9rem; font-weight:600; padding:13px 28px; border-radius:var(--radius-sm); border:none; cursor:pointer; transition:var(--transition); text-align:center; }
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(196,92,26,0.28); }

.btn-outline { display:inline-block; background:transparent; color:var(--white); font-family:var(--font); font-size:0.9rem; font-weight:600; padding:12px 28px; border-radius:var(--radius-sm); border:2px solid rgba(255,255,255,0.55); cursor:pointer; transition:var(--transition); text-align:center; }
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }

.btn-book { display:inline-block; background:var(--orange); color:var(--white); font-family:var(--font); font-size:0.85rem; font-weight:600; padding:10px 20px; border-radius:var(--radius-sm); transition:var(--transition); white-space:nowrap; }
.btn-book:hover { background:var(--orange-dark); }

.contact-btns { display:flex; gap:8px; flex-wrap:wrap; margin-top:14px; }
.btn-whatsapp { display:inline-flex; align-items:center; gap:6px; background:var(--whatsapp); color:var(--white); font-family:var(--font); font-size:0.82rem; font-weight:600; padding:9px 14px; border-radius:var(--radius-sm); transition:var(--transition); }
.btn-whatsapp:hover { background:#01942d; transform:translateY(-1px); }
.btn-email { display:inline-flex; align-items:center; gap:6px; background:var(--orange); color:var(--white); font-family:var(--font); font-size:0.82rem; font-weight:600; padding:9px 14px; border-radius:var(--radius-sm); transition:var(--transition); }
.btn-email:hover { background:var(--orange-dark); transform:translateY(-1px); }
.see-more-link { display:inline-flex; align-items:center; gap:6px; color:var(--orange); font-weight:600; font-size:0.9rem; transition:gap 0.2s; }
.see-more-link:hover { gap:10px; }

/* ── NAVIGATION ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:var(--black); height:80px;
  display:flex; align-items:center; transition:box-shadow 0.3s;
}
.navbar.scrolled { box-shadow:0 2px 24px rgba(0,0,0,0.45); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; width:100%; height:100%; }

/* Nav logo — sits inside navbar height, no bleed */
.nav-logo-wrap {
  display:flex;
  align-items:center;
  height:100%;
  padding: 10px 0;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.nav-logo-placeholder {
  height: 52px;
  width: 52px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.nav-logo-placeholder .logo-icon { font-size:1.2rem; opacity:0.4; }

.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:0.85rem; font-weight:500; color:rgba(255,255,255,0.75); transition:color 0.2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--orange); transition:width 0.25s; }
.nav-links a:hover,.nav-links a.active { color:var(--white); }
.nav-links a:hover::after,.nav-links a.active::after { width:100%; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; flex-shrink:0; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); transition:var(--transition); border-radius:2px; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display:none; position:fixed; top:80px; left:0; right:0;
  background:var(--black); z-index:999; padding:20px 24px 28px;
  flex-direction:column; gap:4px;
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
}
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1rem; font-weight:500; color:rgba(255,255,255,0.8); padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.07); transition:color 0.2s; }
.mobile-menu a:last-child { border-bottom:none; }
.mobile-menu a:hover { color:var(--orange); }
.mobile-menu .btn-book { margin-top:16px; text-align:center; width:100%; }

.page-offset { padding-top:80px; }

/* ── HERO — max pazzazz ── */
.hero {
  max-height:55vh;
  background:var(--black);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}

/* Deep layered ink wash */
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 35%, rgba(27,107,69,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 90% 85%, rgba(196,92,26,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 75%, rgba(27,107,69,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 50% 10%, rgba(196,92,26,0.07) 0%, transparent 50%);
  pointer-events:none;
}

/* Large feather — right side */
.hero::after {
  content:'';
  position:absolute;
  right:3%;
  top:50%;
  transform:translateY(-50%);
  width:420px;
  height:580px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 440'%3E%3Cpath d='M90 10 C62 40 24 108 32 196 C40 284 74 354 90 430 C106 354 140 284 148 196 C156 108 118 40 90 10Z' fill='none' stroke='%231B6B45' stroke-width='1.4' stroke-opacity='0.22'/%3E%3Cline x1='90' y1='10' x2='90' y2='430' stroke='%231B6B45' stroke-width='1.1' stroke-opacity='0.2'/%3E%3Cpath d='M90 62 C70 82 40 100 29 132' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.17' fill='none'/%3E%3Cpath d='M90 62 C110 82 140 100 151 132' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.17' fill='none'/%3E%3Cpath d='M90 114 C65 135 36 152 26 180' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.15' fill='none'/%3E%3Cpath d='M90 114 C115 135 144 152 154 180' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.15' fill='none'/%3E%3Cpath d='M90 166 C63 186 34 202 24 228' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.14' fill='none'/%3E%3Cpath d='M90 166 C117 186 146 202 156 228' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.14' fill='none'/%3E%3Cpath d='M90 218 C65 236 38 250 28 274' stroke='%231B6B45' stroke-width='0.9' stroke-opacity='0.12' fill='none'/%3E%3Cpath d='M90 218 C115 236 142 250 152 274' stroke='%231B6B45' stroke-width='0.9' stroke-opacity='0.12' fill='none'/%3E%3Cpath d='M90 268 C67 284 42 297 34 318' stroke='%231B6B45' stroke-width='0.9' stroke-opacity='0.11' fill='none'/%3E%3Cpath d='M90 268 C113 284 138 297 146 318' stroke='%231B6B45' stroke-width='0.9' stroke-opacity='0.11' fill='none'/%3E%3Cpath d='M90 316 C70 330 50 342 44 360' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.09' fill='none'/%3E%3Cpath d='M90 316 C110 330 130 342 136 360' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.09' fill='none'/%3E%3Cpath d='M90 362 C74 374 58 384 54 398' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.08' fill='none'/%3E%3Cpath d='M90 362 C106 374 122 384 126 398' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:contain;
  pointer-events:none;
  opacity:1;
}

/* Ink scatter dots — organic texture */
.hero-dots {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    radial-gradient(circle 1.5px at 15% 25%, rgba(27,107,69,0.35) 100%, transparent),
    radial-gradient(circle 1px at 22% 60%, rgba(196,92,26,0.3) 100%, transparent),
    radial-gradient(circle 2px at 8% 80%, rgba(27,107,69,0.2) 100%, transparent),
    radial-gradient(circle 1px at 35% 15%, rgba(255,255,255,0.15) 100%, transparent),
    radial-gradient(circle 1.5px at 60% 90%, rgba(27,107,69,0.2) 100%, transparent),
    radial-gradient(circle 1px at 45% 5%, rgba(196,92,26,0.2) 100%, transparent);
}

/* Gold horizontal rule above hero text */
.hero-rule {
  display:block;
  width:56px;
  height:2px;
  background:linear-gradient(to right, var(--orange), var(--green));
  border-radius:2px;
  margin-bottom:18px;
}

/* Left vertical ink stroke */
.hero-ink-bar {
  position:absolute; left:0; top:8%; height:84%;
  width:3px;
  background:linear-gradient(to bottom, transparent, var(--orange) 25%, var(--green) 75%, transparent);
  border-radius:3px;
}

.hero .container { position:relative; z-index:1; padding-top:56px; padding-bottom:56px; }
.hero-content { max-width:680px; }
.hero h1 { color:var(--white); font-weight:800; margin-bottom:18px; line-height:1.1; letter-spacing:-0.5px; }
.hero h1 em { font-style:normal; color:var(--orange); }
.hero-sub { color:rgba(255,255,255,0.68); font-size:1.05rem; max-width:500px; margin-bottom:34px; line-height:1.75; }
.hero-buttons { display:flex; margin-top:14px; gap: 14px; flex-wrap:wrap; }

/* Subtle animated glow on the feather area */
@keyframes inkPulse {
  0%,100% { opacity:0.88; }
  50% { opacity:1; }
}
.hero::after { animation:inkPulse 6s ease-in-out infinite; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:var(--black); padding:64px 0 54px;
  position:relative; overflow:hidden;
}
.page-hero::after {
  content:'';
  position:absolute; right:2%; top:50%; transform:translateY(-50%);
  width:180px; height:280px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 240'%3E%3Cpath d='M50 5 C36 22 14 60 18 107 C22 154 41 192 50 235 C59 192 78 154 82 107 C86 60 64 22 50 5Z' fill='none' stroke='%231B6B45' stroke-width='1' stroke-opacity='0.2'/%3E%3Cline x1='50' y1='5' x2='50' y2='235' stroke='%231B6B45' stroke-width='0.8' stroke-opacity='0.16'/%3E%3Cpath d='M50 34 C38 45 22 55 16 72' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.13' fill='none'/%3E%3Cpath d='M50 34 C62 45 78 55 84 72' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.13' fill='none'/%3E%3Cpath d='M50 70 C36 80 20 90 14 106' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.11' fill='none'/%3E%3Cpath d='M50 70 C64 80 80 90 86 106' stroke='%231B6B45' stroke-width='0.7' stroke-opacity='0.11' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-size:contain;
  pointer-events:none; opacity:0.7;
}
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { color:var(--white); }
.page-hero .eyebrow { margin-bottom:10px; }
.page-hero p { color:rgba(255,255,255,0.62); margin-top:10px; font-size:1rem; }

/* ── SERVICE CARDS — 5 per row ── */
.service-cards-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column; transition:var(--transition); border:1px solid var(--grey-mid); }
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); }

.service-img-placeholder {
  width:100%; aspect-ratio:4/3; background:var(--grey-bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; color:var(--grey-text); border-bottom:1px solid var(--grey-mid);
  font-size:0.75rem; font-weight:500; position:relative; overflow:hidden;
  cursor:zoom-in;
}
.service-img-placeholder .placeholder-icon { font-size:1.8rem; opacity:0.3; }
.service-img-placeholder img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* Clean image viewer overlay — no text, just magnifier icon */
.service-img-placeholder::after {
  content:'🔍';
  position:absolute; inset:0; background:rgba(0,0,0,0.4);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; opacity:0; transition:opacity 0.2s;
  pointer-events:none;
}
.service-img-placeholder:hover::after { opacity:1; }

.service-card-body { padding:14px; display:flex; flex-direction:column; flex:1; }
.service-card-body h4 { font-size:0.82rem; font-weight:700; color:var(--black); margin-bottom:4px; }
.service-card-body p { font-size:0.76rem; line-height:1.5; color:var(--grey-text); margin-bottom:5px; flex:1; }
.service-duration { font-size:0.7rem; color:#999; font-weight:500; margin-bottom:6px; }
.service-duration::before { content:'⏱ '; }
.price { font-size:1.05rem; font-weight:700; color:var(--green); margin-bottom:10px; display:block; }
.contact-btns.compact { flex-direction:column; gap:5px; }
.contact-btns.compact .btn-whatsapp,
.contact-btns.compact .btn-email { font-size:0.7rem; padding:7px 10px; justify-content:center; width:100%; }

/* ── PRICING TABLES ── */
.table-wrap { overflow-x:auto; border-radius:var(--radius); border:1px solid var(--grey-mid); box-shadow:var(--shadow); }
.pricing-table { width:100%; border-collapse:collapse; font-size:0.88rem; }
.pricing-table thead tr { background:var(--green); color:var(--white); }
.pricing-table thead th { padding:12px 16px; text-align:left; font-weight:600; font-size:0.82rem; }
.pricing-table tbody tr { border-bottom:1px solid var(--grey-mid); transition:background 0.2s; }
.pricing-table tbody tr:hover { background:var(--green-light); }
.pricing-table tbody td { padding:11px 16px; color:var(--black); line-height:1.4; }
.pricing-table tbody td:nth-child(2) { white-space:nowrap; color:var(--grey-text); font-size:0.8rem; }
.pricing-table tbody td:nth-child(3) { font-weight:700; color:var(--green); white-space:nowrap; }

/* ── MONTHLY PRICING CARDS ── */
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:start; }
.pricing-card { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--grey-mid); transition:var(--transition); background:var(--white); }
.pricing-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.pricing-card.popular { border-color:var(--green); box-shadow:0 6px 32px rgba(27,107,69,0.14); }
.pricing-card-header { padding:22px 20px; background:var(--grey-bg); }
.pricing-card.popular .pricing-card-header { background:var(--green); }
.pricing-card.popular .pricing-card-header h3,
.pricing-card.popular .pricing-card-header .plan-price { color:var(--white); }
.pricing-card--dark .pricing-card-header { background:var(--grey-bg); }
.pricing-card--dark .pricing-card-header h3,
.pricing-card--dark .pricing-card-header .plan-price { color:var(--black); }
.pricing-card--orange .pricing-card-header { background:var(--grey-bg); }
.pricing-card--orange .pricing-card-header h3,
.pricing-card--orange .pricing-card-header .plan-price { color:var(--black); }
.plan-name { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--grey-text); margin-bottom:5px; }
.pricing-card.popular .plan-name,
.pricing-card--dark .plan-name,
.pricing-card--orange .plan-name { color:rgba(39, 39, 39, 0.65); }
.plan-price { font-size:1.5rem; font-weight:800; color:var(--black); }
.plan-price span { font-size:0.85rem; font-weight:400; opacity:0.7; }
.popular-badge { display:inline-block; background:var(--orange); color:var(--white); font-size:0.65rem; font-weight:700; padding:3px 10px; border-radius:100px; letter-spacing:0.5px; margin-top:8px; }
.pricing-card-body { padding:18px; }
.pricing-card-body ul { display:flex; flex-direction:column; gap:7px; }
.pricing-card-body ul li { font-size:0.82rem; color:var(--grey-text); padding-left:16px; position:relative; line-height:1.4; }
.pricing-card-body ul li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; font-size:0.78rem; }

/* ── TEASER & VALUE CARDS ── */
.teaser-card { background:var(--white); border-radius:var(--radius); padding:26px 22px; box-shadow:var(--shadow); border-top:3px solid var(--green); transition:var(--transition); }
.teaser-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.teaser-card .card-icon { font-size:1.7rem; margin-bottom:12px; display:block; }
.teaser-card h4 { font-size:0.95rem; font-weight:700; margin-bottom:7px; }
.teaser-card p { font-size:0.84rem; color:var(--grey-text); line-height:1.55; }
.value-card { text-align:center; padding:28px 20px; }
.value-card .value-icon { width:50px; height:50px; background:var(--green-light); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-size:1.3rem; }
.value-card h4 { font-size:0.95rem; font-weight:700; margin-bottom:7px; }
.value-card p { font-size:0.84rem; color:var(--grey-text); }

/* ── PRODUCTS — 5 per row, smaller ── */
.products-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.product-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; border:1px solid var(--grey-mid); transition:var(--transition); }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }

/* Product image — clean zoom cursor, magnifier on hover only */
.product-card-img {
  width:100%; aspect-ratio:1/1; background:var(--grey-bg);
  border:2px dashed var(--grey-mid);
  border-radius:var(--radius) var(--radius) 0 0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; color:var(--grey-text); font-size:0.7rem; font-weight:500;
  overflow:hidden; position:relative; cursor:zoom-in;
}
.product-card-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.product-card-img .img-label { font-size:0.65rem; color:#bbb; text-align:center; padding:0 8px; z-index:1; }
.product-card-img .img-icon { font-size:1.4rem; opacity:0.35; z-index:1; }

/* Hover: show only magnifier icon, no text */
.product-card-img .zoom-overlay {
  position:absolute; inset:0; background:rgba(0,0,0,0.42);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity 0.22s;
  font-size:1.6rem;
}
.product-card-img:hover .zoom-overlay { opacity:1; }

.product-card-body { padding:11px; }
.product-card-body h4 { font-size:0.8rem; font-weight:700; margin-bottom:2px; color:var(--black); }
.product-card-body .product-tagline { font-size:0.7rem; color:var(--grey-text); margin-bottom:4px; }
.product-card-body .product-price-sm { font-size:0.8rem; font-weight:700; color:var(--green); display:block; margin-bottom:3px; }
.product-card-body .product-custom-note { font-size:0.68rem; color:var(--orange); font-weight:600; margin-bottom:7px; }
.product-card-body .contact-btns { flex-direction:column; gap:5px; margin-top:8px; }
.product-card-body .btn-whatsapp,
.product-card-body .btn-email { font-size:0.7rem; padding:7px 10px; justify-content:center; width:100%; }

.view-more-wrap { text-align:center; margin-top:16px; display:none; }
.view-more-wrap.visible { display:block; }
.btn-view-more { background:transparent; border:2px solid var(--green); color:var(--green); font-family:var(--font); font-size:0.85rem; font-weight:600; padding:9px 24px; border-radius:var(--radius-sm); cursor:pointer; transition:var(--transition); }
.btn-view-more:hover { background:var(--green); color:var(--white); }

.product-category { margin-bottom:52px; }
.product-category-title { font-size:1.2rem; font-weight:800; color:var(--black); border-bottom:3px solid var(--orange); display:inline-block; padding-bottom:8px; margin-bottom:6px; }
.product-category-desc { color:var(--grey-text); font-size:0.85rem; margin-bottom:20px; }

/* ── PORTFOLIO ── */
.portfolio-section { margin-bottom:56px; }
.portfolio-section-header { margin-bottom:20px; }
.portfolio-section-title { font-size:1.15rem; font-weight:700; color:var(--black); border-bottom:3px solid var(--green); display:inline-block; padding-bottom:7px; }
.portfolio-section-sub { color:var(--grey-text); font-size:0.84rem; margin-top:5px; }

.portfolio-row { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }

.portfolio-item {
  position:relative; aspect-ratio:1/1; border-radius:var(--radius);
  overflow:hidden; background:var(--grey-bg); cursor:zoom-in;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--grey-mid); transition:var(--transition);
}
.portfolio-item:hover { transform:translateY(-3px); box-shadow:var(--shadow-hover); }
.portfolio-item img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.portfolio-item .placeholder-text { font-size:0.75rem; color:var(--grey-text); text-align:center; z-index:1; padding:8px; }

.portfolio-overlay {
  position:absolute; inset:0;
  background:rgba(13,13,13,0.72);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; opacity:0; transition:opacity 0.3s; padding:12px;
}
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay h4 { color:var(--white); font-size:0.8rem; text-align:center; }
.portfolio-overlay .cat-tag { font-size:0.68rem; font-weight:600; color:var(--orange); text-transform:uppercase; letter-spacing:1px; }

.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.filter-tab { font-family:var(--font); font-size:0.8rem; font-weight:600; padding:7px 16px; border-radius:100px; border:2px solid var(--grey-mid); background:var(--white); color:var(--grey-text); cursor:pointer; transition:var(--transition); }
.filter-tab:hover { border-color:var(--green); color:var(--green); }
.filter-tab.active { background:var(--green); border-color:var(--green); color:var(--white); }
.portfolio-item.hidden { display:none; }

/* ── ABOUT PAGE ── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-img-placeholder { aspect-ratio:4/3; background:var(--grey-bg); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; color:var(--grey-text); font-size:0.85rem; overflow:hidden; border:1px solid var(--grey-mid); }
.about-img-placeholder img { width:100%; height:100%; object-fit:cover; }
.about-text h2 { margin-bottom:14px; }
.about-text p { margin-bottom:14px; }
.founder-card { background:var(--white); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); display:flex; align-items:center; gap:24px; border:1px solid var(--grey-mid); max-width:540px; margin:0 auto; }
.founder-img { width:90px; height:90px; border-radius:50%; object-fit:cover; background:var(--grey-bg); flex-shrink:0; border:3px solid var(--green); display:flex; align-items:center; justify-content:center; overflow:hidden; font-size:0.72rem; color:var(--grey-text); }
.founder-img img { width:100%; height:100%; object-fit:cover; }
.founder-info h3 { font-size:1.05rem; margin-bottom:3px; }
.founder-info .title { font-size:0.82rem; color:var(--orange); font-weight:600; margin-bottom:6px; }
.founder-info p { font-size:0.84rem; line-height:1.6; color:var(--grey-text); }

/* ── PRODUCT DETAIL ── */
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.product-main-img { width:100%; aspect-ratio:1/1; border-radius:var(--radius); background:var(--grey-bg); display:flex; align-items:center; justify-content:center; cursor:zoom-in; border:1px solid var(--grey-mid); overflow:hidden; }
.product-main-img img { width:100%; height:100%; object-fit:cover; }
.product-thumbnails { display:flex; gap:8px; margin-top:10px; }
.product-thumb { width:calc(33.33% - 6px); aspect-ratio:1/1; border-radius:var(--radius-sm); overflow:hidden; border:2px solid var(--grey-mid); cursor:pointer; transition:border-color 0.2s; background:var(--grey-bg); display:flex; align-items:center; justify-content:center; font-size:0.72rem; color:var(--grey-text); }
.product-thumb img { width:100%; height:100%; object-fit:cover; }
.product-thumb:hover,.product-thumb.active { border-color:var(--green); }
.product-info h1 { font-size:clamp(1.4rem,3vw,2rem); margin-bottom:10px; }
.product-desc { font-size:0.95rem; line-height:1.75; color:var(--grey-text); margin-bottom:18px; }
.product-price { font-size:1.7rem; font-weight:800; color:var(--green); margin-bottom:20px; display:block; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.2s ease;
  transform-origin: center center;
  user-select: none;
  display: block;
}

/* Controls row — centered below image, always separate */
.lightbox-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lightbox-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  flex-shrink: 0;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.26); }

/* Close button — top right corner */
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── CONTACT PAGE ── */
/* CONTACT SECTION GRID */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 64px; 
  align-items: start; 
}

/* CONTACT DETAILS (LEFT COLUMN) */
.contact-detail-list { 
  display: flex; 
  flex-direction: column; 
  gap: 28px; 
  margin-bottom: 36px; 
}

.contact-detail-item { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}

.contact-detail-icon { 
  width: 46px; 
  height: 46px; 
  background: var(--green-light); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  color: var(--green); 
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-detail-item h5 { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: var(--grey-text); 
  font-weight: 600; 
  margin-bottom: 4px; 
}

.contact-detail-item p,
.contact-detail-item a { 
  font-size: 0.95rem; 
  color: var(--black); 
  font-weight: 500; 
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-item a:hover { 
  color: var(--orange); 
}

/* SOCIAL ICONS */
.social-icons { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  align-items: center;
}

.social-icon { 
  width: 42px; 
  height: 42px; 
  background: var(--grey-bg); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: var(--transition); 
  border: 1px solid var(--grey-mid); 
  color: var(--black);
  text-decoration: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: fill 0.2s ease;
}

.social-icon:hover { 
  background: var(--green); 
  color: var(--white); 
  border-color: var(--green); 
  transform: translateY(-2px); 
}

.social-icon:hover svg {
  fill: var(--white);
}

/* CONTACT FORM (RIGHT COLUMN) */
.contact-form { 
  background: var(--white); 
  border-radius: var(--radius); 
  padding: 36px; 
  box-shadow: var(--shadow); 
  border: 1px solid var(--grey-mid); 
}

.form-group { 
  margin-bottom: 20px; 
}

.form-group label { 
  display: block; 
  font-size: 0.82rem; 
  font-weight: 500; 
  color: var(--black); 
  margin-bottom: 10px; 
}

.form-group input,
.form-group select,
.form-group textarea { 
  width: 100%; 
  padding: 14px 17px; 
  border: 1.5px solid var(--grey-mid); 
  border-radius: var(--radius-sm); 
  font-family: var(--font); 
  font-size: 0.8rem; 
  color: var(--black); 
  background: var(--white); 
  transition: border-color 0.2s; 
  outline: none; 
  appearance: none; 
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
  border-color: var(--green); 
}

.form-group textarea { 
  min-height: 130px; 
  resize: vertical; 
}

.form-success { 
  display: none; 
  color: var(--green); 
  font-size: 0.88rem; 
  font-weight: 600; 
  margin-top: 14px; 
  padding: 12px 16px; 
  background: var(--green-light); 
  border-radius: var(--radius-sm); 
  border-left: 4px solid var(--green); 
}

.form-success.visible { 
  display: block; 
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 868px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 24px;
  }
}
/* ── CTA BAND ── */
.cta-band { background:var(--green); padding:60px 24px; text-align:center; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; right:-40px; top:50%; transform:translateY(-50%); width:180px; height:280px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 240'%3E%3Cpath d='M50 5 C36 22 14 60 18 107 C22 154 41 192 50 235 C59 192 78 154 82 107 C86 60 64 22 50 5Z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.12'/%3E%3Cline x1='50' y1='5' x2='50' y2='235' stroke='%23ffffff' stroke-width='0.8' stroke-opacity='0.1'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-size:contain; pointer-events:none; }
.cta-band h2 { color:var(--white); font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:12px; }
.cta-band > .container > p { color:rgba(255,255,255,0.8); font-size:1rem; margin-bottom:24px; max-width:440px; margin-left:auto; margin-right:auto; }

/* ── FOOTER ── */
.footer { background:var(--black); padding:48px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; }
.footer-logo-wrap { margin-bottom:12px; }
.footer-logo-img { height:70px; width:auto; object-fit:contain; }
.footer-logo-placeholder { width:72px; height:72px; background:rgba(255,255,255,0.05); border:2px dashed rgba(255,255,255,0.18); border-radius:var(--radius-sm); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; font-size:0.6rem; color:rgba(255,255,255,0.3); font-weight:500; text-align:center; margin-bottom:12px; }
.footer-logo-placeholder .logo-icon { font-size:1.2rem; opacity:0.3; }
.footer-tagline { font-size:0.82rem; color:rgba(255,255,255,0.45); font-style:italic; }
.footer h4 { color:var(--white); font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px; }
.footer-links { display:flex; flex-direction:column; gap:7px; }
.footer-links a { font-size:0.85rem; color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-links a:hover { color:var(--orange); }
.footer-contact-list { display:flex; flex-direction:column; gap:9px; }
.footer-contact-list li { font-size:0.85rem; color:rgba(255,255,255,0.55); display:flex; align-items:flex-start; gap:7px; line-height:1.5; }
.footer-contact-list li a { color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-contact-list li a:hover { color:var(--orange); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding:14px 0; text-align:center; }
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.3); }

/* ── MISC ── */
.note-banner { background:var(--orange-light); border-left:4px solid var(--orange); border-radius:var(--radius-sm); padding:13px 17px; margin-bottom:36px; font-size:0.85rem; color:var(--black); font-weight:500; }
.negotiable-note { background:var(--orange-light); border-left:4px solid var(--orange); border-radius:var(--radius-sm); padding:16px 20px; font-size:0.88rem; color:var(--black); font-weight:500; margin-top:44px; }
.stat-num { font-family:var(--font); font-size:2.4rem; font-weight:800; color:var(--orange); }
.stat-label { color:rgba(255,255,255,0.55); margin-top:4px; font-size:0.85rem; }

.services-nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:44px; }
.services-nav a { font-size:0.82rem; font-weight:600; padding:8px 16px; border-radius:100px; border:2px solid var(--grey-mid); color:var(--grey-text); transition:all 0.2s; }
.services-nav a:hover,.services-nav a.active { background:var(--green); border-color:var(--green); color:var(--white); }

.service-section { margin-bottom:60px; scroll-margin-top:100px; }
.service-section-title { font-size:1.3rem; font-weight:800; color:var(--black); padding-bottom:10px; border-bottom:3px solid var(--green); display:inline-block; margin-bottom:6px; }
.service-section-sub { color:var(--grey-text); font-size:0.87rem; margin-bottom:24px; margin-top:5px; }

.web-card { background:var(--white); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); border:1px solid var(--grey-mid); border-top:4px solid var(--green); transition:var(--transition); }
.web-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.web-card h4 { font-size:1rem; margin-bottom:7px; }
.web-card .web-desc { font-size:0.85rem; color:var(--grey-text); margin-bottom:10px; line-height:1.55; }
.web-card .web-meta { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; margin-top:10px; }
.web-card .web-days { font-size:0.78rem; color:var(--grey-text); font-weight:500; }
.web-card .web-price { font-size:1.2rem; font-weight:800; color:var(--green); }

.smm-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.smm-card { background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--grey-mid); transition:var(--transition); }
.smm-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.smm-card-header { padding:18px 20px; background:var(--grey-bg); }
.smm-card-header h4 { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--grey-text); margin-bottom:5px; }
.smm-card-header .smm-price { font-size:1.5rem; font-weight:800; color:var(--black); }
.smm-card-body { padding:18px; }
.smm-card-body ul { display:flex; flex-direction:column; gap:6px; }
.smm-card-body ul li { font-size:0.82rem; color:var(--grey-text); padding-left:16px; position:relative; }
.smm-card-body ul li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:0.01ms!important; transition-duration:0.01ms!important; } }
:focus-visible { outline:3px solid var(--orange); outline-offset:3px; }

/* ── RESPONSIVE 1024px ── */
@media (max-width:1024px) {
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; gap:36px; }
  .about-grid { grid-template-columns:1fr; gap:32px; }
  .product-detail-grid { grid-template-columns:1fr; gap:28px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .products-grid { grid-template-columns:repeat(4,1fr); }
  .portfolio-row { grid-template-columns:repeat(4,1fr); }
  .service-cards-grid { grid-template-columns:repeat(3,1fr); }
}

/* ── RESPONSIVE 768px ── */
@media (max-width:768px) {
  .section { padding:50px 0; }
  .grid-2 { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; }
  .smm-grid { grid-template-columns:1fr; }
  /* NAV */
  .nav-links,.btn-book.desktop-only { display:none; }
  .hamburger { display:flex; }
  /* HERO */
  .hero { max-height:45vh; padding:44px 0 56px; }
  .hero::after { width:150px; height:320px; right:-10px; opacity:0.6; }
  .hero h1 { font-size:clamp(1.6rem,7vw,2.5rem); }
  /* FOOTER */
  .footer-grid { grid-template-columns:1fr; gap:26px; }
  /* ABOUT */
  .founder-card { flex-direction:column; text-align:center; }
  /* SERVICES */
  .service-cards-grid { grid-template-columns:repeat(2,1fr); }
  /* PRODUCTS: 2 cols, hide after 4 */
  .products-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .products-grid .product-card:nth-child(n+5) { display:none; }
  .products-grid.expanded .product-card { display:block!important; }
  .view-more-wrap { display:block!important; }
  /* PORTFOLIO: 2 cols */
  .portfolio-row { grid-template-columns:repeat(2,1fr); gap:10px; }
  .portfolio-row .portfolio-item:nth-child(n+5) { display:none; }
  .portfolio-row.expanded .portfolio-item { display:flex!important; }
  .portfolio-view-more-wrap { display:block!important; }
  /* STATS */
  .stats-grid { grid-template-columns:repeat(2,1fr)!important; }
}

/* ── RESPONSIVE 480px ── */
@media (max-width:480px) {
  .container { padding:0 14px; }
  .grid-3,.grid-4 { grid-template-columns:repeat(2,1fr); }
  .hero-buttons { flex-direction:column; margin-top: 12px; gap: 12px; }
  .hero-buttons a { width:100%; text-align:center; }
  .contact-btns { flex-direction:column; }
  .contact-btns a { width:100%; justify-content:center; }
  .cta-band { padding:40px 14px; }
  .contact-form { padding:22px 16px; }
  .filter-tabs { gap:6px; }
  .filter-tab { font-size:0.75rem; padding:6px 12px; }
  .service-cards-grid { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .portfolio-row { grid-template-columns:repeat(2,1fr); }
}
/* Stacks the grid into a single column on mobile devices */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .grid-2 .web-card {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }
}