
/* =========================================================
   Only36 Website
   Author: Marketing Garage x ChatGPT
   Structure: One-page premium real-estate landing website
   ========================================================= */

:root {
  --brown: #70452e;
  --brown-dark: #3c2115;
  --brown-soft: #9b704e;
  --gold: #c99a3f;
  --gold-light: #e9cf94;
  --cream: #f8f2e8;
  --cream-2: #fffaf2;
  --ink: #201916;
  --muted: #766b63;
  --line: rgba(112, 69, 46, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(60, 33, 21, .14);
  --header-height: 82px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream-2);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }
::selection { background: var(--brown); color: var(--white); }

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.section { padding: 100px 0; position: relative; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--brown-dark); color: var(--cream-2); }

.pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(201,154,63,.16), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(112,69,46,.12), transparent 28%),
    url("data:image/svg+xml,%3Csvg width='150' height='80' viewBox='0 0 150 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 C35 10, 55 10, 90 50 S125 90, 150 50' fill='none' stroke='%2370452e' stroke-opacity='.13' stroke-width='2'/%3E%3C/svg%3E");
  background-size: auto, auto, 150px 80px;
}

/* Loader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream-2);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner img { width: 110px; margin: 0 auto 22px; }
.loader-ring {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(112,69,46,.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: .35s ease;
}
.site-header.scrolled {
  background: rgba(255,250,242,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(60,33,21,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo img { width: 112px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a { color: var(--brown-dark); position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(112,69,46,.24);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--brown);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: .3s ease;
}
.menu-toggle span { top: 21px; }
.menu-toggle::before { top: 15px; }
.menu-toggle::after { top: 27px; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle::after { top: 21px; transform: rotate(-45deg); }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}
.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(32,25,22,.84) 0%, rgba(32,25,22,.50) 44%, rgba(32,25,22,.17) 100%),
    linear-gradient(0deg, rgba(32,25,22,.58), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  padding-top: var(--header-height);
  color: var(--white);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-kicker::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  max-width: 840px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: .93;
  letter-spacing: -.05em;
  margin-bottom: 26px;
}
.hero h1 span { color: var(--gold-light); }
.hero-subtitle {
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--brown-dark); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(201,154,63,.28); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.hero-info-card {
  position: absolute;
  right: 7vw;
  bottom: 7vh;
  z-index: 3;
  width: min(380px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  color: var(--white);
  border-radius: 26px;
}
.hero-info-card .mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}
.hero-info-card strong { display: block; font-size: 24px; color: var(--gold-light); }
.hero-info-card span { display: block; font-size: 11px; color: rgba(255,255,255,.74); line-height: 1.4; margin-top: 4px; }

/* Typography */
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--brown-dark);
  margin-bottom: 22px;
}
.section-dark .section-title { color: var(--cream-2); }
.section-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.section-dark .section-text { color: rgba(255,250,242,.72); }

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 620px;
  background: var(--cream);
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 24px;
}
.intro-copy .quote {
  margin-top: 28px;
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: rgba(201,154,63,.08);
  border-radius: 0 22px 22px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.55;
  color: var(--brown-dark);
}
.highlight-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.highlight-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 22px;
  text-align: center;
  transition: .3s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.highlight-card strong { display: block; font-size: 22px; color: var(--brown); margin-bottom: 8px; }
.highlight-card span { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; }

/* Signature */
.signature {
  padding: 90px 0;
  background: var(--brown);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.signature::before {
  content: '36';
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34vw;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: .8;
}
.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.signature h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
}
.signature p { color: rgba(255,255,255,.78); line-height: 1.9; font-size: 17px; }
.signature em { color: var(--gold-light); }

