/* =============================================================
   Phoenix Marble & Granite — styles.css
   Luxury craftsmanship with modern technology
   Palette: Crimson #C03C2A · Gold #D4A85A · Black #1E1A14 · Warm #F5F0E8
   ============================================================= */

/* -------------------------------------------------------------
   01. Variables & Reset
------------------------------------------------------------- */
:root {
  --crimson: #c03c2a;
  --crimson-dk: #a32e1e;
  --gold: #d4a85a;
  --gold-dk: #b6873e;
  --gold-soft: rgba(212, 168, 90, 0.2);
  --black: #1e1a14;
  --black-90: rgba(30, 26, 20, 0.9);
  --black-50: rgba(30, 26, 20, 0.5);
  --white: #ffffff;
  --warm-bg: #f5f0e8;
  --warm-bg-alt: #ebe3d2;
  --text-body: #4a4238;
  --text-muted: #7a7264;
  --divider-dk: rgba(255, 255, 255, 0.12);
  --divider-lt: rgba(30, 26, 20, 0.12);
  --shadow-sm: 0 4px 12px rgba(30, 26, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(30, 26, 20, 0.1);
  --shadow-lg: 0 20px 60px rgba(30, 26, 20, 0.18);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --container: 1300px;
  --section-py: clamp(60px, 10vw, 120px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--warm-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  max-width: 100%;
  display: block;
}
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--crimson);
  color: var(--white);
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -------------------------------------------------------------
   02. Typography
------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.25rem;
}
p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--black);
  border: 1px solid var(--divider-lt);
  border-radius: 100px;
  padding: 0.55rem 1.25rem 0.55rem 2rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.dark-section .eyebrow,
.eyebrow.eyebrow-dark {
  color: var(--white);
  border-color: var(--divider-dk);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.headline-accent {
  color: var(--gold);
  font-style: italic;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 60ch;
}
.dark-section .lead {
  color: rgba(255, 255, 255, 0.85);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.5rem;
  position: relative;
}
.gold-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.section-title-center .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------
   03. Layout helpers
------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: var(--section-py) 0;
}
.section-tight {
  padding: clamp(40px, 6vw, 80px) 0;
}
.section-row {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-title {
  margin-bottom: 2.5rem;
}
.section-title-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2 + p {
  margin-top: 1rem;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: var(--white);
}
.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}
.warm-section {
  background: var(--warm-bg);
}
.white-section {
  background: var(--white);
}

.grid {
  display: grid;
  gap: 30px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* -------------------------------------------------------------
   04. Buttons
------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1;
  padding: 1.125rem 4rem 1.125rem 1.75rem;
  border-radius: 100px;
  background: var(--crimson);
  color: var(--white);
  overflow: hidden;
  transition: color 0.4s var(--ease);
  z-index: 1;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--crimson-dk);
  transition: all 0.4s var(--ease);
  z-index: -1;
}
.btn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--gold) url("../images/arrow-white.svg") center / 14px
    no-repeat;
  border-radius: 50%;
  transition:
    transform 0.4s var(--ease),
    background-color 0.4s var(--ease);
}
.btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--white);
  background-image: url("../images/arrow-gold.svg");
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-outline::after {
  background: var(--gold);
}
.btn-outline:hover {
  color: var(--black);
}
.btn-outline::before {
  background-color: var(--gold);
}
.btn-outline:hover::before {
  background-color: var(--white);
}

.btn-light {
  background: var(--gold);
  color: var(--black);
}
.btn-light::after {
  background: var(--white);
}
.btn-light:hover {
  color: var(--black);
}
.btn-light::before {
  background-color: var(--white);
  background-image: url("../images/arrow-gold.svg");
}

.readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--crimson);
  text-transform: capitalize;
  position: relative;
  padding-right: 1.25rem;
  transition: gap 0.3s var(--ease);
}
.readmore::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/arrow-gold.svg") center / contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.readmore:hover::after {
  transform: rotate(-45deg);
}
.dark-section .readmore {
  color: var(--gold);
}

