:root {
  --ink: #101820;
  --ink-soft: #172331;
  --muted: #68717d;
  --line: #d9d0c1;
  --paper: #f7f1e7;
  --paper-dark: #e9decd;
  --gold: #c2914d;
  --gold-dark: #8f672e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 60;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 145, 77, 0.18), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.site-header {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(194, 145, 77, 0.26), transparent 30%),
    linear-gradient(120deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.76)),
    url("https://images.unsplash.com/photo-1589391886645-d51941baf7fb?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.is-scrolled {
  padding-block: 14px;
  background: rgba(16, 24, 32, 0.94);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.footer .brand-mark {
  border-color: var(--line);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer .brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  min-height: 100vh;
  padding: 180px clamp(20px, 5vw, 72px) 72px;
}

.hero-content {
  max-width: 930px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::before {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(194, 145, 77, 0.3);
  content: "";
  transform: translate(10px, 10px);
  z-index: -1;
}

.card-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.section {
  padding: 110px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 54px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-weight: 800;
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--paper);
}

.stats article {
  padding: 44px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.stats article:hover {
  background: var(--ink-soft);
  transform: translateY(-5px);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
}

.expertise-section,
.news {
  background: var(--paper-dark);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.expertise-card {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card:hover {
  background: var(--white);
  box-shadow: 0 22px 55px rgba(16, 24, 32, 0.1);
  transform: translateY(-6px);
}

.expertise-card span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-weight: 800;
}

.expertise-card p,
.authority-copy p,
.promise p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.authority {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  background: var(--paper);
}

.authority-visual {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.15), rgba(194, 145, 77, 0.25)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.authority-visual::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
}

.authority-visual span,
.authority-visual strong {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.authority-visual span {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.authority-visual strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
}

.authority-copy p {
  max-width: 680px;
  margin-top: 26px;
  font-size: 1.08rem;
}

.authority-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.authority-points span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--gold-dark);
  font-weight: 800;
}

.promise {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  color: var(--white);
  background: var(--ink);
}

.promise-list {
  display: grid;
  gap: 22px;
}

.promise-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.news-grid article {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-grid article:hover {
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.12);
  transform: translateY(-6px);
}

.news-grid time {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.news-grid a {
  color: var(--gold-dark);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-copy address {
  margin-top: 28px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 15px 16px;
  background: #fbfaf7;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 145, 77, 0.14);
}

.contact-form .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.map-card {
  min-height: 340px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer div {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .nav-links {
    position: fixed;
    inset: 82px 20px auto;
    display: grid;
    gap: 4px;
    padding: 22px;
    background: rgba(16, 24, 32, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .authority,
  .promise,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

  .hero-card {
    max-width: 480px;
  }

  .intro-grid,
  .expertise-grid,
  .news-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  .stats article,
  .expertise-card,
  .contact-form {
    padding: 26px;
  }

  .authority-visual {
    min-height: 360px;
  }

  .footer div,
  .hero-actions {
    flex-direction: column;
  }
}