/* Cards */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  border: 1px solid rgba(112,69,46,.10);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.feature-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(201,154,63,.13);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 20px;
}
.feature-card h4 { color: var(--brown-dark); font-size: 16px; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Amenities */
.amenities-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 45px;
}
.amenities-head .section-title { max-width: 720px; margin-bottom: 0; }
.amenities-head p { max-width: 360px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.amenity-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(60,33,21,.08);
  transition: .35s ease;
}
.amenity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.amenity-card img { aspect-ratio: 1.42/1; width: 100%; object-fit: cover; }
.amenity-card-content { padding: 24px; }
.amenity-card h3 { font-size: 18px; color: var(--brown); margin-bottom: 10px; }
.amenity-card p { color: var(--muted); line-height: 1.7; font-size: 14px; }

/* Connectivity */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-map {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
  background: var(--white);
}
.location-map img { width: 100%; }
.connect-list {
  display: grid;
  gap: 16px;
}
.connect-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.75);
}
.connect-card h3 { color: var(--brown); margin-bottom: 12px; font-size: 18px; }
.connect-card ul { display: grid; gap: 9px; }
.connect-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px dashed rgba(112,69,46,.22);
  padding-bottom: 8px;
}
.connect-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.connect-card b { color: var(--brown-dark); white-space: nowrap; }

/* Plans */
.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}
.plan-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brown-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}
.plan-tab.active,
.plan-tab:hover { background: var(--brown); color: var(--white); }
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
  cursor: zoom-in;
}
.plan-table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(60,33,21,.08);
}
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td { padding: 15px 18px; border-bottom: 1px solid rgba(112,69,46,.15); text-align: left; font-size: 14px; }
th { background: var(--brown); color: var(--white); font-weight: 600; }
td:first-child { color: var(--brown); font-weight: 700; background: rgba(201,154,63,.10); }
tr:last-child td { border-bottom: 0; }
.jodi-note {
  margin-top: 26px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(201,154,63,.12);
  border: 1px solid rgba(201,154,63,.28);
  text-align: center;
  color: var(--brown-dark);
  line-height: 1.7;
}

/* Developer */
.developer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}
.dev-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}
.dev-card .brand-name { font-size: 24px; color: var(--gold-light); margin-bottom: 16px; font-weight: 800; }
.dev-card p { color: rgba(255,250,242,.75); line-height: 1.85; }
.dev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.dev-stat { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); }
.dev-stat strong { display: block; color: var(--gold-light); font-size: 20px; }
.dev-stat span { color: rgba(255,250,242,.68); font-size: 12px; line-height: 1.35; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.team-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.team-card span { color: var(--muted); font-size: 13px; }
.team-card h4 { color: var(--brown); margin-top: 6px; font-size: 17px; }
.team-card p { color: var(--muted); margin-top: 4px; font-size: 13px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-card,
.form-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(60,33,21,.08);
}
.contact-item { display: grid; gap: 5px; margin-top: 22px; }
.contact-item span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact-item a,
.contact-item p { color: var(--brown-dark); font-size: 17px; line-height: 1.6; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(112,69,46,.18);
  border-radius: 16px;
  padding: 14px 16px;
  outline: 0;
  font-size: 14px;
  background: var(--cream-2);
  color: var(--ink);
  transition: .3s ease;
}
.form-group textarea { min-height: 118px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,154,63,.12); }
.form-note { color: var(--muted); font-size: 12px; line-height: 1.6; margin-top: 14px; }
.form-message { margin-top: 15px; font-size: 14px; font-weight: 700; }
.map-embed { margin-top: 38px; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); height: 360px; background: var(--cream); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,250,242,.72);
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: end;
}
.footer-logo img { width: 110px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.rera { color: var(--gold-light); font-weight: 700; }
.disclaimer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,250,242,.48);
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; font-size: 13px; }

/* Floating actions */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  background: var(--brown);
  box-shadow: 0 16px 34px rgba(60, 33, 21, 0.24);
  transition: 0.3s ease;
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: var(--brown);
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 42px rgba(60, 33, 21, 0.3);
}

@media (max-width: 720px) {
  .float-actions {
    right: 16px;
    bottom: 18px;
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 23px;
    height: 23px;
  }
}

/* Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(32,25,22,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.image-modal.show { display: flex; }
.image-modal img { max-height: 88vh; max-width: 94vw; object-fit: contain; border-radius: 18px; background: var(--white); }
.modal-close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown-dark);
  font-size: 24px;
  cursor: pointer;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 18px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
  }
  .menu-open .mobile-panel { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-panel a { display: block; padding: 13px 10px; color: var(--brown-dark); font-weight: 700; border-bottom: 1px solid var(--line); }
  .mobile-panel a:last-child { border-bottom: 0; }
  .intro-grid, .two-col, .signature-grid, .connect-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-image { min-height: 520px; }
  .highlight-list { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-map { position: relative; top: auto; }
  .hero-info-card { left: 18px; right: 18px; bottom: 26px; width: auto; }
}

@media (max-width: 720px) {
  :root { --header-height: 72px; }
  .section { padding: 72px 0; }
  .logo img { width: 90px; }
  .hero { align-items: start; padding-top: 92px; min-height: 100svh; }
  .hero-content { padding-top: 0; }
  .hero h1 { font-size: clamp(50px, 16vw, 78px); }
  .hero-subtitle { font-size: 16px; max-width: 92%; }
  .hero-actions .btn { width: 100%; }
  .hero-info-card { position: relative; left: auto; right: auto; bottom: auto; margin: 36px auto 0; }
  .hero-info-card .mini-grid { grid-template-columns: 1fr; }
  .intro-image { min-height: 420px; }
  .highlight-list, .feature-grid, .amenities-grid, .developer-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .amenities-head { display: block; }
  .amenities-head p { margin-top: 18px; max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-card, .form-card { padding: 24px; }
  .footer-links { justify-content: flex-start; }
  .float-actions { right: 14px; bottom: 14px; }
}


/* =========================================================
   Header + Hero Refinement
   Add this at the END of style.css
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 120px;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: block;
  background: transparent;
  pointer-events: none;
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-wrap {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
   padding: 0 22px 0 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(201, 154, 63, 0.36);
  box-shadow: 0 20px 60px rgba(60, 33, 21, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

/* Logo */
.logo {
  width: 128px;
  height: 120px;
  flex: 0 0 128px;
  display: grid;
  place-items: center;
  background: #fffaf2;
  border: 1px solid rgba(201, 154, 63, 0.42);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(60, 33, 21, 0.18);
  overflow: hidden;
  transform: translateY(0);
  z-index: 3;
  margin-left: -2px;
}

.logo img {
  width: 118px;
  max-width: none;
  height: auto;
  display: block;
  transform: scale(1.08);
}

/* Desktop Navigation */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  color: var(--brown-dark);
  position: relative;
  padding: 29px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  margin-left: auto;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(112, 69, 46, 0.24);
}

/* Mobile menu should be hidden by default */
.mobile-panel {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  background: var(--brown);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  box-shadow: 0 14px 30px rgba(60, 33, 21, 0.2);
  z-index: 4;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: 0.3s ease;
}

