:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4efe6;
  --muted: #b9afa2;
  --accent: #d8b46a;
  --accent-soft: rgba(216, 180, 106, 0.16);
  --line: rgba(255, 255, 255, 0.12);
  --max-width: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 180, 106, 0.13), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  max-width: 960px;
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
}

h3 {
  font-size: 22px;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Header */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max-width), calc(100% - 32px));
  height: 66px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: #080808 !important;
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

/* Hero */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 72% 38%, rgba(216, 180, 106, 0.32), transparent 24%),
    linear-gradient(135deg, #090909 0%, #15110b 40%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.07) 42%, transparent 47%),
    linear-gradient(130deg, transparent 0%, transparent 55%, rgba(216, 180, 106, 0.12) 57%, transparent 64%);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(216, 180, 106, 0.18), transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero-text {
  max-width: 760px;
  font-size: 20px;
  margin-top: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: 0.25s ease;
}

.button.primary {
  background: var(--accent);
  color: #070707;
  border-color: var(--accent);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

/* Intro */

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.intro p:last-child {
  font-size: 18px;
}

/* Services */

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.services-section {
  background:
    radial-gradient(circle at top right, rgba(216, 180, 106, 0.1), transparent 34%),
    transparent;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 180, 106, 0.38);
}

.service-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  border-bottom: 0;
  margin-bottom: -1px;
}

.image-one {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(216, 180, 106, 0.18)),
    radial-gradient(circle at 30% 30%, #9d7a3d, transparent 24%),
    linear-gradient(135deg, #181818, #050505);
}

.image-two {
  background:
    radial-gradient(circle at 70% 35%, rgba(216, 180, 106, 0.5), transparent 24%),
    linear-gradient(135deg, #20170e, #050505);
}

.image-three {
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 75% 45%, rgba(216, 180, 106, 0.32), transparent 22%),
    linear-gradient(135deg, #151515, #050505);
}

.image-four {
  background:
    linear-gradient(120deg, transparent 10%, rgba(216, 180, 106, 0.3) 45%, transparent 52%),
    linear-gradient(135deg, #0c0c0c, #19120a);
}

.image-five {
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.24), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(216, 180, 106, 0.34), transparent 34%),
    linear-gradient(135deg, #050505, #18120b);
}

.image-six {
  background:
    linear-gradient(135deg, rgba(216, 180, 106, 0.22), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 38px),
    #0b0b0b;
}

.service-content {
  padding: 24px;
}

.service-content p {
  margin-top: 14px;
}

.service-content a {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 800;
}

/* Statement */

.statement {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(216,180,106,0.05));
}

.statement .container {
  max-width: 900px;
}

.statement p {
  font-size: 19px;
  margin-top: 24px;
}

/* Quote */

.quote-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 180, 106, 0.12), transparent 34%),
    var(--bg-soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.quote-grid > div p:last-child {
  margin-top: 22px;
  font-size: 18px;
}

.quote-form {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

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

label {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  font: inherit;
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    rgba(0, 0, 0, 0.32);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  padding-right: 46px;
}

select option {
  background: #111111;
  color: #f4efe6;
}

select option:checked {
  background: #d8b46a;
  color: #070707;
}
textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(216, 180, 106, 0.65);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 20px;
  text-align: center;
  background: #050505;
}

.site-footer p + p {
  margin-top: 8px;
  font-size: 13px;
}

/* Animation */

.fade-in {
  animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Responsive */

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    height: auto;
    border-radius: 24px;
    align-items: flex-start;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 180px;
  }

  .intro-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

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

  .hero-text {
    font-size: 17px;
  }

  .service-image {
    height: 180px;
  }

  .quote-form {
    padding: 20px;
  }
}
/* About Page */

.about-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 75% 35%, rgba(216, 180, 106, 0.28), transparent 28%),
    linear-gradient(135deg, #090909, #18120b 45%, #050505);
}

.about-hero-text {
  max-width: 780px;
  font-size: 20px;
  margin-top: 28px;
}

.about-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.about-copy p {
  font-size: 18px;
}

.about-copy p + p {
  margin-top: 24px;
}

.values-section {
  background:
    radial-gradient(circle at top left, rgba(216, 180, 106, 0.1), transparent 32%),
    transparent;
}

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