/* -------------------------------------------------------------
   05. Header & Navigation
------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.is-stuck {
  position: fixed;
  background: var(--black);
  border-bottom: 1px solid var(--divider-dk);
  animation: slideDown 0.4s var(--ease);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--divider-dk);
}
.site-header.is-stuck .nav-bar {
  border-bottom: 0;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}
.nav-list a {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0.875rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  right: 0.875rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--crimson);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.3s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--crimson-dk);
  color: var(--white);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--crimson);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }
  .nav-list,
  .nav-cta {
    display: none;
  }
}

.mobile-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid var(--divider-dk);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s var(--ease);
  pointer-events: none;
  z-index: 10;
}
.mobile-dropdown.is-open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}
.mobile-dropdown .container {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
.mobile-dropdown .nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0 0 1.5rem;
}
.mobile-dropdown .nav-list li {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.mobile-dropdown.is-open .nav-list li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-dropdown.is-open .nav-list li:nth-child(1) {
  transition-delay: 0.06s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(3) {
  transition-delay: 0.14s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(4) {
  transition-delay: 0.18s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(5) {
  transition-delay: 0.22s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(6) {
  transition-delay: 0.26s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(7) {
  transition-delay: 0.3s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(8) {
  transition-delay: 0.34s;
}
.mobile-dropdown.is-open .nav-list li:nth-child(9) {
  transition-delay: 0.38s;
}
.mobile-dropdown .nav-list a {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--divider-dk);
  font-size: 1rem;
  color: var(--white);
}
.mobile-dropdown .nav-list a:hover,
.mobile-dropdown .nav-list a[aria-current="page"] {
  color: var(--gold);
}
.mobile-dropdown .btn {
  width: 100%;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s var(--ease) 0.42s;
}
.mobile-dropdown.is-open .btn {
  opacity: 1;
}

/* -------------------------------------------------------------
   06. Hero
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  background: var(--black) url("../images/hero-1a.jpeg") center / cover
    no-repeat;
  padding: 200px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(30, 26, 20, 0.85) 0%,
      rgba(30, 26, 20, 0.2) 50%,
      rgba(30, 26, 20, 0.95) 100%
    ),
    linear-gradient(90deg, rgba(30, 26, 20, 0.7) 0%, rgba(30, 26, 20, 0.2) 60%);
  z-index: -1;
}
.hero .container {
  max-width: 1100px;
}
.hero-content {
  max-width: 760px;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-content h1 .headline-accent {
  display: inline-block;
}
.hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--divider-dk);
  border-radius: 100px;
  transition:
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.hero-call-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-call-link svg {
  width: 18px;
  height: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider-dk);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--white);
}
.hero-meta-item .icon-disc {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-meta-item .icon-disc svg {
  width: 22px;
  height: 22px;
}
.hero-meta-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.hero-meta-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* Page hero (smaller, used on inner pages) */
.page-hero {
  position: relative;
  background: var(--black) url("../images/hero-3.jpeg") center / cover no-repeat;
  padding: 200px 0 120px;
  text-align: center;
  color: var(--white);
  isolation: isolate;
}
.page-hero > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 26, 20, 0.85) 0%,
    rgba(30, 26, 20, 0.5) 50%,
    rgba(30, 26, 20, 0.95) 100%
  );
  z-index: -1;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0;
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .breadcrumb a:hover {
  color: var(--gold);
}
.page-hero .breadcrumb-sep {
  opacity: 0.35;
}
.page-hero-sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------
   07. Cards (services, materials, why phoenix)
------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border-top: 2px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: var(--crimson);
  transition: height 0.4s var(--ease);
  z-index: -1;
}
.card:hover::before {
  height: 100%;
}
.card:hover h3,
.card:hover p,
.card:hover .readmore {
  color: var(--white);
}
.card:hover .readmore::after {
  filter: brightness(0) invert(1);
}
.card:hover .icon-disc {
  background: var(--white);
  color: var(--crimson);
}

.icon-disc {
  width: 64px;
  height: 64px;
  background: var(--crimson);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
.icon-disc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.card:hover .icon-disc::before,
.icon-disc.gold-hover:hover::before {
  transform: scale(1);
}
.icon-disc svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.icon-disc img {
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}
.card:hover .icon-disc svg {
  color: var(--crimson);
}

.card h3 {
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.card p {
  margin-bottom: 1.25rem;
  transition: color 0.3s var(--ease);
}

/* Dark variant card */
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--divider-dk);
  color: var(--white);
}
.card-dark h3 {
  color: var(--white);
}
.card-dark p {
  color: rgba(255, 255, 255, 0.78);
}
.card-dark::before {
  display: none;
}
.card-dark:hover {
  border-top-color: var(--gold);
  border-color: var(--divider-dk);
}

