  :root {
    --burgundy: #7B1942;
    --burgundy-deep: #5C1031;
    --burgundy-light: #9B2D5E;
    --blush: #F4E4E0;
    --blush-light: #FBF5F3;
    --blush-mid: #F9ECE8;
    --cream: #FDF8F6;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --text-dark: #2A1F22;
    --text-mid: #5C4A4E;
    --text-light: #8A7076;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(123, 25, 66, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 25, 66, 0.1);
    --shadow-lg: 0 20px 60px rgba(123, 25, 66, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 25, 66, 0.06);
    transition: var(--transition);
  }

  header.scrolled {
    background: rgba(253, 248, 246, 0.97);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.01em;
  }

  .logo-icon { color: var(--burgundy); }

  #main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #main-nav a {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-mid);
    border-radius: 100px;
    transition: var(--transition);
  }

  #main-nav a:hover {
    color: var(--burgundy);
    background: var(--blush);
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
  }

  .btn-burgundy {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
  }
  .btn-burgundy:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .btn-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
  }
  .btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-white {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
  }
  .btn-white:hover {
    background: var(--blush);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
  }
  .btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
  }

  .btn-sm { padding: 10px 22px; font-size: 0.8rem; }
  .btn-full { width: 100%; }

  /* ── NAV TOGGLE ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(123, 25, 66, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--gold);
  }

  .hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--burgundy);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
  }
  .trust-item svg { color: var(--gold); }

  /* Hero Images */
  .hero-image {
    position: relative;
    height: 680px;
  }

  .hero-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
  }
  .hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
  }

  /* ── DIVIDER ── */
  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--burgundy);
    opacity: 0.4;
  }

  /* ── SECTION HEADERS ── */
  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 0;
    background: var(--white);
  }

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

  .service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 25, 66, 0.08);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: var(--transition);
  }
  .service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
  }

  .service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

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

  /* ── GALLERY ── */
  .gallery {
    padding: 100px 0;
    background: var(--cream);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
  }

  .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 16, 49, 0.3), transparent 60%);
    opacity: 0;
    transition: var(--transition);
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-item:nth-child(1) { grid-column: 1 / 8; }
  .gallery-item:nth-child(2) { grid-column: 8 / 13; }
  .gallery-item:nth-child(3) { grid-column: 8 / 13; }
  .gallery-item:nth-child(4) { grid-column: 1 / 8; }
  .gallery-item:nth-child(5) { grid-column: 1 / 7; }
  .gallery-item:nth-child(6) { grid-column: 7 / 13; }

  /* ── ABOUT ── */
  .about {
    padding: 100px 0;
    background: var(--white);
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image {
    position: relative;
  }
  .about-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .about-accent-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--burgundy);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    box-shadow: var(--shadow-md);
    max-width: 260px;
    line-height: 1.5;
  }

  .about-content .section-eyebrow { margin-bottom: 12px; }
  .about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
  }

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

  .about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
  }

  .value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
                      radial-gradient(circle at 70% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 40%);
    pointer-events: none;
  }

  .cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta-eyebrow { color: var(--gold-light); margin-bottom: 16px; }

  .cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 100px 0;
    background: var(--cream);
  }

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

  .info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
  }
  .info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
  }

  .info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

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

  .info-card a {
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition);
  }
  .info-card a:hover { color: var(--burgundy-deep); text-decoration: underline; }

  .map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 8px;
  }

  /* Contact Form */
  .contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
  }

  .contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
  }

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

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

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 25, 66, 0.08);
  }

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

  .form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-size: 0.9rem;
    margin-top: 16px;
  }
  .form-success svg { flex-shrink: 0; }

  /* ── FOOTER ── */
  .footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.65);
    padding: 80px 0 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
  }

  .logo-light { color: var(--white); }
  .logo-light .logo-icon { color: var(--white); }

  .footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
  }
  .footer-links a:hover { color: var(--white); padding-left: 4px; }

  .footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 4px;
  }
  .footer-contact a {
    transition: var(--transition);
  }
  .footer-contact a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
  }
  .footer-bottom p {
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
  }

  /* ── FLOATING PHONE ── */
  .phone-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
  }
  .phone-float:hover {
    background: var(--burgundy-deep);
    transform: scale(1.1);
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-image { height: 520px; }
    .hero-img-accent { width: 160px; height: 200px; left: -20px; bottom: -20px; }
    .hero-badge { right: -10px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { gap: 50px; }
    .about-image img { height: 480px; }
    .about-accent-box { right: -16px; bottom: -16px; }
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 220px);
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 2; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; }
    .gallery-item:nth-child(5) { grid-column: 1 / 2; }
    .gallery-item:nth-child(6) { grid-column: 2 / 3; }
  }

  @media (max-width: 768px) {
    .nav-toggle { display: flex; }

    #main-nav {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(253, 248, 246, 0.98);
      backdrop-filter: blur(20px);
      padding: 24px;
      border-bottom: 1px solid rgba(123, 25, 66, 0.08);
      box-shadow: var(--shadow-md);
      transform: translateY(-120%);
      opacity: 0;
      transition: var(--transition);
      pointer-events: none;
    }
    #main-nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    #main-nav ul {
      flex-direction: column;
      gap: 4px;
    }
    #main-nav a {
      display: block;
      padding: 14px 20px;
      font-size: 1rem;
      border-radius: var(--radius-sm);
      text-align: center;
    }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .hero-image {
      height: 420px;
      order: -1;
    }
    .hero-img-accent { display: none; }
    .hero-badge { right: 10px; top: 16px; }
    .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }
    .hero-trust { gap: 20px; }

    .services { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .gallery { padding: 72px 0; }
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .gallery-item { grid-column: auto !important; height: 240px; }

    .about { padding: 72px 0; }
    .about-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-image img { height: 400px; }
    .about-accent-box {
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 20px;
      display: inline-block;
    }
    .about-content .section-title { text-align: center; }
    .about-content .section-eyebrow { text-align: center; }
    .section-header { margin-bottom: 48px; }

    .cta-banner { padding: 72px 0; }
    .cta-actions { flex-direction: column; align-items: center; }

    .contact { padding: 72px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 48px; }
    .hero-image { height: 320px; }
    .contact-form-wrap { padding: 24px 18px; }
    .phone-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  }