.value-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.value-card p {
  margin-top: 16px;
}

.about-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(216, 180, 106, 0.14), transparent 38%),
    var(--bg-soft);
}

.about-cta .container {
  max-width: 820px;
}

.about-cta p {
  margin-top: 22px;
  font-size: 18px;
}

.about-cta .button {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .about-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 180px;
  }
}
/* Page transition */

body {
  animation: pageFadeIn 0.45s ease both;
}

body.page-leave {
  animation: pageFadeOut 0.32s ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes pageFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}
/* Thank You Page */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 50% 35%, rgba(216, 180, 106, 0.18), transparent 34%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #090909, #15110b 42%, #050505);
}

.thank-you-card {
  max-width: 880px;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 70px 46px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.thank-you-card p {
  max-width: 680px;
  margin: 26px auto 0;
  font-size: 18px;
}

.thank-you-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
/* Services Needed checkboxes */

.services-needed-field {
  grid-column: 1 / -1;
  border: 0;
  padding: 0;
  margin: 0;
}

.services-needed-field legend {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.checkbox-option:hover {
  border-color: rgba(216, 180, 106, 0.45);
  background: rgba(216, 180, 106, 0.08);
  transform: translateY(-1px);
}

.checkbox-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.checkbox-option span {
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
}

@media (max-width: 700px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
/* Quote form submit button polish */

.quote-form button[type="submit"] {
  width: 100%;
  min-height: 58px;
  padding: 17px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d884, var(--accent));
  color: #080808;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(216, 180, 106, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.quote-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(216, 180, 106, 0.32);
  filter: brightness(1.04);
}

.quote-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(216, 180, 106, 0.22);
}
/* Thank you page */

.thank-you-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 180, 106, 0.16), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(47, 124, 255, 0.10), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.10), transparent 34%);
  pointer-events: none;
}

.thank-you-card {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 46px;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.thank-you-card .eyebrow {
  margin-bottom: 18px;
}

.thank-you-card h1 {
  max-width: 680px;
  margin: 0 auto 22px;
}

.thank-you-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.thank-you-note {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.thank-you-buttons {
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 700px) {
  .thank-you-section {
    padding: 130px 0 70px;
  }

  .thank-you-card {
    padding: 44px 24px;
  }

  .thank-you-buttons {
    flex-direction: column;
  }

  .thank-you-buttons .button {
    width: 100%;
    justify-content: center;
  }
}
/* Service card real images */

.service-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-one {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.28)),
    url("images/1.JPG");
  filter: brightness(1.08) saturate(1.05) contrast(1.01);
}

.image-two {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.26)),
    url("images/2.jpeg");
  filter: brightness(1.10) saturate(1.06) contrast(1.01);
}

.image-three {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("images/3.jpeg");
}

.image-four {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("images/4.jpeg");
}

.image-five {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("images/5.jpeg");
}

.image-six {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("images/6.jpeg");
}
/* Adjust Outdoor Cinema image position */

.image-four {
  background-position: center 25%;
}
/* Spacing polish for desktop and mobile */

@media (min-width: 701px) {
  .hero {
    min-height: 86vh;
    padding: 140px 0 90px;
  }

  .section {
    padding: 88px 0;
  }

  .intro.section {
    padding: 72px 0;
  }

  .services-section {
    padding: 84px 0;
  }

  .statement {
    padding: 76px 0;
  }

  .quote-section {
    padding: 86px 0;
  }

  .about-hero {
    padding: 145px 0 90px;
  }

  .about-section,
  .values-section,
  .about-cta {
    padding: 84px 0;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 118px 0 54px;
  }

  .section {
    padding: 52px 0;
  }

  .intro.section {
    padding: 42px 0;
  }

  .intro-grid {
    gap: 24px;
  }

  .services-section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .statement {
    padding: 50px 0;
  }

  .quote-section {
    padding: 54px 0;
  }

  .about-hero {
    padding: 118px 0 58px;
  }

  .about-section,
  .values-section,
  .about-cta {
    padding: 52px 0;
  }

  .thank-you-section {
    min-height: auto;
    padding: 112px 0 54px;
  }
}
/* Final responsive hero spacing fix */

