:root {
  --bg: #f2f6f7;
  --surface: #ffffff;
  --surface-alt: #e4edef;
  --text: #10222a;
  --text-muted: #48606a;
  --border: rgba(16, 34, 42, 0.12);
  --accent: #125e6e;
  --accent-2: #c2803d;
  --secondary: #1a3a45;
  --on-accent: #ffffff;
  --dark: #0c1c23;
  --radius: 2px;
  --radius-btn: 0px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75em;
}

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band-alt {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.band-surface {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.band-dark {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--on-accent);
}

.band-dark h2,
.band-dark p {
  color: var(--on-accent);
}

.band-dark a {
  color: var(--accent-2);
}

.band-dark a:hover {
  color: var(--on-accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand img {
  width: 28px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-contact {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-btn);
}

.nav-contact:hover {
  background: var(--surface-alt);
  color: var(--secondary);
}

.nav-contact[aria-current="page"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 40px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-btn);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.2;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn-block {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
}

.btn-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.hero {
  padding: calc(var(--section-pad) - 12px) 0 var(--section-pad);
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  text-align: center;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 1.2em;
}

.hero-notice {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 640px;
  margin: 0 auto;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: end;
  max-width: 900px;
  margin: 0 auto;
}

.hero-frame {
  margin: 0;
  text-align: left;
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.hero-frame:hover img {
  transform: scale(1.02);
}

.hero-frame:nth-child(1) img {
  height: 160px;
}

.hero-frame:nth-child(2) img {
  height: 260px;
}

.hero-frame:nth-child(3) img {
  height: 200px;
}

.hero-frame figcaption {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cat-rows {
  border-top: 1px solid var(--border);
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

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

.cat-row h3 {
  margin: 0;
  font-size: 20px;
}

.cat-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cat-row .cat-go {
  color: var(--accent);
  font-size: 13px;
  white-space: nowrap;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.region-tile {
  background: var(--surface);
  padding: 22px 20px;
}

.region-tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.region-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.feedback {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.feedback-intro p {
  color: var(--text-muted);
  margin: 0;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

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

.quote p {
  margin: 0 0 10px;
  font-size: 14px;
}

.quote cite {
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.closing-cta {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.page-head {
  padding: calc(var(--section-pad) - 16px) 0 36px;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  border-bottom: 1px solid var(--border);
}

.page-head p {
  max-width: 680px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.venue-card:hover .venue-photo img {
  transform: scale(1.02);
}

.venue-photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--border);
}

.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.venue-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.venue-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.3;
}

.venue-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text);
}

.venue-region {
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
}

.venue-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
}

.venue-card.order-bottom {
  flex-direction: column;
}

.venue-card.order-bottom .venue-photo {
  order: 2;
  border-bottom: none;
  border-top: 1px solid var(--border);
}

.venue-card.order-bottom .venue-body {
  order: 1;
}

.venue-card.order-bottom .btn {
  order: 3;
  margin: 0 16px 16px;
  width: calc(100% - 32px);
}

.venue-card.order-top .btn {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
}

.venue-card.order-top .venue-body {
  flex: 1;
}

.water-card .venue-photo {
  aspect-ratio: 4 / 3;
}

.water-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}

.water-card h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 26px);
}

.flag-stack {
  display: flex;
  flex-direction: column;
}

.flag-band {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.flag-band:last-child {
  border-bottom: none;
}

.flag-photo {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  max-height: 420px;
}

.flag-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.flag-band:hover .flag-photo img {
  transform: scale(1.02);
}

.flag-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.flag-copy h2 {
  margin-bottom: 10px;
}

.flag-region {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.flag-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 16px;
  border: none;
}

.flag-copy p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.catalog-close {
  padding: 40px 0 var(--section-pad);
  text-align: center;
}

.catalog-close p {
  max-width: 640px;
  margin: 0 auto 12px;
  color: var(--text-muted);
}

.insights-lead {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
  font-family: var(--font-heading);
  max-width: 900px;
  margin-bottom: 40px;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.insights-grid section h2 {
  margin-bottom: 12px;
}

.insights-grid section p {
  color: var(--text-muted);
  font-size: 14px;
}

.alt-bands .alt-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.alt-bands .alt-band:last-child {
  border-bottom: none;
}

.alt-bands .alt-band:nth-child(even) .alt-copy {
  order: 2;
}

.alt-bands .alt-band:nth-child(even) .alt-photo {
  order: 1;
}

.alt-photo {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.alt-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 360px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.alt-band:hover .alt-photo img {
  transform: scale(1.02);
}

.alt-copy p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.agree-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.agree-row label a {
  color: var(--accent);
}

.field-error {
  display: block;
  color: #8b2e2e;
  font-size: 12px;
  margin-top: 6px;
}

.form-status[aria-live] {
  margin-top: 12px;
  font-size: 13px;
  color: #8b2e2e;
}

.contact-email {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.confirm-panel {
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-body {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.legal-body h1 {
  margin-bottom: 8px;
}

.legal-body > .wrap > p:first-of-type {
  color: var(--text-muted);
  font-size: 13px;
}

.legal-body h2 {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.legal-body h3 {
  margin-top: 1.2em;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  font-size: 14px;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-independence {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 16px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
}

.footer-band {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.footer-band:last-child {
  border-bottom: none;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand-row .brand {
  margin-bottom: 8px;
}

.footer-about {
  margin: 0;
  max-width: 520px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 12px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin-bottom: 8px;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-bottom {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0 0 8px;
}

.footer-requisites {
  font-size: 11px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.footer-consent-line {
  margin-top: 4px;
}

.footer-consent-line button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.footer-consent-line button:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
}

.consent-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.consent-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.consent-copy a {
  color: var(--accent);
}

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-actions button {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.consent-actions button[data-action="accept"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-actions button[data-action="reject"] {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.consent-banner[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flag-photo img {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-contact {
    display: none;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--border);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links .nav-contact-mobile {
    display: block;
    margin-top: 8px;
    text-align: center;
    border: 1px solid var(--border);
    padding: 10px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .alt-bands .alt-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .alt-bands .alt-band:nth-child(even) .alt-copy,
  .alt-bands .alt-band:nth-child(even) .alt-photo {
    order: initial;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    max-width: none;
  }

  .hero-frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frame:nth-child(1) img,
  .hero-frame:nth-child(2) img,
  .hero-frame:nth-child(3) img {
    height: 220px;
  }

  .cat-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps::before {
    display: none;
  }

  .feedback {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .masonry {
    grid-template-columns: 1fr;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-contact-desktop {
    display: none;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .contact-panel {
    padding: 20px 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions button {
    width: 100%;
  }

  .flag-photo img {
    height: 220px;
  }

  .brand-text {
    font-size: 13px;
  }
}

.nav-contact-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-links .nav-contact-mobile {
    display: block;
  }
}