/* -------------------------------------------------------------
   08. Reusable patterns
------------------------------------------------------------- */
.image-cover {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}
.image-cover img,
.image-cover svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.image-cover.zoomable:hover img,
.image-cover.zoomable:hover svg {
  transform: scale(1.05);
}

.image-cover.aspect-photo {
  aspect-ratio: 4/3;
}
.image-cover.aspect-portrait {
  aspect-ratio: 3/4;
}
.image-cover.aspect-square {
  aspect-ratio: 1/1;
}
.image-cover.aspect-wide {
  aspect-ratio: 16/10;
}

/* Curtain reveal (GSAP timeline driven, but base styling here) */
.image-reveal {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.image-reveal img,
.image-reveal svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fade-up — IntersectionObserver toggles .in-view */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* Heading char-stagger (GSAP-driven). Pre-animation state hides the splits to avoid FOUC. */
.text-reveal {
  display: block;
}
.text-reveal .char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Rotating gold badge */
.badge-rotate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
}
.badge-rotate-ring {
  position: absolute;
  inset: 0;
  animation: spin 20s linear infinite;
}
.badge-rotate:hover .badge-rotate-ring {
  animation-play-state: paused;
}
.badge-rotate-core {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s var(--ease);
}
.badge-rotate:hover .badge-rotate-core {
  background: var(--white);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Stat counters */
.stat {
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
}
.dark-section .stat-num {
  color: var(--gold);
}

/* -------------------------------------------------------------
   09. Featured services / Why Phoenix
------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

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

/* -------------------------------------------------------------
   10. Materials strip
------------------------------------------------------------- */
.materials-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.material-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4/5;
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}
.material-tile:hover {
  transform: translateY(-4px);
}
.material-tile img,
.material-tile svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.material-tile:hover img,
.material-tile:hover svg {
  transform: scale(1.06);
}
.material-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(30, 26, 20, 0.95) 100%
  );
  z-index: 1;
}
.material-tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--white);
}
.material-tile-body h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}
.material-tile-body p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.875rem;
}

/* -------------------------------------------------------------
   11. 4-step process (condensed)
------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 4rem;
  right: -15px;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.process-step:last-child::after {
  display: none;
}
@media (max-width: 970px) {
  .process-step::after {
    display: none;
  }
}
.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.3s var(--ease);
  border: 2px solid transparent;
}
.process-step:hover .process-step-num {
  background: var(--gold);
  color: var(--black);
}
.process-step h3 {
  margin-bottom: 0.5rem;
}

/* Vertical timeline (process page) */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 3rem;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-item .step-marker {
  position: absolute;
  top: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--warm-bg);
}
.timeline-item:nth-child(odd) .step-marker {
  right: -24px;
}
.timeline-item:nth-child(even) .step-marker {
  left: -24px;
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.timeline-card h3 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 24px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    padding: 1rem 1rem 1rem 4rem;
    text-align: left;
  }
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  .timeline-item:nth-child(odd) .step-marker,
  .timeline-item:nth-child(even) .step-marker {
    left: 0;
    right: auto;
  }
}

