:root {
  --navy: #071526;
  --navy-2: #0d2035;
  --navy-3: #142b45;
  --gold: #c9a96e;
  --gold-2: #e3cfaa;
  --ice: #f6f8fb;
  --white: #ffffff;
  --ink: #142033;
  --muted: #667085;
  --line: rgba(20, 43, 69, 0.14);
  --shadow: 0 24px 70px rgba(7, 21, 38, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 38, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 207, 170, 0.16);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 188px;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--navy) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.nav-cta:hover {
  background: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 21, 38, 0.95), rgba(7, 21, 38, 0.82)),
    url("Manual.png") center/420px auto;
  color: var(--white);
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 64px;
  align-items: center;
  padding: 96px 0 70px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.dark,
.section-label {
  color: #806337;
}

.hero h1,
.section-head h2,
.split h2,
.authority h2,
.dark-band h2,
.faq-grid h2,
.cta-box h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.hero-actions,
.cta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 16px 35px rgba(201, 169, 110, 0.24);
}

.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.btn-ghost,
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover,
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  max-width: 710px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.portrait-card {
  margin: 0;
  position: relative;
  border: 1px solid rgba(227, 207, 170, 0.34);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.portrait-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.portrait-card figcaption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.portrait-card figcaption img {
  width: 52px;
}

.portrait-card figcaption span {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.search-intent {
  background: var(--ice);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.intent-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
}

.intent-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.12;
}

.intent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intent-tags a {
  padding: 9px 14px;
  border: 1px solid rgba(20, 43, 69, 0.14);
  background: var(--white);
  color: var(--navy-3);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-pad {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.authority-grid,
.split,
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
}

.authority article {
  padding: 38px;
  background: var(--navy);
  color: var(--white);
  min-height: 100%;
}

.authority article i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(227, 207, 170, 0.35);
  margin-bottom: 28px;
}

.authority h2,
.split h2,
.dark-band h2,
.faq-grid h2,
.cta-box h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.authority article p,
.rich-text p,
.section-head p,
.feature-list span,
.cta-box p {
  color: var(--muted);
}

.authority article p,
.dark-band .feature-list span,
.dark-band h2,
.dark-band .eyebrow,
.cta-box h2,
.cta-box p {
  color: rgba(255, 255, 255, 0.8);
}

.authority article h2,
.dark-band h2,
.cta-box h2 {
  color: var(--white);
}

.authority-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.authority-points div,
.area-card,
.post-card,
.team-card,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(20, 43, 69, 0.06);
}

.authority-points div {
  padding: 28px;
}

.authority-points strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.authority-points h3,
.area-card h3,
.post-card h3,
.team-card h3 {
  margin: 10px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.18;
}

.authority-points p,
.area-card p,
.post-card p,
.team-card span,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rich-text {
  font-size: 1rem;
}

.text-link,
.area-card a,
.post-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #8b6b35;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.areas-grid,
.blog-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.area-card,
.post-card {
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.55);
  box-shadow: var(--shadow);
}

.area-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  margin-bottom: 18px;
}

.dark-band,
.cta-section {
  background:
    linear-gradient(110deg, rgba(7, 21, 38, 0.96), rgba(13, 32, 53, 0.94)),
    url("Manual.png") center/420px auto;
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.feature-list i {
  color: var(--gold-2);
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center top;
}

.team-card div {
  padding: 24px;
}

.team-card p,
.post-card span {
  margin: 0;
  color: #8b6b35;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-head {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.post-card {
  min-height: 288px;
  display: flex;
  flex-direction: column;
}

.post-card a {
  margin-top: auto;
  padding-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.faq-list p {
  padding-top: 12px;
}

.cta-section {
  padding: 72px 0;
}

.cta-box {
  justify-content: space-between;
  gap: 34px;
}

.cta-box > div {
  max-width: 750px;
}

.site-footer {
  background: #050f1c;
  color: rgba(255, 255, 255, 0.76);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 42px;
}

.footer-grid img {
  width: 190px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-family: var(--serif);
}

.footer-grid a,
.footer-grid span {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 9px 0;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  z-index: 40;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  font-size: 1.65rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--navy);
    border: 1px solid rgba(227, 207, 170, 0.18);
  }

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

  .main-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-grid,
  .intent-grid,
  .authority-grid,
  .split,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 70px;
  }

  .authority-points,
  .areas-grid,
  .blog-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 156px;
  }

  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .hero-grid {
    gap: 34px;
    padding: 52px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .hero-actions,
  .trust-row,
  .cta-box,
  .blog-head,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-row,
  .authority-points,
  .areas-grid,
  .blog-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card figcaption {
    position: static;
    margin-top: 14px;
    grid-template-columns: 54px 1fr;
  }

  .section-pad {
    padding: 66px 0;
  }

  .area-card,
  .post-card,
  .authority article,
  .authority-points div {
    padding: 24px;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
