:root {
  --color-red: #F1051C;
  --color-red-dark: #c90416;
  --color-gold: #c9a227;
  --color-gold-light: #e8d48a;
  --color-gold-brand: #cb904b;
  --color-decoration: #cb904b;
  --color-gray-50: #f7f6f4;
  --color-gray-100: #eceae6;
  --color-gray-200: #d8d4cd;
  --color-gray-500: #7a756c;
  --color-gray-700: #4a4640;
  --color-gray-900: #1a1816;
  --color-white: #ffffff;
  --font: "DM Sans", system-ui, sans-serif;
  --font-decoration: "Great Vibes", cursive;
  --font-nav: "Cormorant Garamond", "Times New Roman", serif;
  --container: 72rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow: 0 8px 32px rgba(26, 24, 22, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 24, 22, 0.12);
  --header-height: 5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-gray-900);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-red); text-underline-offset: 0.15em; }
a:hover { color: var(--color-red-dark); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-red);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-gray-100);
}

.topbar {
  background: var(--color-gray-900);
  color: var(--color-white);
  font-size: 0.8125rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.25rem;
  gap: 1rem;
}

.rating {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.rating__stars { color: var(--color-gold); letter-spacing: 0.05em; }
.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.75rem; }
.social a { color: var(--color-white); text-decoration: none; opacity: 0.9; }
.social a:hover { opacity: 1; color: white; }

.header-main__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-height);
}

.logo { text-decoration: none; line-height: 0; }
.logo img { width: auto; height: 3.25rem; }
.logo__text { font-weight: 700; font-size: 1.1rem; color: var(--color-gray-900); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

.site-nav a {
  color: var(--color-gray-900);
  text-decoration: none;
  font-family: var(--font-nav);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.15s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--color-red); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-gray-900);
  margin: 5px 0;
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8125rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--color-red); color: white; box-shadow: 0 4px 14px rgba(241, 5, 28, 0.25); }
.btn--primary:hover { background: var(--color-red-dark); color: white; box-shadow: 0 6px 20px rgba(241, 5, 28, 0.35); }
.btn--on-dark { box-shadow: none; }
.btn--block { display: flex; width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(22rem, 52vh, 34rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-gray-900);
  color: white;
}

.hero--image > .container::before,
.hero--image > .container::after {
  content: "";
  position: absolute;
  width: clamp(3rem, 6.5vw, 3.75rem);
  height: clamp(4rem, 9vw, 5.25rem);
  background: center / contain no-repeat url("../images/ornament-icon.svg");
  z-index: 2;
  pointer-events: none;
}

.hero--image > .container::before {
  top: 1.25rem;
  left: 0;
  transform: translateX(-48%);
}

.hero--image > .container::after {
  bottom: 1.25rem;
  right: 0;
  transform: rotate(180deg) translateX(-48%);
}

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,24,22,0.88) 0%, rgba(26,24,22,0.5) 55%, rgba(26,24,22,0.25) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero__content {
  padding: 4.5rem 0 3.5rem;
  max-width: 36rem;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero__description {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

/* Decorative script labels (original: .title-decoration) */
.title-decoration {
  color: var(--color-gold-brand);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero .title-decoration,
.hero__decoration {
  color: var(--color-gold-brand);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.title-decoration--section {
  color: var(--color-gold-brand);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-shadow: none;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
}

/* Compact page hero */
.page-hero {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 2.5rem 0;
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.page-hero p {
  margin: 0;
  color: var(--color-gray-700);
  max-width: 36rem;
}

/* Features */
.features {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 1.5rem 0;
}

.features__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
}

.features__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

.features__check {
  color: var(--color-red);
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 5, 28, 0.08);
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Sections */
.section-head {
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-head__title {
  position: relative;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  margin: 0 0 0.625rem;
  padding-bottom: calc(39px + 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: var(--color-gray-900);
}

.section-head__title::after {
  content: "";
  position: absolute;
  top: calc(100% - 39px);
  left: 50%;
  width: 70px;
  height: 39px;
  transform: translateX(-50%);
  background: center / contain no-repeat url("../images/section-decor-icon.svg");
  pointer-events: none;
}

.section-head__subtitle {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 1.0625rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
}

.content-section { padding: 4.5rem 0; }
.content-section--alt { background: var(--color-gray-50); }

.content-section__grid--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-section__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-section__body .btn { margin-top: 1.25rem; }

.prose h2 {
  font-size: 1.625rem;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.prose h3 { margin-top: 1.5rem; }
.prose p {
  margin: 0 0 1rem;
  color: var(--color-gray-700);
}

/* Cards */
.card-grid { padding: 4.5rem 0; }
.card-grid--related { background: var(--color-gray-50); padding-top: 3rem; }

.card-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-gray-100);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__image {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__image img { transform: scale(1.04); }

.card__body {
  padding: 1.375rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card__body h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}
.card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.card__body h3 a:hover { color: var(--color-red); }

.card__specs {
  margin: 0.25rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.75rem;
  align-items: center;
}

.card__specs dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.card__specs dt span {
  white-space: nowrap;
}

.card__specs dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-900);
}

.spec-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-500);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}
.card__link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
}

/* CTA band */
.cta-band {
  background: var(--color-red);
  color: white;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-block: 5.5rem;
}

.cta-band__inner::before,
.cta-band__inner::after {
  content: "";
  position: absolute;
  width: clamp(4.5rem, 10vw, 5.75rem);
  height: clamp(4.4rem, 9.8vw, 5.625rem);
  background: center / contain no-repeat url("../images/ornament-icon.svg");
  z-index: 1;
  pointer-events: none;
}

.cta-band__inner::before {
  top: 0;
  left: 0;
  transform: translateX(-38%);
}

.cta-band__inner::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg) translateX(-38%);
}

