:root {
  --navy: #1a2744;
  --navy-deep: #131d35;
  --red: #c41e3a;
  --red-dark: #a01730;
  --gold: #c9a227;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e2e6ec;
  --shadow-sm: 0 8px 24px rgba(19, 29, 53, 0.08);
  --shadow-md: 0 18px 48px rgba(19, 29, 53, 0.14);
  --radius-lg: 16px;
  --radius-md: 12px;
  --font-display: "Poppins", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* TOP ACCENT BAR */

.top-accent {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 35%, var(--red) 65%, transparent 100%);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-image {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

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

.main-nav a.is-active {
  color: var(--red);
}

.header-button {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(196, 30, 58, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-button:hover {
  background: #a01730;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(26, 39, 68, 0.26);
}

.button.primary:hover {
  background: var(--navy-deep);
}

.button.outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* SECTIONS - shared */

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.01em;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding: 0 28px;
}

.section-heading.center h2::before,
.section-heading.center h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: var(--line);
}

.section-heading.center h2::before {
  right: 100%;
}

.section-heading.center h2::after {
  left: 100%;
}

/* CONTACT HERO */

.contact-hero {
  background: var(--off-white);
  padding: 72px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 560px;
}

.contact-info-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.contact-info {
  padding: 8px 56px 64px 0;
  max-width: 560px;
}

.contact-info h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 46px);
  letter-spacing: 0.01em;
  color: var(--navy);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 40px;
}

.ornament-line {
  display: block;
  width: 180px;
  height: 3px;
  background: var(--gold);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--navy);
  margin-top: 2px;
}

.contact-text {
  display: grid;
  gap: 4px;
}

.contact-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.18s ease;
}

a.contact-value:hover {
  color: var(--red);
}

.contact-address {
  font-weight: 500;
  line-height: 1.55;
}

.contact-visual {
  position: relative;
  min-height: 420px;
}

.contact-image-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.contact-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 6%, black 16%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 6%, black 16%);
}

/* MAP */

/* FOOTER */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 26px 0;
}

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

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.85);
}

a.footer-item:hover {
  color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-info-wrap {
    height: auto;
  }

  .contact-info {
    padding: 32px 0 36px;
    max-width: none;
  }

  .contact-visual {
    min-height: 320px;
  }

  .contact-image-frame {
    position: relative;
    height: 320px;
    border-radius: 14px;
    margin: 0 0 8px;
  }

  .contact-image-frame img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 760px) {
  .header-button { display: none; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(19,32,58,0.14);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

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

  .main-nav a { width: 100%; padding: 10px 0; }

  .nav-toggle { display: flex; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1180px); }
  .logo-image { height: 48px; }
}