/* Phones */
@media (max-width: 700px) {
  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header .logo {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 13px;
  }

  .nav a {
    font-size: 0.86rem;
  }

  .nav .nav-cta {
    padding: 11px 17px;
  }

  .hero {
    min-height: auto;
    padding: 176px 0 48px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.75rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons {
    margin-top: 28px;
    gap: 12px;
  }

  .intro.section {
    padding: 42px 0 44px;
  }

  .services-section {
    padding: 50px 0;
  }

  .statement {
    padding: 48px 0;
  }

  .quote-section {
    padding: 52px 0;
  }
}

/* Tablets / iPad */
@media (min-width: 701px) and (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding: 126px 0 70px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.8vw, 5.5rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 720px;
  }

  .intro.section {
    padding: 56px 0;
  }

  .services-section {
    padding: 64px 0;
  }

  .statement {
    padding: 58px 0;
  }

  .quote-section {
    padding: 66px 0;
  }

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

  .about-section,
  .values-section,
  .about-cta {
    padding: 62px 0;
  }
}
/* AURA Light Field Design V2 */

/* Stable page background — no side fields, no hard cuts */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #050609;
}

body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 180, 106, 0.10), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(47, 124, 255, 0.11), transparent 34%),
    radial-gradient(circle at 58% 60%, rgba(139, 92, 246, 0.055), transparent 38%),
    linear-gradient(135deg, #050609 0%, #07111d 46%, #050506 100%);
}

/* One soft light field for the full website */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      transparent 0%,
      transparent 38%,
      rgba(216, 180, 106, 0.105) 47%,
      rgba(216, 180, 106, 0.035) 53%,
      transparent 64%,
      transparent 100%
    ),
    linear-gradient(
      62deg,
      transparent 0%,
      transparent 48%,
      rgba(47, 124, 255, 0.10) 57%,
      rgba(47, 124, 255, 0.028) 64%,
      transparent 74%,
      transparent 100%
    ),
    radial-gradient(ellipse at 82% 24%, rgba(47, 124, 255, 0.14), transparent 36%),
    radial-gradient(ellipse at 18% 78%, rgba(216, 180, 106, 0.095), transparent 38%);
  opacity: 0.78;
}

/* Soft vignette only — no visible grid/pattern */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.32) 82%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  opacity: 0.65;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Remove hard section cuts */
.hero,
.about-hero,
.thank-you-section,
.intro.section,
.services-section,
.statement,
.quote-section,
.about-section,
.values-section,
.about-cta {
  background: transparent;
}

/* Header blends into the background instead of looking like a separate dark block */
.site-header {
  background:
    linear-gradient(135deg, rgba(5, 7, 10, 0.68), rgba(5, 7, 10, 0.44));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

/* Hero spacing cleanup */
.hero {
  min-height: auto;
  padding: 132px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

/* What We Do should feel connected, not like a separate gray stripe */
.intro.section {
  padding: 58px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

/* Services glow, but contained — no side field */
.services-section {
  position: relative;
  overflow: hidden;
  padding-top: 66px;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  height: 360px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(216, 180, 106, 0.10), transparent 38%),
    radial-gradient(ellipse at 82% 42%, rgba(47, 124, 255, 0.10), transparent 42%);
  filter: blur(18px);
  opacity: 0.72;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Cards feel premium but not too flashy */
.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 106, 0.32);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.40),
    0 0 28px rgba(216, 180, 106, 0.07);
}