/* -------------------------------------------------------------
   12. Testimonials
------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: inline-flex;
  gap: 0.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--black);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-cite {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--divider-lt);
}
.testimonial-cite-name {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.125rem;
  font-family: var(--font-head);
}
.testimonial-cite-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.dark-section .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--divider-dk);
  border-top-color: var(--gold);
}
.dark-section .testimonial-quote {
  color: var(--white);
}
.dark-section .testimonial-cite-name {
  color: var(--white);
}
.dark-section .testimonial-cite {
  border-color: var(--divider-dk);
}

/* Swiper specific overrides */
.swiper {
  padding-bottom: 3rem !important;
  overflow: hidden !important;
}
.swiper-pagination {
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

/* -------------------------------------------------------------
   13. Stats counter strip
------------------------------------------------------------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 3rem 0;
  border-top: 1px solid var(--divider-dk);
  border-bottom: 1px solid var(--divider-dk);
}
.stats-strip .stat {
  padding: 0;
}

/* -------------------------------------------------------------
   14. Service area callout / CTA strip
------------------------------------------------------------- */
.cta-strip {
  background: var(--warm-bg-alt);
  padding: clamp(50px, 7vw, 80px) 0;
}
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-strip h2 {
  max-width: 30ch;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dark-section .cta-strip,
.cta-strip.dark-section {
  background: var(--black);
}
.cta-strip.dark-section h2 {
  color: var(--white);
}
.cta-strip:not(.dark-section) .btn-outline {
  color: var(--black);
  border-color: var(--black);
}

.area-callout {
  background: var(--black);
  color: var(--white);
  padding: clamp(50px, 7vw, 80px) 0;
}
.area-callout h2 {
  color: var(--white);
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.area-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.area-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* -------------------------------------------------------------
   15. Footer
------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(50px, 7vw, 90px) 0 0;
  border-top: 1px solid var(--divider-dk);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--divider-dk);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 80px;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.9375rem;
  max-width: 30ch;
}
.footer-heading {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.footer-links li {
  margin-bottom: 0.625rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--divider-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* -------------------------------------------------------------
   16. Forms
------------------------------------------------------------- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  border-top: 2px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.single {
  grid-template-columns: 1fr;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.form-group label .req {
  color: var(--crimson);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--warm-bg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--black);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
}
.form-status {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(212, 168, 90, 0.15);
  color: var(--gold-dk);
  border: 1px solid var(--gold);
}
.form-status.error {
  display: block;
  background: rgba(192, 60, 42, 0.1);
  color: var(--crimson-dk);
  border: 1px solid var(--crimson);
}

/* -------------------------------------------------------------
   17. FAQ accordion
------------------------------------------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-top-color 0.3s var(--ease);
}
.accordion-item.is-open {
  border-top-color: var(--gold);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 500;
}
.accordion-trigger .icon-toggle {
  width: 32px;
  height: 32px;
  background: var(--warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
  color: var(--crimson);
  flex-shrink: 0;
}
.accordion-item.is-open .icon-toggle {
  background: var(--crimson);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-body);
}

/* -------------------------------------------------------------
   18. Gallery & Lightbox
------------------------------------------------------------- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.gallery-tab {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--divider-lt);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery-tab:hover,
.gallery-tab.is-active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--black);
  isolation: isolate;
}
.gallery-item img,
.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img,
.gallery-item:hover svg {
  transform: scale(1.06);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(30, 26, 20, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.125rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: none;
}

.gallery-item.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 20, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--divider-dk);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}
.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Before / After slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  aspect-ratio: 4/3;
  background: var(--black);
  max-width: 800px;
  margin: 0 auto;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-img img,
.ba-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-img-after {
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 2;
}
.ba-handle::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

/* -------------------------------------------------------------
   19. Services page (sticky sidebar layout)
------------------------------------------------------------- */
.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1023px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-side {
    display: none;
  }
}
.services-side {
  position: sticky;
  top: 120px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.services-side h3 {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

/* Mobile jump-to dropdown */
.services-jump {
  display: none;
}
@media (max-width: 1023px) {
  .services-jump {
    display: block;
    position: relative;
    margin-bottom: 1.5rem;
  }
  .services-jump-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--divider-lt);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    font-family: inherit;
  }
  .services-jump-toggle svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .services-jump[data-open="true"] .services-jump-toggle svg {
    transform: rotate(180deg);
  }
  .services-jump-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--divider-lt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.12));
    overflow: hidden;
    z-index: 51;
  }
  .services-jump[data-open="true"] .services-jump-dropdown {
    display: block;
  }
  .services-jump-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--divider-lt);
    transition:
      background 0.15s,
      color 0.15s;
  }
  .services-jump-dropdown a:last-child {
    border-bottom: 0;
  }
  .services-jump-dropdown a:hover {
    background: var(--warm-bg);
    color: var(--crimson);
  }
}
.materials-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--divider-lt);
  color: var(--black);
  font-weight: 500;
}
.materials-list a:hover {
  color: var(--crimson);
}
.materials-list a:last-child {
  border-bottom: 0;
}

.service-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 600px) {
  .service-section {
    grid-template-columns: 1fr;
  }
}
.service-section .icon-disc {
  margin-bottom: 0;
}
.service-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}
.service-section ul {
  margin: 1rem 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}
