:root {
  --forest: #1a3a2a;
  --deep-green: #2d5a3d;
  --sage: #7a9a7e;
  --heather: #8b6f8e;
  --stone: #c4b5a0;
  --warm-cream: #f5f0e8;
  --parchment: #faf7f2;
  --charcoal: #2a2a2a;
  --text: #3a3a3a;
  --text-light: #6a6a6a;
  --accent: #b8860b;
  --accent-dark: #8b6914;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--parchment);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  color: var(--accent);
  font-size: 18px;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-cream);
  letter-spacing: 1px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--sage);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--forest) 0%, #1e4430 40%, #2a4a38 70%, var(--deep-green) 100%);
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 15% 85%, rgba(139, 111, 142, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle 3px at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 100%),
    radial-gradient(circle 2px at 60% 70%, rgba(255,255,255,0.03) 0%, transparent 100%),
    radial-gradient(circle 4px at 80% 40%, rgba(255,255,255,0.02) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sage);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--stone);
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--sage);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.hero-divider {
  margin-top: 48px;
}

.divider-diamond {
  color: var(--accent);
  font-size: 14px;
  opacity: 0.6;
}

/* ABOUT */
.about {
  padding: 120px 32px;
  background: var(--parchment);
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--heather);
  margin-bottom: 16px;
  font-weight: 600;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-text em {
  font-style: italic;
  color: var(--heather);
  font-weight: 500;
}

/* SERVICES */
.services {
  padding: 120px 32px;
  background: var(--forest);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sage);
  margin-bottom: 16px;
  font-weight: 600;
}

.services-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.2;
}

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

.service-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184, 134, 11, 0.3);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-cream);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.75;
  font-weight: 300;
}

/* WHY */
.why {
  padding: 120px 32px;
  background: var(--warm-cream);
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
}

.why-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--heather);
  margin-bottom: 16px;
  font-weight: 600;
}

.why-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 64px;
  line-height: 1.2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.why-item {
  display: flex;
  gap: 24px;
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.why-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: linear-gradient(170deg, var(--forest) 0%, #162e22 100%);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-diamond {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.5;
}

.closing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.25;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--sage);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.closing-contact p {
  font-size: 0.95rem;
  color: var(--stone);
  letter-spacing: 0.5px;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  background: #111f17;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(122, 154, 126, 0.6);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(122, 154, 126, 0.4);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--sage);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

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

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--forest);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 3px;
  margin-left: 8px;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--accent-dark);
  color: var(--warm-cream);
}

.nav-name {
  text-decoration: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-cream);
  border-radius: 2px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--forest);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--warm-cream);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--warm-cream);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--forest) 0%, #1e4430 40%, #2a4a38 70%, var(--deep-green) 100%);
  padding: 160px 32px 100px;
  text-align: center;
}

.page-hero--short {
  padding: 130px 32px 80px;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--sage);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* CONTENT SECTION */
.content-section {
  padding: 100px 32px;
  background: var(--parchment);
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-lead {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.content-lead p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.9;
}

/* SERVICE DETAIL GRID */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.service-detail-card {
  background: var(--warm-cream);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-detail-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(26,58,42,0.08);
}

.service-detail-icon {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.7;
}

.service-detail-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* CONTENT CTA BLOCK */
.content-cta-block {
  text-align: center;
  padding: 64px 32px;
  background: var(--forest);
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto;
}

.content-cta-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--warm-cream);
  margin-bottom: 16px;
}

.content-cta-block p {
  color: var(--sage);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* QUOTE FORM */
.quote-section {
  padding: 80px 32px;
  background: var(--parchment);
}

.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-form {
  background: white;
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: 6px;
  padding: 48px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.3px;
}

.form-required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(26,58,42,0.15);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--parchment);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

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

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

.form-error {
  background: #fde8e8;
  color: #8b1a1a;
  border: 1px solid #f5c6c6;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 16px;
}

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

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.quote-success {
  text-align: center;
  padding: 64px 32px;
  background: white;
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: 6px;
}

.quote-success-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  color: var(--warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.quote-success h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.quote-success p {
  color: var(--text-light);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto;
}

/* PORTFOLIO */
.portfolio-section {
  padding: 80px 32px;
}

.portfolio-inner {
  max-width: 1200px;
}

.portfolio-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(26,58,42,0.15);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 3px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-btn:hover,
.filter-btn--active {
  border-color: var(--forest);
  color: var(--forest);
  background: rgba(26,58,42,0.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.portfolio-card {
  border: 1px solid rgba(26,58,42,0.08);
  border-radius: 4px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s;
}

.portfolio-card:hover {
  box-shadow: 0 6px 32px rgba(26,58,42,0.1);
}

.portfolio-img {
  height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(160deg, var(--forest), var(--deep-green));
}

.portfolio-img--sage {
  background: linear-gradient(160deg, #3a6b47, #7a9a7e);
}

.portfolio-img--dark {
  background: linear-gradient(160deg, #1a2a20, #2d3a30);
}

.portfolio-img--heather {
  background: linear-gradient(160deg, #5a3d5c, #8b6f8e);
}

.portfolio-img-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.portfolio-img-icon {
  color: var(--accent);
  font-size: 10px;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(26,58,42,0.08);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.portfolio-tag--landscape {
  background: rgba(122,154,126,0.15);
  color: var(--deep-green);
}

.portfolio-tag--maintenance {
  background: rgba(184,134,11,0.1);
  color: var(--accent-dark);
}

.portfolio-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.portfolio-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid rgba(26,58,42,0.08);
}

.portfolio-cta-note {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

/* SERVICE AREA */
.area-counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

.area-county-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.area-county-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.area-county-dot--heather {
  background: var(--heather);
}

.area-county h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
}

.area-county-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.area-cities {
  list-style: none;
  padding: 0;
}

.area-cities li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,58,42,0.07);
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.area-city-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.area-note-block {
  background: var(--warm-cream);
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 64px;
}

.area-note-icon {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.area-note-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.area-note-block p {
  color: var(--text-light);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

.area-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-info-card {
  padding: 28px 24px;
  background: var(--forest);
  border-radius: 4px;
}

.area-info-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.area-info-card p {
  font-size: 0.9rem;
  color: var(--sage);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .nav-tagline {
    display: none;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: 90vh;
  }

  .about,
  .services,
  .why,
  .closing {
    padding: 80px 24px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-item {
    gap: 16px;
  }

  .why-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .about-heading,
  .services-heading,
  .why-heading,
  .closing-heading {
    font-size: 1.8rem;
  }
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 58, 42, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
  }

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

  .nav-links a {
    padding: 13px 28px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links .nav-cta {
    margin: 14px 20px 0;
    text-align: center;
    border-radius: 3px;
    border-bottom: none;
  }
}

/* RESPONSIVE: INNER PAGES */
@media (max-width: 900px) {
  .services-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-counties {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-info-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 600px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .area-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 32px 20px;
  }

  .page-hero {
    padding: 120px 24px 80px;
  }

  .page-hero--short {
    padding: 100px 24px 60px;
  }

  .content-section {
    padding: 60px 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .area-note-block {
    padding: 36px 24px;
  }
}