:root {
  --brand-blue: #288fce;
  --brand-blue-dark: #0b3f68;
  --brand-blue-deep: #082f50;
  --brand-blue-soft: #eaf6fc;
  --white: #ffffff;
  --ink: #173247;
  --muted: #5d7180;
  --line: #d9e8f1;
  --shadow: 0 20px 50px rgba(8, 47, 80, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: var(--brand-blue-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand img {
  width: 242px;
  height: auto;
}

.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  text-decoration: none;
  line-height: 1.25;
}

.phone-label {
  color: #bde3f6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-link strong {
  font-size: 1.05rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(40, 143, 206, 0.32), transparent 32%),
    linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue-dark) 58%, #126a9c 100%);
  color: var(--white);
  padding: 78px 0 86px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9fd9f5;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #e8f5fb;
  font-size: 1.16rem;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.button-primary:hover {
  background: #1683c4;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  color: var(--brand-blue-deep);
  background: var(--white);
}

.button-full {
  width: 100%;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  object-position: center;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-accent {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 130px;
  height: 130px;
  border-left: 10px solid var(--brand-blue);
  border-bottom: 10px solid var(--brand-blue);
  border-radius: 0 0 0 28px;
}

.about-section {
  padding: 92px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 70px;
  align-items: start;
}

.about-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-card {
  padding: 34px;
  background: var(--brand-blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 1.85rem;
}

.contact-item {
  padding: 18px 0;
  border-top: 1px solid #c9e1ee;
}

.contact-label {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(40, 143, 206, 0.45);
  text-underline-offset: 3px;
}

.contact-item p {
  margin-bottom: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(8, 47, 80, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.gallery-card-wide img {
  object-position: center;
}

.gallery-card figcaption {
  padding: 17px 20px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.coming-soon {
  padding: 58px 0;
  color: var(--white);
  background: var(--brand-blue);
}

.coming-soon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.coming-soon h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-kicker.light {
  color: #d9f2ff;
}

.site-footer {
  padding: 30px 0;
  color: #c8dce8;
  background: var(--brand-blue-deep);
}

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

.footer-inner img {
  width: 190px;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .content-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .content-grid {
    gap: 44px;
  }

  .gallery-card img {
    height: auto;
    max-height: 480px;
  }
}

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

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

  .brand img {
    width: 190px;
  }

  .phone-label {
    display: none;
  }

  .phone-link strong {
    font-size: 0.92rem;
  }

  .hero {
    padding: 58px 0 68px;
  }

  .hero-actions,
  .coming-soon-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .coming-soon .button {
    width: 100%;
  }

  .about-section {
    padding: 68px 0;
  }

  .contact-card {
    padding: 26px;
  }

  .gallery-section {
    padding-bottom: 68px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
