:root {
  --olive: #595942;       /* Couch Green – Waynest brand */
  --olive-light: #839C7C; /* lighter sage variant */
  --olive-num: #839C7C;
  --cream: #F9EBCD;       /* Light Gold – Waynest brand */
  --cream-dark: #EDD9A3;  /* darker gold */
  --way-white: #FFFFFF;
  --way-black: #0D0D0D;
  --text-dark: #1a1a1a;   /* primary text */
  --text-mid: #4a4a4a;    /* secondary text */
  --text-muted: #777;
  --bg-white: #ffffff;
  --bg-dark: #0d0d0d;
  --border-light: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 58px;
  width: 58px;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.18));
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1;
}

.nav-link {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link.active {
  color: var(--text-dark);
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn-estimate {
  background: var(--cream);
  color: var(--text-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  font-family: inherit;
}

.btn-estimate:hover {
  background: var(--cream-dark);
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #f2f2f2;
  gap: 2px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #777;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-family: inherit;
}

.lang-btn.active {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 530px;
  background: url('assets/f4e4d4_98bd59217aca40b0a2b7fcfb9a8d0d13~mv2.jpg')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 48px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.68) 55%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin: 0 0 48px;
  line-height: 1.6;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-hero-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

/* ── GUARANTEED RENT ─────────────────────────────────── */
.guaranteed-section {
  background: linear-gradient(180deg, #f8f6ef 0%, #fff 100%);
  border-bottom: 1px solid #efebdf;
}

.guaranteed-wrap {
  max-width: 820px;
  text-align: center;
}

.guaranteed-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 20px;
}

.guaranteed-subtitle {
  margin: 0 auto 28px;
  color: var(--text-mid);
  max-width: 700px;
  line-height: 1.65;
}

.guaranteed-points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.guaranteed-points li {
  border: 1px solid #ece6d7;
  border-radius: 999px;
  background: #fff;
  padding: 8px 10px;
  font-size: 0.83rem;
  color: var(--text-mid);
}

.guaranteed-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── PROPOSAL / PROBLEM / SOLUTION ──────────────────── */
.proposal-section {
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.proposal-wrap {
  max-width: 760px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--olive);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  margin: 0 0 12px;
}

.proposal-subtitle {
  color: var(--text-muted);
  margin: 0 auto 22px;
  max-width: 620px;
  line-height: 1.65;
}

.proposal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1eb456;
  border-color: #1eb456;
}

.problem-section {
  background: #fafafa;
}

.problem-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.problem-list li {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-mid);
}

.solution-section {
  background: #fafaf8;
}

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

.solution-card {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.solution-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.solution-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── HOW WE MAXIMISE ─────────────────────────────────── */
.section {
  padding: 72px 0;
}

.how-section {
  background: #fff;
  border-bottom: 1px solid #efebdf;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 52px;
  font-weight: 600;
}

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

.step-card {
  text-align: center;
  padding: 0 20px;
}

.step-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 12px;
}

.step-card p {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ── SERVICES GRID ───────────────────────────────────── */
.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
}

.service-label {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ACCOMMODATION PACKS ────────────────────────────── */
.packs-section {
  background: #f9f8f4;
  border-top: 1px solid #efebdf;
  border-bottom: 1px solid #efebdf;
}

.packs-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* ── SERVICES REVEAL ────────────────────────────────── */
.services-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

.services-reveal.open {
  max-height: 1400px;
}

.services-reveal-inner {
  padding-top: 52px;
  padding-bottom: 8px;
}

.services-reveal-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.services-reveal-btn {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

.packs-title {
  text-align: left;
  margin-bottom: 10px;
}

.packs-subline {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin: 0 0 28px;
  line-height: 1.5;
  font-weight: 400;
}

.packs-copy p {
  margin: 0 0 10px;
  color: var(--text-mid);
  line-height: 1.65;
}

.packs-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.packs-text-cta {
  display: inline;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.packs-text-cta:hover {
  opacity: 0.7;
}

.btn-outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}

.btn-outline:hover {
  background: rgba(74, 92, 58, 0.08);
}

.packs-media img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── PORTFOLIO ──────────────────────────────────────── */
.portfolio-section .section-title {
  margin-bottom: 10px;
}

.portfolio-subtitle {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  background: #f6f6f6;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  position: relative;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.portfolio-card:hover .portfolio-card-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.portfolio-card-icon {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}

.portfolio-card:hover .portfolio-card-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── CHECK PRICES BUTTON ────────────────────────────── */
.btn-check-prices {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--olive);
  border: 1.5px solid var(--olive);
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.btn-check-prices:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  box-shadow: 0 4px 14px rgba(0,0,0,0.16);
}

/* ── CLEANING OPERATIONS & MGMT PACKS ───────────────── */
.cleaning-ops-section {
  background: #fafaf8;
}

.mgmt-packs-section {
  background: #fff;
  border-top: 1px solid #efebdf;
}

.mgmt-view-all {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-view-packs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  border-radius: 6px;
  padding: 11px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}

.btn-view-packs:hover {
  background: var(--olive);
  color: #fff;
}

.mgmt-grid {
  max-width: 520px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

/* ── PRICING DETAILS ────────────────────────────────── */
.pricing-details-section {
  background: #f8f7f3;
  border-top: 1px solid #efebdf;
  border-bottom: 1px solid #efebdf;
  display: none;
}

.pricing-details-section.visible {
  display: block;
}

.pricing-conditions {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

.btn-book-cleaning {
  font-size: 1rem;
  padding: 13px 24px;
  font-weight: 700;
}

/* ── PRICING + PROMO ────────────────────────────────── */
.pricing-section {
  background: #fff;
}

.pricing-section .section-title {
  margin-bottom: 10px;
}

.pricing-subtitle {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.price-card {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.price-card ul {
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.price-card.featured {
  border-color: var(--olive);
  box-shadow: 0 4px 20px rgba(74, 92, 58, 0.08);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.price-card-price {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.55;
}

.featured-badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing-extras {
  margin-top: 16px;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 16px;
  background: #fcfcfc;
}

.pricing-extras h3 {
  margin: 0 0 8px;
}

.pricing-extras p {
  margin: 0 0 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-cta-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-section {
  background: #f8f7f3;
  border-top: 1px solid #efebdf;
  border-bottom: 1px solid #efebdf;
}

.form-success {
  display: none;
}

.promo-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.promo-title {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.promo-wrap p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.promo-form {
  border: 1px solid #ece8dc;
  border-radius: 12px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.promo-form .btn {
  margin-top: 20px;
  width: 100%;
  font-size: 1rem;
  padding: 15px 26px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.16);
}

/* ── DARK CTA SECTION ────────────────────────────────── */
.dark-section {
  background: #0d0d0d;
  padding: 72px 0;
}

.dark-section-content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.dark-section-content h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin: 0 0 16px;
  font-weight: 600;
}

.dark-section-content p {
  color: #999;
  font-size: 0.98rem;
  margin: 0 0 30px;
  line-height: 1.6;
}

.btn-cta-dark {
  background: #fff;
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  padding: 17px 42px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.btn-cta-dark:hover {
  background: #f0ede6;
  box-shadow: 0 6px 28px rgba(255,255,255,0.22);
}

/* ── VIDEO SECTION ───────────────────────────────────── */
.video-section {
  background: #0d0d0d;
  padding: 60px 0;
}

.video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.brand-video {
  width: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  border: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  cursor: default;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer p {
  color: #555;
  font-size: 0.78rem;
  margin: 0;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-instagram:hover {
  color: #fff;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  color: var(--text-dark);
  opacity: 0.6;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.nav-instagram:hover {
  opacity: 1;
}

/* ── MODAL ───────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-panel {
  position: relative;
  width: min(600px, 94%);
  margin: 4vh auto;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  max-height: 92vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  color: #444;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-panel h3 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.modal-subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

label {
  display: block;
  margin: 18px 0 6px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}

input,
select {
  width: 100%;
  border: 1.5px solid #ddd;
  background: #fafafa;
  color: var(--text-dark);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
select:focus {
  outline: 2px solid var(--olive);
  border-color: var(--olive);
}

/* ── SHARED BUTTON ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  background: var(--olive-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.btn-ghost {
  background: transparent;
  border-color: #aaa;
  color: var(--text-dark);
}

.btn-ghost:hover {
  background: #f0ede6;
  border-color: #888;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.microcopy {
  margin-top: 10px;
  color: #aaa;
  font-size: 0.8rem;
}

.hidden {
  display: none;
}

.lang-panel {
  max-width: 420px;
  text-align: center;
}

.lang-chooser-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ── HAMBURGER ──────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 7px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reduce service card height in 2-col layout so they don't tower */
  .service-card {
    aspect-ratio: 4 / 3;
  }

  .packs-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .packs-actions {
    justify-content: center;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid,
  .pricing-grid,
  .promo-wrap {
    grid-template-columns: 1fr;
  }

  .guaranteed-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamburger {
    display: flex;
  }

  /* Hide CTA button on all mobile/tablet sizes to prevent header overflow */
  .btn-estimate {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
    z-index: 99;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 440px;
    padding: 60px 0 32px;
  }

  /* Single-column portfolio so cards aren't too narrow on small phones */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Service cards go full-width and landscape ratio on small phones */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 16 / 9;
  }

  /* Larger service label text on mobile */
  .service-label {
    font-size: 0.85rem;
  }

  /* Guaranteed points collapse to 1 column on small phones */
  .guaranteed-points {
    grid-template-columns: 1fr;
  }

  .guaranteed-points li {
    border-radius: 10px;
    padding: 10px 16px;
  }

  .promo-form {
    width: 100%;
    padding: 14px;
  }

  .pricing-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta-row .btn {
    text-align: center;
    justify-content: center;
  }

  /* Reduce section vertical padding so content isn't spaced too far apart */
  .section {
    padding: 48px 0;
  }

  /* Proposal / CTA buttons full-width stacked on tiny screens */
  .proposal-actions,
  .guaranteed-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .proposal-actions .btn,
  .guaranteed-actions .btn {
    text-align: center;
    justify-content: center;
  }
}
