﻿@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap");

:root {
  color-scheme: light;
  --blue: #2f4f86;
  --gold: #d7a23a;
  --text: #1f1f1f;
  --muted: #6a6a6a;
  --line: #222;
  --light-line: #d9d9d9;
  --navy: #0e3160;
  --gold-soft: #c59d5f;
  --grey: #bdc3c7;
  --error: #e74c3c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
}

.brand {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.logo-text {
  letter-spacing: 0.01em;
}

.logo-gual {
  color: var(--blue);
}

.logo-street {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 2px;
}

.nav-link.is-active {
  background: #111;
  color: #fff;
}

.nav-link.icon {
  padding: 4px 6px;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 2;
  fill: none;
}

.page {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  margin-top: 10px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo-image {
  width: min(560px, 92vw);
  height: auto;
  display: block;
}

.intro h1,
.hero-simple h1 {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.divider {
  width: min(520px, 90vw);
  height: 2px;
  background: var(--line);
  margin: 18px auto 0;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.section h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 120px;
  width: 100%;
  max-width: 900px;
}

.strategy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.strategy-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.1rem;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.strategy-title .highlight {
  color: var(--gold);
}

.strategy-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.strategy-image {
  width: min(400px, 85vw);
  height: auto;
  display: block;
}

.strategy-image--savings {
  width: 330px;
}

.strategy-image--investments {
  width: 360px;
}

.strategy-image--diversification {
  width: 330px;
}

.strategy-label {
  margin-top: 6px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
}

.strategy-label--savings {
  margin-top: 22px;
}

.strategy-label--investments {
  margin-top: 4px;
}

.strategy-label--diversification {
  margin-top: 22px;
}

.contact-line {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.email {
  color: var(--text);
}

.hero-simple {
  margin-top: 30px;
}

.body-text {
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 18px 6vw 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-page {
  align-items: center;
}

.contact-shell {
  width: min(520px, 92vw);
  margin-top: 30px;
  border: 1px solid #e0e0e0;
  padding: 22px 26px 28px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-shell h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-shell hr {
  border: 0;
  border-top: 1px solid #eee;
  margin-bottom: 18px;
}

.contact-shell label {
  font-size: 14px;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 6px;
}

.contact-shell input,
.contact-shell textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--grey);
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fdfdfd;
  font-family: "Open Sans", Arial, sans-serif;
}

.contact-shell input:focus,
.contact-shell textarea:focus {
  border-color: var(--gold-soft);
  outline: none;
  background-color: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 11px;
  margin-top: -10px;
  margin-bottom: 15px;
}

.btn-container {
  text-align: center;
}

.contact-shell button {
  background-color: var(--navy);
  color: white;
  padding: 12px 35px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s;
}

.contact-shell button:hover {
  opacity: 0.9;
}

#error-msg {
  color: var(--error);
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  text-align: center;
  font-weight: bold;
}

.field-note {
  font-weight: normal;
  font-size: 11px;
  color: #888;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav {
    gap: 10px;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 0.85rem;
  }

  .page {
    padding: 16px 6vw 48px;
  }

  .section {
    text-align: left;
    align-items: flex-start;
  }

  .intro h1,
  .hero-simple h1 {
    text-align: left;
  }

  .strategies {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .strategy {
    align-items: flex-start;
  }

  .strategy-image {
    width: min(320px, 92vw);
    align-self: center;
  }

  .strategy-label {
    align-self: center;
  }
}

@media (max-width: 900px) {
  .strategies {
    gap: 72px;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.35rem;
  }

  .logo-image {
    width: min(480px, 94vw);
  }
}
