: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: 10px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, 'Segoe UI', Arial, sans-serif;
  --max-width: 1180px;
  --section-pad: 108px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.8vw, 28px);
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section--alt {
  background: var(--surface-alt);
}

.section--bg {
  background: var(--bg);
}

.section--surface {
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transition: none;
  }
}

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

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-row .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup:hover {
  color: var(--accent);
}

.brand-lockup img {
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.header-nav-row .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-size: 15px;
  color: var(--text-muted);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

@media (max-width: 900px) {
  .header-nav-row .container {
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    padding: 8px 0;
  }

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

  .site-nav a {
    padding: 14px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

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

  .header-nav-row {
    position: relative;
  }
}

.hero {
  background: var(--surface);
  padding: var(--section-pad) 0 calc(var(--section-pad) + 80px);
  position: relative;
  overflow: hidden;
}

.hero--corner-mark .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.hero--corner-mark h1 {
  grid-column: 1;
  grid-row: 1;
}

.hero--corner-mark .hero-intro {
  grid-column: 2;
  grid-row: 1 / 3;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero--corner-mark .hero-notice {
  grid-column: 1;
  grid-row: 2;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 42ch;
  line-height: 1.6;
}

.hero--corner-mark .hero-photo {
  position: absolute;
  bottom: -60px;
  right: 24px;
  width: clamp(220px, 32vw, 380px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero--corner-mark .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero--corner-mark .hero-intro {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
  }

  .hero--corner-mark .hero-notice {
    grid-row: 3;
  }

  .hero--corner-mark .hero-photo {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 32px auto 0;
    width: min(100%, 320px);
  }

  .hero {
    padding-bottom: var(--section-pad);
  }
}

.page-header {
  padding: calc(var(--section-pad) * 0.75) 0 calc(var(--section-pad) * 0.5);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-header p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: 20px;
  font-size: 18px;
}

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

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 58ch;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) and (min-width: 561px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card-body {
  padding: 28px 28px 32px;
}

.category-card-body h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 28px);
}

.category-card-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.text-link::after {
  content: '→';
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.amenities-band {
  background: var(--surface-alt);
}

.amenities-lead {
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 40px;
  font-size: 18px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.amenity-tile h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.amenity-tile p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

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

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.arrival-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.arrival-card-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  color: var(--surface-alt);
  line-height: 1;
  pointer-events: none;
}

.arrival-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
}

.arrival-card p {
  color: var(--text-muted);
  font-size: 15px;
  position: relative;
}

@media (max-width: 768px) {
  .arrival-grid {
    grid-template-columns: 1fr;
  }
}

.regions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.region-tile h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

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

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

@media (max-width: 480px) {
  .regions-row {
    grid-template-columns: 1fr;
  }
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-strip-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip-item figcaption {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  .photo-strip-item img {
    height: 200px;
  }
}

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

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-row::before {
    display: none;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.catalog-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.catalog-card-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-location {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.catalog-card-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 4px;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
}

.catalog-card-body p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.catalog-card-body .text-link {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.discover-bands {
  display: flex;
  flex-direction: column;
}

.discover-band {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.discover-band + .discover-band {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  box-shadow: none;
  border-radius: 0;
}

.discover-band:first-child {
  box-shadow: var(--shadow-card);
}

.discover-band img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.discover-band-content {
  padding: 40px 32px 44px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.discover-band-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 8px;
}

.discover-band-location {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.discover-band-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.catalog-closing {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 62ch;
}

.editorial-content {
  max-width: 70ch;
  margin: 0 auto;
}

.editorial-section {
  padding: 48px 0;
}

.editorial-section + .editorial-section {
  border-top: 1px solid var(--border);
}

.editorial-section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 24px;
}

.editorial-section p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.editorial-section p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-checkbox label a {
  text-decoration: underline;
}

.form-error {
  color: #a33;
  font-size: 13px;
  margin-top: 6px;
}

.btn-submit {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--secondary);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-confirmation {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.contact-confirmation h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-confirmation p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-confirmation .reference {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent);
  margin: 20px 0;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.legal-content {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content a {
  text-decoration: underline;
}

.sitemap-content {
  padding: var(--section-pad) 0;
  text-align: center;
}

.sitemap-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  line-height: 2;
}

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

.sitemap-links .dot {
  color: var(--text-muted);
  user-select: none;
}

.site-footer {
  background: var(--dark);
  color: var(--on-accent);
}

.footer-brand-band {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-band .container {
  text-align: center;
}

.footer-brand-band .brand-lockup {
  justify-content: center;
  color: var(--on-accent);
  margin-bottom: 20px;
}

.footer-brand-band .brand-lockup:hover {
  color: var(--accent-2);
}

.footer-brand-blurb {
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  margin: 0 auto 16px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-brand-band .contact-email {
  font-size: 16px;
}

.footer-brand-band .contact-email a {
  color: var(--accent-2);
}

.footer-links-row {
  padding: 40px 0;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

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

.footer-col button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-col button:hover {
  color: var(--on-accent);
}

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

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-independence {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-requisites {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  color: var(--on-accent);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
}

.consent-banner.is-hidden {
  display: none;
}

.consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.consent-copy-col p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.consent-copy-col a {
  color: var(--accent-2);
  font-size: 13px;
}

.consent-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.consent-controls-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consent-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.consent-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.consent-category input:disabled {
  opacity: 0.5;
}

.consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--on-accent);
  transition: background 0.2s, border-color 0.2s;
}

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

.consent-btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .consent-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consent-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .consent-buttons {
    flex-direction: column;
  }

  .consent-btn {
    width: 100%;
    text-align: center;
  }
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.cookie-settings-btn:hover {
  color: var(--on-accent);
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }
}

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

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .container {
    padding: 0 16px;
  }
}
