/* ============================================
   Heritage Builders — Site Styles
   ============================================ */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

/* Topbar */
.topbar {
  background: var(--brand-dark);
  color: var(--brand-cream-2);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 60;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-cream-2);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.topbar-item:hover {
  opacity: 1;
}

.topbar-item i {
  width: 14px;
  height: 14px;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  background: rgba(200, 164, 106, 0.15);
  border: 1px solid rgba(200, 164, 106, 0.35);
  color: var(--brand-accent);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.license-badge i {
  width: 13px;
  height: 13px;
}

@media (max-width: 720px) {
  .topbar-left span,
  .topbar-right {
    display: none;
  }
  .topbar-left {
    justify-content: center;
    width: 100%;
  }
  .topbar-inner {
    justify-content: center;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad);
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-dark);
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--brand-dark);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-primary {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--brand-dark);
}

.brand-secondary {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--brand-accent-deep);
  margin-top: 3px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  color: var(--brand-dark);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--brand-accent-deep);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--brand-dark);
}

.menu-toggle i {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem var(--pad) 1.5rem;
  gap: 1rem;
  background: var(--brand-cream);
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  padding: 0.5rem 0;
  color: var(--brand-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.btn {
  margin-top: 0.5rem;
  border-bottom: none;
}

@media (max-width: 960px) {
  .nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-nav[data-open='true'] {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: min(900px, 100vh);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #14100e 0%, #1f1a17 60%, #2a2320 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(15, 12, 10, 0.94) 0%,
      rgba(15, 12, 10, 0.85) 30%,
      rgba(15, 12, 10, 0.35) 60%,
      rgba(15, 12, 10, 0.05) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15, 12, 10, 0.15) 0%,
      rgba(15, 12, 10, 0) 40%,
      rgba(15, 12, 10, 0.3) 100%
    );
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  /* On mobile: darker overlay across full width so text stays readable */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(15, 12, 10, 0.75) 0%,
      rgba(15, 12, 10, 0.55) 40%,
      rgba(15, 12, 10, 0.85) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #fff;
}

.hero-content-inner {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.85rem;
  background: rgba(200, 164, 106, 0.12);
  border: 1px solid rgba(200, 164, 106, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.eyebrow-dark {
  background: rgba(31, 26, 23, 0.06);
  border-color: rgba(31, 26, 23, 0.14);
  color: var(--brand-accent-deep);
}

.eyebrow-light {
  background: rgba(200, 164, 106, 0.12);
  border-color: rgba(200, 164, 106, 0.3);
  color: var(--brand-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 1.5rem 0 1.75rem;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: titleReveal 1s var(--ease) forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.5s;
}

.title-accent {
  color: var(--brand-accent);
  font-style: italic;
  font-weight: 400;
}

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

.hero-body {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: titleReveal 1s var(--ease) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: titleReveal 1s var(--ease) 1.15s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: titleReveal 1s var(--ease) 1.4s forwards;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--brand-accent);
  line-height: 1;
}

.meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-replay {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.hero-replay:hover {
  background: rgba(200, 164, 106, 0.2);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.hero-replay i {
  width: 14px;
  height: 14px;
}

@media (max-width: 720px) {
  .hero-replay span {
    display: none;
  }
  .hero-replay {
    padding: 0.7rem;
  }
}

/* ============================================
   Trust Strip
   ============================================ */
.trust-strip {
  background: var(--brand-cream-2);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-brands {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--brand-dark);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.trust-brands .dot {
  color: var(--brand-accent);
  font-weight: 700;
}

/* ============================================
   Section Head
   ============================================ */
.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--brand-dark);
  margin-top: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 560px;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Services
   ============================================ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  background: var(--brand-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 164, 106, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 164, 106, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.feature {
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-dark-2) 100%
  );
  color: #fff;
  border-color: transparent;
  grid-column: span 1;
}

.service-card.feature h3,
.service-card.feature p {
  color: #fff;
}

.service-card.feature p {
  color: rgba(255, 255, 255, 0.75);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200, 164, 106, 0.14);
  color: var(--brand-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-icon i {
  width: 24px;
  height: 24px;
}

.service-card.feature .service-icon {
  background: rgba(200, 164, 106, 0.18);
  color: var(--brand-accent);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--brand-dark);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-accent);
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.6rem;
}

.service-link i {
  width: 15px;
  height: 15px;
}

/* ============================================
   Estimate CTA
   ============================================ */
.estimate-cta {
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-dark-3) 100%
  );
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.estimate-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 164, 106, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.estimate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}

.estimate-copy {
  flex: 1;
  min-width: 300px;
}

.estimate-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  color: #fff;
  margin: 1rem 0 0.75rem;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
}