.service-image {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.service-card:hover .service-image {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}

/* Glass areas refined */
.quote-form,
.thank-you-card,
.value-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

/* Less empty space near footer */
.quote-section {
  padding-bottom: 54px;
}

.site-footer {
  padding: 28px 0 32px;
}

/* About / Thank-you spacing */
.about-hero {
  min-height: auto;
  padding: 132px 0 76px;
}

.thank-you-section {
  min-height: auto;
  padding: 126px 0 62px;
}

/* Phones */
@media (max-width: 700px) {
  body::before {
    opacity: 0.62;
  }

  body::after {
    opacity: 0.72;
  }

  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    padding: 17px;
    gap: 12px;
  }

  .hero {
    padding: 154px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .intro.section {
    padding: 40px 0 42px;
  }

  .services-section {
    padding-top: 48px;
  }

  .statement {
    padding: 46px 0;
  }

  .quote-section {
    padding-top: 50px;
    padding-bottom: 38px;
  }

  .site-footer {
    padding: 24px 20px 28px;
  }

  .about-hero {
    padding: 154px 0 52px;
  }

  .thank-you-section {
    padding: 126px 0 44px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:hover .service-image {
    transform: none;
    filter: none;
  }
}

/* Tablets / iPad */
@media (min-width: 701px) and (max-width: 1100px) {
  body::before {
    opacity: 0.68;
  }

  .hero {
    padding: 106px 0 56px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.4vw, 5rem);
    line-height: 0.98;
  }

  .intro.section {
    padding: 48px 0;
  }

  .services-section {
    padding-top: 54px;
  }

  .statement {
    padding: 52px 0;
  }

  .quote-section {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .about-hero {
    padding: 112px 0 58px;
  }

  .about-section,
  .values-section,
  .about-cta {
    padding: 56px 0;
  }
}
/* Phone hero spacing adjustment */

@media (max-width: 700px) {
  .hero {
    padding-top: 48px;
  }

  .hero .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
  }
}
/* Header glass consistency fix */

.site-header {
  overflow: hidden;
  background: rgba(6, 8, 12, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 180, 106, 0.08), transparent 32%),
    radial-gradient(circle at 86% 30%, rgba(47, 124, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.site-header .logo,
.site-header .nav {
  position: relative;
  z-index: 1;
}
/* Header seam fix */

.site-header {
  border: none !important;
  overflow: hidden;
  background: rgba(6, 8, 12, 0.92) !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 180, 106, 0.06), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(47, 124, 255, 0.05), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.site-header::after {
  display: none !important;
}

.site-header .logo,
.site-header .nav {
  position: relative;
  z-index: 1;
}
/* Hard fix: solid clean header, no visible seam */

.site-header {
  border: 0 !important;
  outline: 0 !important;
  overflow: hidden;
  background: linear-gradient(135deg, #07090d, #0b1018) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
  content: none !important;
}

.hero {
  border-top: 0 !important;
}

.hero::before,
.hero::after,
.hero-overlay {
  border: 0 !important;
}
/* Unified header shell fix */

.site-header {
  position: fixed;
  overflow: hidden;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* One solid rounded background behind the entire header */
.site-header::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(7, 9, 13, 0.96), rgba(10, 16, 24, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Remove any extra header overlay */
.site-header::after {
  content: none !important;
  display: none !important;
}

/* Keep text/buttons above the solid header shell */
.site-header .logo,
.site-header .nav {
  position: relative;
  z-index: 1;
}

/* Make nav itself transparent so it doesn't create its own stripe */
.site-header .nav {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
/* Header clickability fix */

.site-header {
  z-index: 9999;
  pointer-events: none;
}

.site-header::before,
.site-header::after {
  pointer-events: none !important;
}

.site-header .logo,
.site-header .nav,
.site-header .nav a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
/* Home hero background continuity fix */

.hero {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.hero-overlay {
  display: none !important;
}

.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.intro.section {
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
/* Button hover glow polish */

.button,
.nav-cta,
.quote-form button[type="submit"] {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

/* Gold buttons: Get a Quote / Request a Quote / Back to Home */
.button.primary,
.nav-cta,
.quote-form button[type="submit"] {
  box-shadow:
    0 10px 28px rgba(216, 180, 106, 0.18);
}

.button.primary:hover,
.nav-cta:hover,
.quote-form button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 16px 42px rgba(216, 180, 106, 0.36),
    0 0 28px rgba(216, 180, 106, 0.22);
}

/* Secondary buttons: View Services */
.button.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 106, 0.42);
  background: rgba(216, 180, 106, 0.08);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(216, 180, 106, 0.13);
}

/* Service card Request a Quote links */
.service-content a {
  transition:
    color 0.22s ease,
    text-shadow 0.22s ease,
    opacity 0.22s ease;
}

.service-content a:hover {
  color: var(--accent);
  text-shadow:
    0 0 14px rgba(216, 180, 106, 0.38);
  opacity: 1;
}

/* On phones, keep hover effects calm */
@media (max-width: 700px) {
  .button.primary:hover,
  .nav-cta:hover,
  .quote-form button[type="submit"]:hover,
  .button.secondary:hover {
    transform: none;
  }
}
/* Final phone header overlap fix */

@media (max-width: 700px) {
  .hero {
    padding-top: 168px !important;
  }

  .about-hero {
    padding-top: 168px !important;
  }

  .thank-you-section {
    padding-top: 142px !important;
  }

  .hero .eyebrow,
  .about-hero .eyebrow {
    margin-top: 0;
  }
}
/* AURA Premium Motion Layer - safe version */

/* Elements appear softly as you scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Service cards feel a little more cinematic on desktop hover */
@media (hover: hover) and (pointer: fine) {
  .service-card {
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 180, 106, 0.34);
    box-shadow:
      0 28px 76px rgba(0, 0, 0, 0.42),
      0 0 28px rgba(216, 180, 106, 0.08);
  }

  .service-card:hover .service-image {
    transform: scale(1.03);
    filter: saturate(1.06) contrast(1.04);
  }
}

/* Checked services look intentional, not like default checkboxes */
.checkbox-option:has(input:checked) {
  border-color: rgba(216, 180, 106, 0.55);
  background: rgba(216, 180, 106, 0.105);
  box-shadow:
    0 0 0 1px rgba(216, 180, 106, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

/* Form focus polish */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(216, 180, 106, 0.55);
  box-shadow:
    0 0 0 3px rgba(216, 180, 106, 0.10),
    0 0 22px rgba(216, 180, 106, 0.08);
}

/* Keep motion lighter on phones */
@media (max-width: 700px) {
  .reveal-on-scroll {
    transform: translateY(12px);
    filter: blur(3px);
    transition-duration: 0.55s;
  }

  .service-card:hover,
  .service-card:hover .service-image {
    transform: none;
    filter: none;
  }
}

/* Accessibility: if user prefers less motion, show everything normally */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* Softer services reveal */

.service-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(8px);
  filter: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  transition-delay: 0ms !important;
}

.service-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

/* Keep desktop hover after reveal */
@media (hover: hover) and (pointer: fine) {
  .service-card.reveal-on-scroll.is-visible:hover {
    transform: translateY(-4px);
  }
}
/* Quote date/phone input polish - clean */

input[name="phone"],
input[name="event-date"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

input[name="phone"]::placeholder,
input[name="event-date"]::placeholder {
  color: rgba(244, 239, 230, 0.42);
}

.aura-date-picker {
  cursor: text;
  padding-right: 48px !important;
  background-image:
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3V6M17 3V6M4 9H20M6 5H18C19.1046 5 20 5.89543 20 7V19C20 20.1046 19.1046 21 18 21H6C4.89543 21 4 20.1046 4 19V7C4 5.89543 4.89543 5 6 5Z' stroke='%23d8b46a' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 18px) 50% !important;
  background-size: 18px 18px !important;
}

/* AURA calendar controls polish */

.aura-date-picker {
  cursor: text;
}

/* Calendar box */
.flatpickr-calendar.aura-calendar {
  background: rgba(8, 12, 18, 0.98) !important;
  border: 1px solid rgba(216, 180, 106, 0.28) !important;
  border-radius: 18px !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(216, 180, 106, 0.12) !important;
  color: var(--text) !important;
  font-family: inherit !important;
  overflow: visible !important;
}

.flatpickr-calendar.aura-calendar::before,
.flatpickr-calendar.aura-calendar::after {
  border-bottom-color: rgba(8, 12, 18, 0.98) !important;
}

/* Month / year top area */
.aura-calendar .flatpickr-months {
  padding: 10px 8px 4px !important;
}

.aura-calendar .flatpickr-month {
  height: 42px !important;
  color: var(--text) !important;
  fill: var(--text) !important;
}

.aura-calendar .flatpickr-current-month {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  left: 0 !important;
  width: 100% !important;
  height: 42px !important;
  padding: 0 !important;
  font-size: 1rem !important;
}

/* Month dropdown */
.aura-calendar .flatpickr-monthDropdown-months {
  width: auto !important;
  min-width: 96px !important;
  height: 34px !important;
  padding: 0 28px 0 12px !important;
  border: 1px solid rgba(216, 180, 106, 0.22) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.aura-calendar .flatpickr-monthDropdown-months:hover {
  border-color: rgba(216, 180, 106, 0.42) !important;
  background: rgba(216, 180, 106, 0.08) !important;
}

.aura-calendar .flatpickr-monthDropdown-months option {
  background: #0b0f16 !important;
  color: #f4efe6 !important;
}

/* Year input wrapper */
.aura-calendar .numInputWrapper {
  width: 82px !important;
  height: 34px !important;
  border: 1px solid rgba(216, 180, 106, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  overflow: hidden !important;
}

.aura-calendar .numInputWrapper:hover {
  border-color: rgba(216, 180, 106, 0.42) !important;
  background: rgba(216, 180, 106, 0.08) !important;
}

.aura-calendar .numInputWrapper input.cur-year {
  height: 34px !important;
  padding: 0 24px 0 12px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
}

/* Year up/down arrows */
.aura-calendar .numInputWrapper span {
  opacity: 1 !important;
  width: 22px !important;
  right: 2px !important;
  border-left: 1px solid rgba(216, 180, 106, 0.12) !important;
}

.aura-calendar .numInputWrapper span.arrowUp {
  top: 1px !important;
}

.aura-calendar .numInputWrapper span.arrowDown {
  bottom: 1px !important;
}

.aura-calendar .numInputWrapper span.arrowUp::after {
  border-bottom-color: var(--accent) !important;
}

.aura-calendar .numInputWrapper span.arrowDown::after {
  border-top-color: var(--accent) !important;
}

.aura-calendar .numInputWrapper span:hover {
  background: rgba(216, 180, 106, 0.12) !important;
}

/* Month navigation arrows */
.aura-calendar .flatpickr-prev-month,
.aura-calendar .flatpickr-next-month {
  top: 14px !important;
  color: var(--accent) !important;
  fill: var(--accent) !important;
}

.aura-calendar .flatpickr-prev-month:hover svg,
.aura-calendar .flatpickr-next-month:hover svg {
  fill: #f2d884 !important;
}

/* Weekdays */
.aura-calendar span.flatpickr-weekday {
  color: rgba(244, 239, 230, 0.52) !important;
  font-weight: 500 !important;
}

/* Days */
.aura-calendar .flatpickr-day {
  color: rgba(244, 239, 230, 0.9) !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
}

.aura-calendar .flatpickr-day:hover {
  background: rgba(216, 180, 106, 0.13) !important;
  border-color: rgba(216, 180, 106, 0.28) !important;
  color: var(--text) !important;
}

.aura-calendar .flatpickr-day.today {
  border-color: rgba(216, 180, 106, 0.52) !important;
}

.aura-calendar .flatpickr-day.selected,
.aura-calendar .flatpickr-day.startRange,
.aura-calendar .flatpickr-day.endRange {
  background: linear-gradient(135deg, #f2d884, var(--accent)) !important;
  border-color: var(--accent) !important;
  color: #070707 !important;
  box-shadow: 0 0 18px rgba(216, 180, 106, 0.28) !important;
}

.aura-calendar .flatpickr-day.disabled,
.aura-calendar .flatpickr-day.prevMonthDay,
.aura-calendar .flatpickr-day.nextMonthDay {
  color: rgba(244, 239, 230, 0.24) !important;
}

/* Mobile calendar sizing */
@media (max-width: 700px) {
  .flatpickr-calendar.aura-calendar {
    width: calc(100vw - 32px) !important;
    max-width: 340px !important;
  }
}
/* AURA Branding V1 */

/* Header wordmark */
.logo {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  letter-spacing: 0 !important;
}

.logo-symbol {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(242, 216, 132, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 0 18px rgba(216, 180, 106, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-main {
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.logo-sub {
  color: rgba(185, 175, 162, 0.88);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero watermark */
.hero {
  isolation: isolate;
}

.brand-watermark {
  position: absolute;
  
/* HOME WATERMARK POSITION */
  right: 0px;
  bottom: 5px;

  z-index: 0;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 180, 106, 0.105);
  font-size: clamp(92px, 18vw, 260px);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: 0.08em;
  opacity: 1;
  transform: translateX(0);
}

.hero-content {
  z-index: 2;
}

/* Premium hero beam detail */
.hero-content::before {
  content: "";
  display: block;
  width: min(220px, 34vw);
  height: 2px;
  margin: 0 0 28px 0;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(216, 180, 106, 0) 0%,
      rgba(216, 180, 106, 0.9) 14%,
      #f2d884 36%,
      rgba(216, 180, 106, 0.48) 64%,
      rgba(216, 180, 106, 0.10) 84%,
      rgba(216, 180, 106, 0) 100%
    );
  box-shadow:
    0 0 14px rgba(216, 180, 106, 0.34),
    0 0 38px rgba(216, 180, 106, 0.11);
}

/* Footer branding */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-brand {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.footer-brand span {
  color: var(--text);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.footer-brand small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer::before {
  content: "AURA";
  position: absolute;
  
/* FOOTER WATERMARK POSITION */
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);

  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 180, 106, 0.07);
  font-size: clamp(68px, 12vw, 150px);
  font-weight: 850;
  letter-spacing: 0.08em;
}

/* Mobile branding */
@media (max-width: 700px) {
  .logo {
    gap: 8px;
  }

  .logo-symbol {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .logo-main {
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .brand-watermark {
  display: none !important;
}

  .hero-content::before {
  width: 118px;
  height: 2px;
  margin: 0 0 22px 0;
  background:
    linear-gradient(
      90deg,
      rgba(216, 180, 106, 0) 0%,
      rgba(216, 180, 106, 0.9) 18%,
      #f2d884 38%,
      rgba(216, 180, 106, 0.42) 68%,
      rgba(216, 180, 106, 0) 100%
    );
  box-shadow:
    0 0 12px rgba(216, 180, 106, 0.28),
    0 0 28px rgba(216, 180, 106, 0.08);
}

  .footer-brand {
    flex-direction: column;
    gap: 4px;
  }

  .site-footer::before {
  display: none !important;
  content: none !important;
}
}
@media (min-width: 701px) and (max-width: 1100px) {
  .brand-watermark,
  .site-footer::before {
    display: none !important;
    content: none !important;
  }
}

/* Final portrait tablet header clearance
   Covers iPad Mini, iPad Air, and similar portrait foldable/tablet widths.
   Landscape layouts remain unchanged. */
@media (min-width: 701px) and (max-width: 900px) and (orientation: portrait) {
  .hero,
  .about-hero,
  .thank-you-section {
    padding-top: 162px !important;
  }
}
/* About page vertical AURA watermark */

.about-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-vertical-watermark {
  position: absolute;

  /* POSITION / SIZE CONTROLS */
  right: 250px;
  top: 55%;
  font-size: clamp(200px, 6vw, 350px);
  gap: 1px;

  transform: translateY(-50%);
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;

  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 180, 106, 0.105);
  font-family: inherit;
  font-weight: 850;
  line-height: 0.78;
  letter-spacing: 0;
  opacity: 1;
}

/* Hide About watermark on all mobile and tablet devices */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
  .about-vertical-watermark {
    display: none !important;
  }
}
/* Final fix: large phones in landscape */

@media
  (orientation: landscape)
  and (max-height: 500px)
  and (hover: none)
  and (pointer: coarse) {

  /* Compact one-line header */
  .site-header {
    top: 8px !important;
    width: calc(100% - 24px) !important;
    min-height: 64px !important;
    height: 64px !important;
    padding: 0 18px !important;

    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;

    border-radius: 999px !important;
  }

  .nav {
    width: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 14px !important;
  }

  .nav a {
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  .nav-cta {
    padding: 9px 14px !important;
  }

  .logo {
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .logo-symbol {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  .logo-main {
    font-size: 14px !important;
  }

  .logo-sub {
    font-size: 7px !important;
  }

  /* Keep content clear of fixed header */
  .hero,
  .about-hero {
    padding-top: 104px !important;
    padding-bottom: 46px !important;
    align-items: flex-start !important;
  }

  .thank-you-section {
    padding-top: 104px !important;
  }

  /* Slightly smaller headings only in phone landscape */
  .hero h1,
  .about-hero h1 {
    font-size: clamp(2.6rem, 7vw, 4.2rem) !important;
    line-height: 0.98 !important;
  }

  .hero-text,
  .about-hero-text {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  /* Keep mobile/tablet watermarks hidden */
  .brand-watermark,
  .about-vertical-watermark,
  .site-footer::before {
    display: none !important;
    content: none !important;
  }
}