:root {
  --navy: #142440;
  --navy-dark: #071a33;
  --gold: #c6a25a;
  --white: #ffffff;
  --text: #111827;
  --muted: #566173;
  --border: #d9dee7;
  --shadow: 0 18px 44px rgba(7, 26, 51, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 24px 22px;
  background: var(--white);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: min(360px, 72vw);
  height: auto;
  display: block;
}

.hero {
  background: var(--white);
  padding: clamp(34px, 5vw, 68px) 24px clamp(50px, 6vw, 84px);
  text-align: center;
}

.hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.hero h1 {
  margin: 0 auto;
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.intro-section {
  background: #fff;
  padding: clamp(28px, 4vw, 54px) 24px clamp(48px, 6vw, 80px);
  text-align: center;
}

.intro-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.intro-inner p {
  margin: 0 auto;
  font-size: clamp(1.16rem, 2.1vw, 1.72rem);
  line-height: 1.55;
}

.intro-inner p + p { margin-top: 28px; }

.contact-cta {
  background: #fff;
  text-align: center;
  padding: 10px 24px 70px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 18px 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.contact-button::before {
  content: "✉";
  margin-right: 12px;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.24);
  outline: none;
}

.office-section {
  background: #fff;
  padding: 25px 24px 90px;
  text-align: center;
}

.office-inner {
  width: min(1040px, 100%);
  margin: auto;
}

.office-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.office-section h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  background: var(--gold);
  margin: 22px auto 30px;
}

.office-address {
  display: inline-grid;
  grid-template-columns: 34px auto;
  gap: 18px;
  text-align: left;
  margin-bottom: 34px;
}

.pin {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 0 8px rgba(198, 162, 90, 0.16);
}

address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5;
}

.map-wrap {
  width: min(960px, 100%);
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #f6f8fb;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* FOOTER */

.site-footer {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  border-top: 4px solid var(--gold);
  color: #fff;
  padding: 24px 40px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-logo img {
  display: block;
  width: 145px;
  max-width: 145px;
  height: auto;
}

.footer-left {
  position: absolute;
  right: calc(50% + 145px);
  width: 330px;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.4;
}

.footer-company {
  position: absolute;
  left: calc(50% + 145px);
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-company p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 900px) {
  .footer-container {
    position: static;
    min-height: auto;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-logo,
  .footer-left,
  .footer-company {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
  }

  .footer-logo img {
    width: 130px;
    max-width: 130px;
  }

  .footer-company {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .site-header { padding-top: 26px; }

  .logo { width: min(290px, 76vw); }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 3.35rem);
  }

  .intro-inner p { font-size: 1.08rem; }

  .contact-button { width: min(100%, 320px); }

  .map-wrap iframe { height: 340px; }

  .site-footer { padding: 30px 22px; }

  .footer-button { width: min(100%, 260px); }
}