:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --dark: #122029;
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-btn: 999px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --max: 1160px;
  --section-pad: 112px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  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: 3px;
}

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

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

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

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

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

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  opacity: 0.7;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

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

.text-link::after {
  content: "→";
}

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

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 39px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
}

.nav-contact a:hover,
.nav-contact a[aria-current="page"] {
  color: var(--secondary);
  border-bottom-color: var(--accent-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 3rem;
  align-items: end;
  position: relative;
}

.hero-copy h1 {
  margin-bottom: 0;
  max-width: 14ch;
}

.hero-intro {
  grid-column: 1;
  padding-left: min(18vw, 180px);
  max-width: 42ch;
  color: var(--text-muted);
  margin-top: 1.75rem;
}

.hero-notice {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 68ch;
  line-height: 1.6;
}

.hero-photo {
  justify-self: end;
  width: min(100%, 380px);
  margin-bottom: -56px;
  position: relative;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: transform 0.25s ease;
}

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

.category-card h3 {
  margin-bottom: 0.65rem;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.regions-band {
  text-align: center;
}

.regions-band .lead {
  max-width: 52ch;
  margin: 0 auto 3rem;
}

.regions-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: 0.4px;
  line-height: 1.2;
  color: var(--on-accent);
}

.regions-type span {
  opacity: 0.92;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  border-top: 1px solid var(--border);
}

.amenities-list > div {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.amenities-list dt {
  font-weight: 700;
  margin: 0;
}

.amenities-list dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.about-approach {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.about-approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.look-item {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.look-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.look-item h3 {
  margin-bottom: 0.75rem;
}

.look-item p {
  color: var(--text-muted);
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.closing-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-hero {
  padding: calc(var(--section-pad) - 32px) 0 3rem;
  background: var(--bg);
}

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

.catalog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.75rem;
}

.catalog-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

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

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

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

.venue-card__body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.35rem;
}

.venue-card__rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  border: 0;
  margin: 0.85rem 0 1rem;
}

.venue-meta {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.venue-card__body > p:not(.venue-meta) {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.venue-card__body .text-link {
  margin-top: auto;
}

.venue-card--featured img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.venue-card--featured .venue-card__body {
  padding: 2rem 1.75rem 2rem;
}

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

.quiet-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.quiet-band:first-child {
  border-top: 1px solid var(--border);
}

.quiet-band img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  transition: transform 0.25s ease;
}

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

.quiet-band__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quiet-band__content .kicker {
  margin-bottom: 0.75rem;
}

.quiet-band__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.catalog-close p {
  max-width: 52ch;
  margin: 0 auto 1rem;
  color: var(--text-muted);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.editorial-index {
  position: sticky;
  top: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.editorial-index a {
  display: block;
  padding: 0.55rem 0 0.55rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.editorial-index a:hover,
.editorial-index a:focus {
  color: var(--text);
  border-left-color: var(--accent);
}

.editorial-prose section {
  padding: 0 0 3.5rem;
  scroll-margin-top: 110px;
}

.editorial-prose h2 {
  margin-bottom: 1.25rem;
}

.editorial-prose p {
  color: var(--text-muted);
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: var(--section-pad);
}

.contact-wrap > .lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.form-field {
  margin-bottom: 1.35rem;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

.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: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.agree-row input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

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

.field-error {
  display: block;
  margin-top: 0.45rem;
  font-size: 13px;
  color: #8b2e2e;
}

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

.contact-email-line {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.contact-email-line a {
  color: var(--accent);
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.confirm-ref {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 1.5rem 0;
}

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 760px;
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2rem;
}

.legal-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
}

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

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

.sitemap-list a {
  display: block;
  padding: 1.15rem 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}

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

.site-footer {
  background: var(--surface-alt);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

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

.footer-group li {
  margin-bottom: 0.45rem;
}

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

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

.footer-brand-block .brand {
  margin-bottom: 1.25rem;
}

.footer-brand-block p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.footer-regions {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-mail {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.4px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta button {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-backdrop[hidden] {
  display: none;
}

.consent-modal {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  max-width: 520px;
  width: 100%;
  padding: 1.75rem 1.75rem 1.5rem;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
}

.consent-modal h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 0.75rem;
}

.consent-modal p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0.85rem;
}

.consent-policy-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 14px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.consent-actions .consent-accept {
  order: -1;
}

.consent-manage {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  padding: 0.35rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-cats {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.consent-cats.is-open {
  max-height: 420px;
}

.consent-cat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}

.consent-cat:last-child {
  border-bottom: 1px solid var(--border);
}

.consent-cat label {
  font-size: 14px;
  color: var(--text);
}

.consent-cat label span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.consent-cat input:disabled {
  opacity: 0.7;
}

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

  .category-grid,
  .catalog-grid-3 {
    gap: 2rem 1.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .about-approach {
    gap: 2rem;
  }
}

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .nav.is-open .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open .nav-contact {
    display: block;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-bottom: 0.75rem;
  }

  .category-grid,
  .catalog-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editorial-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }

  .editorial-index a {
    border-left: none;
    padding: 0.25rem 0;
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

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

  .hero-intro {
    padding-left: 0;
    max-width: none;
  }

  .hero-photo {
    justify-self: start;
    width: min(100%, 320px);
    margin-bottom: -40px;
  }

  .amenities-list,
  .about-approach,
  .about-approach-cols,
  .look-grid,
  .closing-cta,
  .catalog-grid-2 {
    grid-template-columns: 1fr;
  }

  .quiet-band img {
    aspect-ratio: 16 / 9;
  }
}

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

  .consent-actions .consent-accept {
    order: 0;
  }
}

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

  .category-grid,
  .catalog-grid-3 {
    grid-template-columns: 1fr;
  }

  .regions-type {
    gap: 1rem 2rem;
    font-size: clamp(24px, 8vw, 36px);
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  body {
    font-size: 16px;
  }

  .hero-photo {
    width: 100%;
  }

  .venue-card--featured img {
    aspect-ratio: 4 / 3;
  }
}