.menu-toggle span {
  top: 22px;
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle::after {
  top: 28px;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  top: 22px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle::after {
  top: 22px;
  transform: rotate(-45deg);
}

/* Hero clean image-only version */
/* .hero {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: block;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #ead9bf;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ead9bf;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: contain;
  object-position: center center;
} */

.hero {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: block;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #ead9bf;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ead9bf;
}

/* Blurred background fill for side spaces */
.hero-media::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(
      rgba(77, 45, 27, 0.08),
      rgba(77, 45, 27, 0.08)
    ),
    url("../img/banner-web.jpg");
  background-size: cover;
  background-position: center center;
  filter: blur(28px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.9;
  z-index: 0;
}

/* Soft luxury tint over the blurred sides */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(74, 42, 25, 0.20) 0%,
      rgba(255, 255, 255, 0) 18%,
      rgba(255, 255, 255, 0) 82%,
      rgba(74, 42, 25, 0.20) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-media picture {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}


.hero::after {
  display: none;
}

.hero-content,
.hero-info-card {
  display: none !important;
}

/* Tablet and mobile nav */
@media (max-width: 1050px) {
  .site-header {
    top: 14px;
  }

  .nav-wrap {
    height: 68px;
    padding: 0 12px;
  }

  .nav-links,
  .header-cta {
    display: none !important;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
  width: 102px;
  height: 76px;
  flex-basis: 102px;
  border-radius: 18px;
  transform: translateY(0);
}

.logo img {
  width: 96px;
  max-width: none;
  transform: scale(1.08);
}

  .mobile-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: block;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(201, 154, 63, 0.32);
    box-shadow: 0 24px 70px rgba(60, 33, 21, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .menu-open .mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel a {
    display: block;
    padding: 14px 12px;
    color: var(--brown-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(112, 69, 46, 0.14);
  }

  .mobile-panel a:last-child {
    border-bottom: 0;
  }
}

/* Mobile hero correction */
@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    top: 12px;
  }

  .container.nav-wrap {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    height: 62px;
    border-radius: 999px;
  }

  .logo {
    width: 92px;
    height: 70px;
    flex-basis: 92px;
    border-radius: 16px;
    transform: translateY(0);
  }

  .logo img {
    width: 88px;
    max-width: none;
    transform: scale(1.08);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: block !important;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #ead9bf;
}

.hero-media {
  inset: 0;
  background: #ead9bf;
}

.hero-media::before {
  background:
    linear-gradient(
      rgba(77, 45, 27, 0.08),
      rgba(77, 45, 27, 0.08)
    ),
    url("../img/banner-mob.jpg");
  background-size: cover;
  background-position: center center;
  filter: blur(24px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.9;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: contain;
  object-position: center center;
}

/* .hero-media {
  inset: 0;
  background: #ead9bf;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: contain;
  object-position: center center;
} */

@media (max-width: 420px) {
  .container.nav-wrap {
    width: calc(100% - 22px);
  }

  .logo {
  width: 100px;
  height: 90px;
  flex-basis: 88px;
}

.logo img {
  width: 84px;
  max-width: none;
  transform: scale(1.08);
}

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}}

/* =========================================================
   Hero Web Text Overlay
   ========================================================= */

.hero-web-copy {
  position: absolute;
  left: clamp(90px, 10vw, 190px);
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 720px;
  pointer-events: none;
}

.hero-web-copy p {
  margin: 0 0 18px;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(86, 53, 34, 0.82);
}

.hero-web-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.8vw, 108px);
  line-height: 0.98;
  font-weight: 540;
  letter-spacing: -0.055em;
  color: #ffffff;
  text-shadow:
    0 5px 20px rgba(71, 42, 25, 0.22),
    0 1px 0 rgba(88, 54, 35, 0.18);
}

.hero-web-copy h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, #c99a3f, rgba(201, 154, 63, 0));
}

/* Hide hero text on mobile */
@media (max-width: 720px) {
  .hero-web-copy {
    display: none !important;
  }
}
/* =========================================================
   Final Developer Logos + Footer Logo Fix
   ========================================================= */

.developer-logo-grid .dev-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.055));
}

.dev-logo-box {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(233, 207, 148, 0.38);
  box-shadow: 0 18px 48px rgba(20, 12, 8, 0.16);
}

.dev-logo-box img {
  width: 100%;
  max-width: 260px;
  max-height: 92px;
  object-fit: contain;
}

.hs-logo-box img {
  max-width: 245px;
}

.hv-logo-box img {
  max-width: 270px;
}

.site-footer .footer-logo {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #fffaf2;
  border: 1px solid rgba(233, 207, 148, 0.36);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.site-footer .footer-logo img {
  width: 100px;
  height: auto;
  margin: 0;
  filter: none !important;
}

@media (max-width: 720px) {
  .dev-logo-box {
    min-height: 110px;
    padding: 18px;
  }

  .dev-logo-box img {
    max-height: 78px;
  }

  .site-footer .footer-logo {
    width: 98px;
    height: 98px;
    border-radius: 18px;
  }

  .site-footer .footer-logo img {
    width: 88px;
  }
}
