/*
Theme Name: HAUS NINE HOMES
Theme URI: https://hausninehomes.com
Author: Muhammad Usman
Author URI: https://hausninehomes.com
Description: Premium, modern WordPress theme for Haus Nine Homes painting services.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hausninehomes
*/

/* ===== Global Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== Hide WP Admin Bar on Frontend ===== */
#wpadminbar {
  display: none !important;
}

html.wp-toolbar {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html {
  margin-top: 0 !important;
}

/* ===== Theme Styles from HTML ===== */
:root {
  --navy: #0C204E;
  --navy-deep: #081636;
  --gold: #C49B42;
  --gold-soft: #d4af5c;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray-line: #e7e7e9;
  --ink: #1c2438;
  --muted: #5d6478;
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: .005em
}

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

a {
  text-decoration: none;
  color: inherit
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block
}

.gold-rule {
  width: 54px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 18px 0
}

.gold-rule.center {
  margin-left: auto;
  margin-right: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  padding: 16px 32px;
  border-radius: 3px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  border: none;
  line-height: 1
}

.btn svg {
  transition: transform .25s ease
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-gold {
  background: var(--gold);
  color: var(--navy)
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(196, 155, 66, .32)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy)
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px)
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 260;
  transition: background .35s ease, box-shadow .35s ease
}

header.scrolled {
  background: rgba(12, 32, 78, .98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .16)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height .35s ease
}

header.scrolled .nav {
  height: 70px
}

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

.brand .mark {
  width: 40px;
  height: 32px;
  flex-shrink: 0
}

.brand .name {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: .16em;
  line-height: 1
}

.brand .name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .5rem;
  letter-spacing: .32em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px
}

nav.links {
  display: flex;
  align-items: center;
  gap: 36px
}

nav.links a {
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s ease
}

nav.links a:hover {
  color: #fff
}

nav.links a:hover::after {
  width: 100%
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-phone {
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.nav-phone span {
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .18em;
  font-weight: 600;
  text-transform: uppercase
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 300;
  position: relative
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.drawer {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease
}

.drawer.open {
  opacity: 1;
  pointer-events: auto
}

.drawer a {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  padding: 12px
}

.drawer a:hover {
  color: var(--gold)
}

.drawer .btn {
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 22, 54, .94) 0%, rgba(12, 32, 78, .82) 38%, rgba(12, 32, 78, .42) 70%, rgba(12, 32, 78, .25) 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%
}

.hero-content {
  max-width: 660px;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s cubic-bezier(.2, .7, .3, 1) .2s forwards
}

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

.hero h1 {
  color: #fff;
  font-size: 4.6rem;
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.04
}

.hero h1 .gold {
  color: var(--gold)
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, .85);
  margin-top: 14px;
  font-weight: 400
}

.hero p.sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  margin: 22px 0 0;
  max-width: 520px
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.hero-trust .ht {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  letter-spacing: .02em
}

.hero-trust svg {
  flex-shrink: 0
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .55);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.4s ease-in-out infinite
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(7px)
  }
}

section.block {
  padding: 110px 0
}

.sec-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px
}

.sec-head h2 {
  font-size: 3.1rem;
  margin-top: 12px
}

.sec-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.06rem
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .3, 1)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* HAUS NINE STANDARD */
.standard {
  background: var(--white);
  padding: 120px 0
}

.standard .sec-head {
  margin-bottom: 72px
}

.std-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-line)
}

.std-item {
  padding: 52px 56px;
  border-bottom: 1px solid var(--gray-line);
  position: relative
}

.std-item:nth-child(odd) {
  border-right: 1px solid var(--gray-line)
}

.std-ico {
  margin-bottom: 24px
}

.std-item h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  font-weight: 600
}

.std-num {
  position: absolute;
  top: 46px;
  right: 52px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .1em
}

.std-item p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 340px
}

/* SERVICES */
.services {
  background: var(--gray)
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.svc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-line);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(12, 32, 78, .13)
}

.svc-img {
  position: relative;
  height: 280px;
  overflow: hidden
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1)
}

.svc-card:hover .svc-img img {
  transform: scale(1.06)
}

.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 32, 78, 0) 55%, rgba(12, 32, 78, .5) 100%)
}