.estimate-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--brand-cream-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-copy p {
  color: var(--text);
  font-size: 1.05rem;
  margin-top: 1.25rem;
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 560px) {
  .principles {
    grid-template-columns: 1fr;
  }
}

.principles li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.principles i {
  width: 22px;
  height: 22px;
  color: var(--brand-accent-deep);
  flex-shrink: 0;
  margin-top: 3px;
}

.principles strong {
  display: block;
  color: var(--brand-dark);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.principles span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  grid-template-areas:
    'primary primary'
    'secondary tertiary';
}

.visual-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-primary {
  grid-area: primary;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-dark-3) 100%
  );
  color: #fff;
  padding: 2.5rem;
  min-height: 220px;
}

.visual-primary .stat-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  max-width: 260px;
}

.stat-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--brand-accent);
  line-height: 1;
}

.plus {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 4px;
}

.visual-secondary {
  grid-area: secondary;
}

.visual-tertiary {
  grid-area: tertiary;
  align-items: flex-start;
}

.visual-tertiary i {
  width: 28px;
  height: 28px;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}

.stat-mid {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.visual-card .stat-caption {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   Portfolio
   ============================================ */
.portfolio {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.tile-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.tile-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.tile-3 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.tile-4 {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

@media (max-width: 800px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .tile-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .tile-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .tile-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .tile-4 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
  }
}

.portfolio-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--brand-dark);
  transition: transform 0.4s var(--ease);
}

.portfolio-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(15, 12, 10, 0.85) 100%
  );
  z-index: 1;
}

.portfolio-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.portfolio-tile:hover::after {
  transform: scale(1.06);
}

.tile-1::after {
  background: linear-gradient(135deg, #3b291f 0%, #1f1a17 100%);
}
.tile-2::after {
  background: linear-gradient(135deg, #4a3835 0%, #2a2320 100%);
}
.tile-3::after {
  background: linear-gradient(135deg, #6b5340 0%, #3b291f 100%);
}
.tile-4::after {
  background: linear-gradient(135deg, #2a2320 0%, #4a3835 100%);
}

/* Add a subtle roof pattern to each tile */
.portfolio-tile::after {
  background-image: linear-gradient(
      135deg,
      rgba(200, 164, 106, 0.06) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 12px,
      transparent 12px,
      transparent 26px
    );
}

.tile-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tile-label span:first-child {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.tile-city {
  font-size: 0.85rem;
  color: var(--brand-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-dark-2) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 164, 106, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 106, 0.18);
  border-radius: var(--radius-lg);
  margin: 0;
  transition: all 0.3s var(--ease);
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 164, 106, 0.4);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.stars i {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial strong {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial span {
  color: var(--brand-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--brand-cream-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-copy p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info i {
  width: 22px;
  height: 22px;
  color: var(--brand-accent-deep);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.contact-info a,
.contact-info span:not(.label) {
  color: var(--brand-dark);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--brand-accent-deep);
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--brand-cream-2);
  color: var(--brand-dark);
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 400;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.12);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(200, 164, 106, 0.14);
  border: 1px solid rgba(200, 164, 106, 0.35);
  border-radius: var(--radius-sm);
  color: var(--brand-accent-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success i {
  width: 18px;
  height: 18px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 1.5rem;
}

.footer .brand {
  color: var(--brand-cream);
}

.footer .brand-primary {
  color: #fff;
}

.footer .brand-secondary {
  color: var(--brand-accent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-tag {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-accent);
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: all 0.2s;
}

.socials a:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.socials i {
  width: 16px;
  height: 16px;
}

.social-glyph {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: inherit;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
