/* ==========================================================================
   Bobbi Rae Real Estate — Brand styles
   Metallic gold + deep crimson/burgundy on cream (alpine / mountain vibe)
   ========================================================================== */

:root {
  --cream: #f7f3ec;
  --cream-dark: #efe8dc;
  --sand: #e8dfd0;
  --ink: #1a1414;
  --ink-muted: #4a4242;
  --ink-soft: #6e6565;
  --gold: #c9a227;
  --gold-light: #d4b84a;
  --gold-deep: #a6851f;
  --crimson: #8b1e3f;
  --crimson-deep: #6b1530;
  --crimson-light: #9b1b2e;
  --accent-soft: #f3e9c8;
  --burgundy-soft: #f5e8ec;
  --white: #ffffff;
  --black: #0d0b0b;
  --shadow-sm: 0 1px 2px rgba(26, 20, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 20, 20, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 20, 20, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--crimson-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--crimson);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
}

.section-lede {
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--crimson);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--crimson-deep);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.55);
}

.btn-ghost:hover {
  background: rgba(247, 243, 236, 0.12);
  color: var(--cream);
  border-color: var(--cream);
}

.about .btn-ghost,
.form-success .btn-ghost,
.contact .btn-ghost {
  color: var(--crimson);
  border-color: var(--crimson);
}

.about .btn-ghost:hover,
.form-success .btn-ghost:hover,
.contact .btn-ghost:hover {
  background: var(--burgundy-soft);
  color: var(--crimson-deep);
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 30, 63, 0.08);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 2px 6px;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.logo-img--sm {
  height: 44px;
  max-width: 160px;
  padding: 2px 4px;
}

.footer-brand .logo-img {
  background: var(--white);
  margin-inline: auto;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--crimson);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta a {
  color: var(--cream);
  padding: 0.65rem 1.15rem;
}

.nav-cta a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--crimson);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media .hero-video {
  display: block;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 11, 11, 0.28) 0%,
    rgba(26, 20, 20, 0.48) 40%,
    rgba(26, 20, 20, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(100% - 2rem, var(--max));
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(247, 243, 236, 0.9);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.95);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.hero-specialty {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.92);
  margin: 0 0 1.15rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.listings {
  background: var(--cream);
}

.neighborhoods {
  background: var(--cream-dark);
}

.who {
  background: var(--white);
}

.property-types {
  background: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(139, 30, 63, 0.06);
}

.about {
  background: var(--cream);
}

.testimonials {
  background: var(--crimson-deep);
  color: var(--cream);
}

.testimonials h2,
.testimonials .eyebrow {
  color: var(--cream);
}

.testimonials .eyebrow {
  color: var(--gold-light);
}

.testimonials .section-lede {
  color: rgba(247, 243, 236, 0.75);
}

.contact {
  background: var(--cream-dark);
}

/* Listing cards */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.listing-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.listing-card:hover .listing-image img {
  transform: scale(1.04);
}

.listing-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(247, 243, 236, 0.95);
  color: var(--crimson);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.listing-type {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(139, 30, 63, 0.92);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.55);
}

.listing-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.listing-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--crimson);
  margin: 0 0 0.35rem;
}

.listing-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.listing-meta,
.listing-loc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.listing-loc {
  margin-top: 0.25rem;
}

/* Neighborhoods */
.hood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hood-county {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #C99A2E);
}

.hood-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.hood-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 30, 63, 0.06);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}

.hood-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.35);
  border-top-color: var(--gold-deep);
}

.hood-card h3 {
  color: var(--crimson);
  margin-bottom: 0.5rem;
}

.hood-card p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 0.975rem;
}

/* Property types strip */
.ptype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ptype-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 30, 63, 0.06);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ptype-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ptype-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--crimson);
  border-radius: 16px;
}

.ptype-card h3 {
  color: var(--crimson);
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.ptype-card p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 0.925rem;
}

/* Who I help */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.help-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.help-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.help-card {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 30, 63, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.help-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--crimson);
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.help-card h3 {
  margin-bottom: 0.5rem;
}

.help-card p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 0.975rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo-wrap {
  text-align: center;
}

.about-photo {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--gold);
  border: 6px solid var(--white);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.photo-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.85rem;
  font-style: italic;
}

.about-creds {
  font-weight: 500;
  color: var(--crimson);
  margin-bottom: 1.25rem;
}

.about-creds em {
  font-style: normal;
  background: var(--accent-soft);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  color: var(--gold-deep);
}

.about-copy p {
  color: var(--ink-muted);
}

.about-copy .btn {
  margin-top: 0.5rem;
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  margin: 0;
  padding: 1.75rem;
  background: rgba(247, 243, 236, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  margin: 0;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--cream);
}

.quote-card span {
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.65);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro p {
  color: var(--ink-muted);
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-details li {
  font-size: 0.975rem;
  color: var(--ink-muted);
}

.contact-details strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 0.35rem;
}

.form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 30, 63, 0.06);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: #cfc4b0;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.form-row input.invalid,
.form-row select.invalid,
.form-row textarea.invalid {
  border-color: #a94442;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--accent-soft);
  color: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(247, 243, 236, 0.8);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-domain {
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 0.25rem !important;
}

.footer-domain a {
  color: inherit;
  text-decoration: none;
}

.footer-domain a:hover {
  text-decoration: underline;
}

.footer-social {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.footer-social.is-hidden {
  display: none !important;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid rgba(201, 154, 46, 0.35);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.footer-social-link:hover {
  color: var(--cream, #f5f0e8);
  background: rgba(201, 154, 46, 0.2);
  border-color: var(--gold-light);
}


.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(247, 243, 236, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.fair-housing {
  font-size: 0.8rem;
  max-width: 36rem;
  margin: 0.5rem auto 0;
  line-height: 1.5;
  color: rgba(247, 243, 236, 0.55);
}

.copyright {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(247, 243, 236, 0.5);
}

/* Responsive */
@media (max-width: 960px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hood-grid,
  .hood-grid--five,
  .help-grid,
  .help-grid--four,
  .help-grid--five,
  .quote-grid,
  .ptype-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .logo-img {
    height: 44px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(139, 30, 63, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(139, 30, 63, 0.06);
  }

  .nav-menu a {
    display: block;
    padding: 0.9rem 0.25rem;
  }

  .nav-cta {
    margin: 0.75rem 0 0;
    border-bottom: none !important;
  }

  .nav-cta a {
    text-align: center;
    width: 100%;
  }

  .hero {
    min-height: min(78vh, 640px);
    align-items: flex-end;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .listing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hood-grid,
  .hood-grid--five,
  .help-grid,
  .help-grid--four,
  .help-grid--five,
  .quote-grid,
  .ptype-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 1.5rem;
  }
}

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

  .hero-actions .btn {
    width: 100%;
  }

  .about-photo {
    width: 180px;
    height: 180px;
  }

  .logo-img {
    height: 40px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