.svc-tag {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600
}

.svc-body {
  padding: 34px 32px 36px
}

.svc-body p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 8px
}

.svc-benefits {
  list-style: none;
  margin: 18px 0 26px
}

.svc-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500
}

.svc-benefits svg {
  flex-shrink: 0
}

.svc-body .btn {
  font-size: .84rem;
  padding: 13px 26px
}

/* SPLIT FEATURE */
.feature {
  padding: 0
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px
}

.feature-media {
  position: relative;
  overflow: hidden;
  min-height: 440px
}

.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 84px
}

.feature-copy h2 {
  font-size: 2.9rem;
  margin-top: 12px
}

.feature-copy p.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 20px
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .98rem;
  color: var(--ink)
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 3px
}

.feature.navy {
  background: var(--navy)
}

.feature.navy .feature-copy h2 {
  color: #fff
}

.feature.navy .eyebrow {
  color: var(--gold)
}

.feature.navy .feature-copy p.lead {
  color: rgba(255, 255, 255, .78)
}

.feature.navy .feature-list li {
  color: rgba(255, 255, 255, .86)
}

/* PROCESS */
.process {
  background: var(--gray)
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 8px
}

.proc-step {
  text-align: center;
  position: relative;
  padding: 0 14px
}

.proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -14px;
  width: 28px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 10px)
}

.proc-num {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  position: relative
}

.proc-num span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.proc-step h4 {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.proc-step p {
  color: var(--muted);
  font-size: .94rem;
  max-width: 230px;
  margin: 0 auto
}

/* ESTIMATE */
.estimate {
  background: var(--white)
}

.est-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 32, 78, .13)
}

.est-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.est-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.est-expect {
  position: relative;
  flex: 1;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 54, .2) 0%, rgba(8, 22, 54, .85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 44px;
  color: #fff
}

.est-expect h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 6px
}

.est-expect .lbl {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  display: block
}

.est-expect ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px
}

.est-expect li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .96rem;
  color: rgba(255, 255, 255, .92)
}

.est-expect svg {
  flex-shrink: 0;
  margin-top: 3px
}

.est-form {
  background: #fff;
  padding: 52px 48px
}

.est-form .eyebrow {
  color: var(--gold)
}

.est-form h2 {
  font-size: 2.4rem;
  margin: 10px 0 6px
}

.est-form>p {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 26px
}

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

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--gray-line);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--gray);
  transition: border .2s, background .2s, box-shadow .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 155, 66, .12)
}

.field textarea {
  resize: vertical;
  min-height: 90px
}

.est-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px
}

.est-form .fineprint {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  margin-top: 14px
}

/* SERVICE AREA */
.area {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden
}

.area::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 155, 66, .12), transparent 68%)
}

.area .eyebrow {
  color: var(--gold)
}

.area h2 {
  color: #fff
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2
}

.area h2 {
  font-size: 2.9rem;
  margin-top: 12px
}

.area p.lead {
  color: rgba(255, 255, 255, .78);
  margin-top: 18px;
  font-size: 1.05rem;
  max-width: 430px
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.area-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.area-list svg {
  flex-shrink: 0
}

.area-note {
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
  margin-top: 22px
}

.area-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 46px 44px;
  backdrop-filter: blur(4px)
}

.area-card .ac-ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(196, 155, 66, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.area-card h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px
}

.area-card p {
  color: rgba(255, 255, 255, .74);
  font-size: .98rem;
  margin-bottom: 26px
}

.area-card .btn {
  width: 100%;
  justify-content: center
}

/* REVIEWS */
.reviews {
  background: var(--gray)
}

.rev-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px
}

.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 40px;
  padding: 9px 18px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink)
}

.gbadge .stars {
  color: var(--gold);
  letter-spacing: 2px
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px
}

.rev-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--gray-line);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease
}

.rev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(12, 32, 78, .1)
}

.rev-quote {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(196, 155, 66, .18);
  line-height: 1
}

.rev-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px
}

.rev-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--ink)
}

.rev-by {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 13px
}

.rev-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.05rem
}

.rev-by b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 600
}

.rev-by small {
  color: var(--muted);
  font-size: .8rem
}