.service-section ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
}
.service-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  background: url("../images/icon-check.svg") center / contain no-repeat;
  filter: invert(31%) sepia(86%) saturate(2155%) hue-rotate(354deg)
    brightness(91%) contrast(86%);
}

/* -------------------------------------------------------------
   20. Service areas grid
------------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.area-card h3 {
  margin-bottom: 0.75rem;
}
.area-card .icon-disc {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
}
.area-card .icon-disc svg {
  width: 20px;
  height: 20px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--warm-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  border: 1px dashed var(--divider-lt);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------------------
   21. Hours table
------------------------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--divider-lt);
}
.hours-table tr:last-child {
  border-bottom: 0;
}
.hours-table td {
  padding: 0.625rem 0;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--black);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-body);
}
.dark-section .hours-table tr {
  border-color: var(--divider-dk);
}
.dark-section .hours-table td:first-child {
  color: var(--white);
}
.dark-section .hours-table td:last-child {
  color: rgba(255, 255, 255, 0.78);
}

/* -------------------------------------------------------------
   22. Contact page split layout
------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 2px solid var(--gold);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-info-card .footer-contact-item {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}
.contact-info-card .footer-contact-item a {
  color: var(--white);
}
.contact-info-card .footer-contact-item a:hover {
  color: var(--gold);
}
.contact-info-card .hours-table tr {
  border-color: rgba(255, 255, 255, 0.12);
}
.contact-info-card .hours-table th {
  color: var(--white);
  font-weight: 600;
}
.contact-info-card .hours-table td {
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------------------------------------------------
   23. Quote band / positioning quote (about page)
------------------------------------------------------------- */
.quote-band {
  background: var(--black);
  padding: clamp(60px, 9vw, 100px) 0;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.quote-band::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 16rem;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.1;
  z-index: -1;
}
.quote-band blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}
.quote-band blockquote .headline-accent {
  color: var(--gold);
  font-style: italic;
}
.quote-band cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* -------------------------------------------------------------
   24. Differentiators list (about page)
------------------------------------------------------------- */
.diff-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.diff-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.diff-item:hover {
  transform: translateY(-3px);
}
.diff-item .icon-disc {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
}
.diff-item .icon-disc svg {
  width: 20px;
  height: 20px;
}
.diff-item h4 {
  margin-bottom: 0.25rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
}
.diff-item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* -------------------------------------------------------------
   25. About origin two-col
------------------------------------------------------------- */
.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-two.reverse > :first-child {
  order: 2;
}
@media (max-width: 900px) {
  .split-two {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-two.reverse > :first-child {
    order: 0;
  }
}

/* -------------------------------------------------------------
   26. Owner bio block
------------------------------------------------------------- */
.owner-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 700px) {
  .owner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.owner-card .image-cover {
  aspect-ratio: 3/4;
}
.owner-card h3 {
  margin-bottom: 0.5rem;
}
.owner-card .role {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

/* -------------------------------------------------------------
   27. Privacy policy / static text page
------------------------------------------------------------- */
.text-page {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.text-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.text-page h2:first-of-type {
  margin-top: 0;
}
.text-page p,
.text-page li {
  font-size: 0.9375rem;
  line-height: 1.7;
}
.text-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  list-style: disc;
  color: var(--text-body);
}

/* -------------------------------------------------------------
   28. Reduced-motion guard
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  .badge-rotate-ring {
    animation: none;
  }
  .mobile-dropdown {
    transition: none;
  }
  .mobile-dropdown .nav-list li,
  .mobile-dropdown .btn {
    transition: none;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
}

/* -------------------------------------------------------------
   29. Utilities
------------------------------------------------------------- */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-crimson {
  color: var(--crimson);
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------
   30. Responsive small tweaks
------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 50px;
    min-height: 0;
    background-size: cover;
    background-position: center;
  }
  .hero-meta {
    gap: 1rem;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-bar {
    padding: 1rem 0;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 1rem 3.25rem 1rem 1.25rem;
    font-size: 0.875rem;
  }
  .btn::before {
    width: 34px;
    height: 34px;
    right: 4px;
  }
  .hero-call-link {
    padding: 1rem 1rem;
  }
}