.cta-band__media {
  position: relative;
  z-index: 2;
  flex: 0 0 58.333%;
  margin: 0;
  line-height: 0;
  min-height: 17rem;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  display: block;
}

.cta-band__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0 2rem clamp(1.5rem, 4vw, 3.5rem);
}

.cta-band__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-decoration);
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: white;
}

.cta-band__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 22rem;
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  border-radius: 0;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn--outline-light:hover {
  background: white;
  color: var(--color-red);
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.875rem 0;
  background: var(--color-gray-50);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-gray-100);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--color-gray-200);
}
.breadcrumb a { color: var(--color-gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-red); }

/* Detail */
.detail { padding: 3.5rem 0 4.5rem; }
.detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.gallery-grid { margin-top: 2.5rem; }
.gallery-grid__title {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.gallery-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-grid__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid__item:hover img { transform: scale(1.03); }

.spec-box,
.sidebar-cta {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-100);
}

.spec-box { margin-bottom: 1rem; }
.spec-box h2,
.sidebar-cta h2 {
  font-size: 0.8125rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  font-weight: 600;
}
.spec-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem 1.25rem;
  align-items: start;
}
.spec-box dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-700);
}
.spec-box dt span { line-height: 1.3; }
.spec-box dd { margin: 0; color: var(--color-gray-700); font-size: 0.9375rem; }

.sidebar-cta p {
  margin: 0 0 1.25rem;
  color: var(--color-gray-700);
  font-size: 0.9375rem;
}

/* Contact page */
.contact-page { padding: 3rem 0 4.5rem; }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap h2 {
  margin: 0 0 0.35rem;
  font-size: 1.375rem;
}
.contact-form__intro {
  margin: 0 0 1.75rem;
  color: var(--color-gray-700);
}

.contact-form {
  background: white;
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }

.form-field label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--color-gray-900);
}
.form-field label span { color: var(--color-red); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9375rem;
  background: var(--color-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(241, 5, 28, 0.12);
}
.form-field textarea { resize: vertical; min-height: 7rem; }

.form-field--checkbox { margin: 1.25rem 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  cursor: pointer;
  font-weight: 400;
}
.checkbox-label input { margin-top: 0.2rem; flex-shrink: 0; }
.checkbox-label a { font-weight: 500; }

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-align: center;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-card h2,
.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.contact-card--muted p {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 0.9375rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-list__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-500);
  font-weight: 600;
}
.contact-list a { text-decoration: none; font-weight: 500; }

.map-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--color-gray-900), #3d3830);
  color: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.map-card:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.map-card__icon { font-size: 1.5rem; }

.page-content { padding: 3rem 0 4rem; }

/* Footer */
.site-footer {
  background: var(--color-gray-900);
  color: white;
  margin-top: auto;
}
.site-footer a { color: white; text-decoration: none; opacity: 0.9; }
.site-footer a:hover { opacity: 1; color: white; }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2rem;
  padding: 2.75rem 0;
}
.site-footer__brand p {
  margin: 0.35rem 0 0;
  opacity: 0.75;
  font-size: 0.9375rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9375rem;
  opacity: 0.85;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  font-size: 0.8125rem;
  opacity: 0.6;
}
.site-footer__bottom p { margin: 0; }

/* Mobile */
@media (max-width: 960px) {
  .header-main__inner {
    grid-template-columns: 1fr auto auto;
  }
  .logo { grid-column: 1; }
  .nav-toggle {
    display: block;
    grid-column: 3;
  }
  .header-cta { display: none; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(20rem, 88vw);
    background: white;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    z-index: 200;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }
  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .content-section__grid--split,
  .detail__grid,
  .contact-page__grid,
  .form-row--2,
  .site-footer__inner { grid-template-columns: 1fr; }

  .cta-band__inner {
    flex-direction: column;
    padding-block: 3.75rem;
  }

  .cta-band__inner::before,
  .cta-band__inner::after {
    width: 3.25rem;
    height: 3.15rem;
  }

  .cta-band__inner::before {
    top: 0.75rem;
    left: 0.75rem;
    transform: none;
  }

  .cta-band__inner::after {
    bottom: 0.75rem;
    right: 0.75rem;
    transform: rotate(180deg);
  }

  .cta-band__media {
    flex: none;
    width: 100%;
  }

  .cta-band__body {
    align-items: center;
    text-align: center;
    padding: 1.75rem 0 0;
  }
  .card-grid__items { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__content { padding: 3.5rem 0 2.5rem; }

  .hero--image > .container::before,
  .hero--image > .container::after {
    width: 2.75rem;
    height: 3.5rem;
  }

  .hero--image > .container::before {
    top: 0.75rem;
    left: 0;
    transform: translateX(-35%);
  }

  .hero--image > .container::after {
    bottom: 0.75rem;
    right: 0;
    transform: rotate(180deg) translateX(-35%);
  }

  .contact-form { padding: 1.25rem; }
}