.rev-note {
  text-align: center;
  color: var(--muted);
  font-size: .86rem;
  margin-top: 30px;
  font-style: italic
}

/* FINAL CTA */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 104px 0;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(196, 155, 66, .16), transparent 60%)
}

.cta-band>.wrap {
  position: relative;
  z-index: 2
}

.cta-band h2 {
  color: #fff;
  font-size: 3.4rem
}

.cta-band .gold {
  color: var(--gold)
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  margin: 18px auto 0;
  font-size: 1.08rem;
  max-width: 480px
}

.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  margin: 30px 0 6px;
  display: inline-block
}

.cta-phone:hover {
  color: var(--gold)
}

.cta-band .free {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem
}

.cta-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .68);
  padding: 72px 0 30px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-brand .name {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: .16em;
  margin: 16px 0 12px
}

.foot-brand p {
  font-size: .92rem;
  max-width: 290px;
  line-height: 1.7
}

.foot-col h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-size: .92rem;
  margin-bottom: 12px;
  transition: color .2s, padding .2s
}

.foot-col a:hover {
  color: var(--gold);
  padding-left: 4px
}

.foot-contact div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .72)
}

.foot-contact svg {
  flex-shrink: 0;
  margin-top: 3px
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px
}

.foot-bottom .gold {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero h1 {
    font-size: 3.8rem
  }

  .feature-copy {
    padding: 72px 56px
  }

  .area-grid {
    gap: 48px
  }
}

@media(max-width:900px) {

  nav.links,
  .nav-phone {
    display: none
  }

  .nav-right .btn-gold {
    display: none
  }

  /* CTA lives in the menu on mobile */
  .hamburger {
    display: flex
  }

  header {
    background: rgba(12, 32, 78, .98);
    backdrop-filter: blur(10px)
  }

  /* solid bar on mobile */
  header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18)
  }

  .nav {
    height: 66px
  }

  header.scrolled .nav {
    height: 66px
  }

  .brand .mark {
    width: 34px;
    height: 27px
  }

  .brand .name {
    font-size: 1.18rem;
    letter-spacing: .13em;
    white-space: nowrap
  }

  .brand .name small {
    font-size: .46rem;
    letter-spacing: .26em;
    margin-top: 3px
  }

  .hero {
    min-height: 90vh
  }

  .hero h1 {
    font-size: 3.2rem
  }

  .sec-head h2 {
    font-size: 2.6rem
  }

  .std-grid {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .std-item {
    border-right: none !important;
    padding: 40px 8px
  }

  .std-item:last-child {
    border-bottom: none
  }

  .std-num {
    right: 8px;
    top: 38px
  }

  .svc-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto
  }

  .feature-row {
    grid-template-columns: 1fr
  }

  .feature-media {
    min-height: 360px;
    order: -1
  }

  .feature.flip .feature-media {
    order: -1
  }

  .feature-copy {
    padding: 64px 40px
  }

  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 20px
  }

  .proc-step:not(:last-child)::after {
    display: none
  }

  .est-grid {
    grid-template-columns: 1fr
  }

  .est-visual {
    min-height: 360px
  }

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

  .rev-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 12px auto 0
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }
}

@media(max-width:560px) {
  .wrap {
    padding: 0 22px
  }

  section.block {
    padding: 72px 0
  }

  .standard {
    padding: 72px 0
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px
  }

  .hero h1 {
    font-size: 2.6rem
  }

  .hero .tagline {
    font-size: 1.2rem
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch
  }

  .hero-cta .btn {
    justify-content: center
  }

  .hero-trust {
    gap: 10px 18px;
    margin-top: 32px
  }

  .hero-trust .ht {
    font-size: .78rem
  }

  .scroll-cue {
    display: none
  }

  .sec-head {
    margin-bottom: 44px
  }

  .sec-head h2 {
    font-size: 2.2rem
  }

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

  .area-list {
    grid-template-columns: 1fr
  }

  .feature-copy {
    padding: 52px 26px
  }

  .est-form {
    padding: 40px 26px
  }

  .est-expect {
    padding: 36px 28px
  }

  .cta-band h2 {
    font-size: 2.4rem
  }

  .cta-phone {
    font-size: 2.3rem
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

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

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}