/* ===============================
   PROFESSIONAL HEADER / HERO
   File: header.css
================================ */

/* ===============================
   HOMEPAGE HERO
================================ */

body:not(.internal-page) header.hero-header,
body:not(.internal-page) header {
  position: relative !important;
  overflow: hidden !important;

  min-height: calc(130svh - 84px) !important;
  height: calc(100svh - 84px) !important;

  margin-top: 0 !important;
  padding: 38px 24px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: var(--light-cream);
  z-index: 1;
  box-sizing: border-box;

  animation: fadeInBackground 0.9s ease forwards;
  opacity: 0;
}

/* Video background */
body:not(.internal-page) .header-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
  opacity: 0.9;
  pointer-events: none;

  transform: scale(1.02);
}

/* Dark coffee overlay */
body:not(.internal-page) .header-overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background:
    radial-gradient(circle at 28% 50%, rgba(217, 174, 124, 0.16), transparent 30%),
    radial-gradient(circle at 72% 50%, rgba(90, 56, 37, 0.22), transparent 38%),
    linear-gradient(
      90deg,
      rgba(31, 18, 12, 0.72) 0%,
      rgba(31, 18, 12, 0.58) 45%,
      rgba(31, 18, 12, 0.78) 100%
    );

  z-index: 1;
}

/* Bottom fade into next section */
body:not(.internal-page) header.hero-header::after,
body:not(.internal-page) header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;

  height: 70px;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 250, 244, 0.70) 72%,
      #fffaf4 100%
    );

  z-index: 1;
  pointer-events: none;
}

/* ===============================
   HERO LAYOUT
================================ */

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 76px);

  box-sizing: border-box;
}

.hero-split {
  text-align: left;
}

.hero-media {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  flex: 1 1 0;
  max-width: 680px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Hide old badge/buttons if still present */
.hero-badge,
.hero-actions,
.hero-btn {
  display: none !important;
}

/* ===============================
   LOGO
================================ */

body:not(.internal-page) .logo {
  width: clamp(230px, 23vw, 360px) !important;
  height: clamp(230px, 23vw, 360px) !important;

  object-fit: contain;
  object-position: center;

  border-radius: 50%;
  border: 6px solid #d9a87c;
  background: rgba(255, 255, 255, 0.96);

  padding: 14px;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 10px rgba(217, 168, 124, 0.16),
    inset 0 0 0 10px rgba(255, 255, 255, 0.38);

  margin: 0 !important;

  animation: fadeSlideLeft 0.85s ease 0.08s forwards;
  opacity: 0;
  transform: translateX(-26px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body:not(.internal-page) .logo:hover {
  transform: translateY(-4px) scale(1.02);

  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.44),
    0 0 0 10px rgba(217, 168, 124, 0.22),
    inset 0 0 0 10px rgba(255, 255, 255, 0.44);
}

/* ===============================
   TITLE / SUBTITLE
================================ */

header .logo,
header h1,
header p,
header .hero-content,
header .hero-highlights {
  position: relative;
  z-index: 2;
}

body:not(.internal-page) header h1 {
  margin: 0 0 18px !important;
  padding-bottom: 12px !important;

  border-bottom: 2px solid rgba(240, 203, 166, 0.72);

  color: transparent;

  background: linear-gradient(to right, #d9a87c, #f0cba6, #fff2dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 86px) !important;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;

  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);

  animation: fadeSlideRight 0.85s ease 0.16s forwards;
  opacity: 0;
  transform: translateX(26px);
}

.hero-subtitle,
body:not(.internal-page) header p.hero-subtitle {
  max-width: 680px !important;
  margin: 0 0 28px !important;

  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #f6dcc2 !important;

  font-family: 'Lora', serif;
  font-size: clamp(16px, 1.55vw, 20px) !important;
  line-height: 1.62 !important;

  animation: fadeSlideRight 0.85s ease 0.26s forwards;
  opacity: 0;
  transform: translateX(26px);
}

/* ===============================
   HERO HIGHLIGHTS
================================ */

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;

  margin-top: 0 !important;

  animation: fadeSlideRight 0.85s ease 0.36s forwards;
  opacity: 0;
  transform: translateX(26px);
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 12px;

  border-radius: 999px;
  border: 1px solid rgba(240, 203, 166, 0.22);

  background: rgba(255, 248, 239, 0.08);
  color: rgba(255, 248, 239, 0.86);

  font-family: 'Poppins', sans-serif;
  font-size: 10.8px !important;
  font-weight: 800;
}

.hero-highlights span::before {
  content: "✓";
  color: #f0cba6;
}

/* ===============================
   INTERNAL PAGE HEADER
================================ */

body.internal-page header {
  position: relative;
  overflow: hidden;

  min-height: unset !important;
  height: auto !important;

  margin-top: 0 !important;
  padding: 90px 20px 70px !important;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #f7efe6 0%,
      #efe1d2 100%
    );

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  animation: fadeInBackground 0.9s ease forwards;
  opacity: 0;
}

body.internal-page header::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;

  width: 500px;
  height: 500px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(181, 139, 96, 0.15),
      transparent 70%
    );

  pointer-events: none;
}

body.internal-page header h1 {
  position: relative;

  display: inline-block;

  margin: 0 0 14px;
  padding-bottom: 14px;

  color: #5a3825;

  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;

  animation: fadeSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

body.internal-page header h1::after {
  content: "";
  display: block;

  width: 110px;
  height: 3px;

  margin: 12px auto 0;

  border-radius: 3px;
  background: #b58b60;
}

body.internal-page header p {
  position: relative;
  z-index: 2;

  max-width: 650px;
  margin: auto;

  color: #6e5848;

  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.7;

  animation: fadeSlideUp 0.8s ease 0.34s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes fadeSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBackground {
  to {
    opacity: 1;
  }
}

/* ===============================
   LAPTOP / SMALL DESKTOP
================================ */

@media (max-width: 1180px) {
  .hero-content {
    gap: 42px;
  }

  body:not(.internal-page) .logo {
    width: 260px !important;
    height: 260px !important;
  }

  body:not(.internal-page) header h1 {
    font-size: clamp(44px, 5.4vw, 68px) !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    font-size: 16.5px !important;
  }
}

/* ===============================
   TABLET
================================ */

@media (max-width: 980px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: calc(100svh - 76px) !important;
    height: auto !important;

    padding: 36px 18px 42px !important;
  }

  .hero-content {
    width: min(760px, 100%);

    flex-direction: column;
    gap: 26px !important;

    text-align: center;
  }

  .hero-copy {
    align-items: center;
    max-width: 680px;
  }

  body:not(.internal-page) .logo {
    width: clamp(210px, 34vw, 260px) !important;
    height: clamp(210px, 34vw, 260px) !important;

    padding: 10px !important;
    border-width: 5px !important;
  }

  body:not(.internal-page) header h1 {
    margin-bottom: 13px !important;

    text-align: center;

    font-size: clamp(38px, 8vw, 56px) !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 90% !important;
    margin-bottom: 24px !important;

    text-align: center;

    font-size: 15.5px !important;
    line-height: 1.5 !important;
  }

  .hero-highlights {
    justify-content: center;
  }

  body.internal-page header {
    padding: 78px 20px 58px !important;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 560px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: calc(100svh - 70px) !important;
    height: auto !important;

    padding: 26px 14px 34px !important;
  }

  .hero-content {
    gap: 20px !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(170px, 48vw, 210px) !important;
    height: clamp(170px, 48vw, 210px) !important;

    padding: 8px !important;
    border-width: 5px !important;
  }

  body:not(.internal-page) header h1 {
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;

    font-size: clamp(34px, 9vw, 42px) !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 95% !important;
    margin-bottom: 20px !important;

    font-size: 13.8px !important;
    line-height: 1.45 !important;
  }

  .hero-highlights {
    margin-top: 0 !important;
    gap: 6px;
  }

  .hero-highlights span {
    padding: 6px 8px;

    font-size: 9.5px !important;
  }

  body.internal-page header {
    padding: 66px 16px 46px !important;
  }

  body.internal-page header h1 {
    font-size: 32px;
  }

  body.internal-page header p {
    font-size: 15px;
  }
}

/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {
  body:not(.internal-page) .logo {
    width: clamp(155px, 52vw, 185px) !important;
    height: clamp(155px, 52vw, 185px) !important;

    padding: 7px !important;
    border-width: 4px !important;
  }

  body:not(.internal-page) header h1 {
    font-size: 32px !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    font-size: 13px !important;
  }

  .hero-highlights {
    display: none;
  }
}

/* ===============================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header,
  body:not(.internal-page) .logo,
  body:not(.internal-page) header h1,
  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle,
  .hero-highlights,
  body.internal-page header,
  body.internal-page header h1,
  body.internal-page header p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body:not(.internal-page) .logo,
  body:not(.internal-page) .logo:hover {
    transition: none !important;
  }
}

/* =========================================================
   UI/UX Pro Max homepage polish: visible path to booking.
========================================================= */
:root {
  --home-action-bg: #fff8ef;
  --home-action-text: #3e261a;
  --home-action-border: rgba(240, 203, 166, 0.34);
  --home-action-focus: rgba(217, 174, 124, 0.42);
  --home-proof-bg: rgba(31, 18, 12, 0.38);
  --home-proof-border: rgba(255, 248, 239, 0.14);
}

.hero-actions-main,
.hero-actions-main *,
.hero-service-strip,
.hero-service-strip * {
  box-sizing: border-box;
}

body:not(.internal-page) header.hero-header,
body:not(.internal-page) header {
  min-height: calc(92svh - 84px) !important;
  height: auto !important;
  padding: 118px 24px 72px !important;
}

body:not(.internal-page) .header-overlay {
  background:
    radial-gradient(circle at 24% 44%, rgba(217, 174, 124, 0.18), transparent 28%),
    linear-gradient(
      90deg,
      rgba(25, 14, 9, 0.80) 0%,
      rgba(45, 26, 17, 0.58) 48%,
      rgba(25, 14, 9, 0.78) 100%
    );
}

body:not(.internal-page) header h1 {
  letter-spacing: 0 !important;
}

.hero-actions-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 20px;
  animation: fadeSlideRight 0.85s ease 0.32s forwards;
  opacity: 0;
  transform: translateX(26px);
}

.hero-action {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.hero-action::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-action-primary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--home-action-text);
  background: linear-gradient(135deg, #fffaf4, #f0cba6);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-action-secondary {
  border: 1px solid var(--home-action-border);
  color: #fff8ef;
  background: rgba(255, 248, 239, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-action:hover {
  transform: translateY(-2px);
}

.hero-action-primary:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.hero-action-secondary:hover {
  border-color: rgba(255, 248, 239, 0.34);
  background: rgba(255, 248, 239, 0.16);
}

.hero-action:focus-visible {
  outline: 3px solid var(--home-action-focus);
  outline-offset: 4px;
}

.hero-service-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(700px, 100%);
  margin: 0 0 14px;
  padding: 0;
  animation: fadeSlideRight 0.85s ease 0.4s forwards;
  opacity: 0;
  transform: translateX(26px);
}

.hero-service-strip li {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--home-proof-border);
  border-radius: 16px;
  background: var(--home-proof-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-service-strip strong,
.hero-service-strip span {
  display: block;
}

.hero-service-strip strong {
  color: #fff2dd;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-service-strip span {
  margin-top: 5px;
  color: rgba(255, 248, 239, 0.78);
  font-family: 'Lora', serif;
  font-size: 12px;
  line-height: 1.35;
}

.hero-highlights {
  display: none !important;
}

@media (max-width: 980px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: auto !important;
    padding: 106px 18px 50px !important;
  }

  .hero-actions-main {
    justify-content: center;
    margin-bottom: 18px;
    transform: translateY(20px);
  }

  .hero-service-strip {
    width: min(680px, 100%);
  }
}

@media (max-width: 620px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    padding: 96px 14px 42px !important;
  }

  .hero-actions-main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-action {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    white-space: normal;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 12px;
  }

  .hero-service-strip li {
    padding: 10px 12px;
  }

  .hero-service-strip span {
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .hero-service-strip {
    display: none;
  }
}

@media (hover: none) {
  .hero-action:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions-main,
  .hero-service-strip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-action,
  .hero-action:hover {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Homepage hero balance pass: desktop + phone.
========================================================= */
body:not(.internal-page) header.hero-header,
body:not(.internal-page) header {
  min-height: clamp(560px, calc(82svh - 84px), 680px) !important;
  padding: 96px 24px 54px !important;
}

body:not(.internal-page) header.hero-header::after,
body:not(.internal-page) header::after {
  height: 42px;
}

.hero-content {
  width: min(1160px, 100%);
  gap: clamp(34px, 4vw, 58px);
}

body:not(.internal-page) .logo {
  width: clamp(220px, 18vw, 300px) !important;
  height: clamp(220px, 18vw, 300px) !important;
  padding: 11px !important;
  border-width: 5px !important;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    0 0 0 8px rgba(217, 168, 124, 0.14),
    inset 0 0 0 8px rgba(255, 255, 255, 0.34);
}

body:not(.internal-page) header h1 {
  max-width: 650px;
  margin-bottom: 14px !important;
  padding-bottom: 10px !important;
  font-size: clamp(46px, 5.2vw, 76px) !important;
  line-height: 0.98;
}

.hero-subtitle,
body:not(.internal-page) header p.hero-subtitle {
  max-width: 640px !important;
  margin-bottom: 22px !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.55 !important;
}

.hero-actions-main {
  margin-bottom: 16px;
}

.hero-action {
  min-height: 46px;
  padding: 0 17px;
}

.hero-service-strip {
  width: min(650px, 100%);
  gap: 10px;
  margin-bottom: 12px;
}

.hero-service-strip li {
  padding: 11px 12px;
}

.hero-service-strip span {
  font-size: 11.5px;
}

@media (min-width: 1400px) {
  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: auto !important;
    padding: 94px 18px 36px !important;
  }

  .hero-content {
    width: min(720px, 100%);
    gap: 18px !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(160px, 30vw, 220px) !important;
    height: clamp(160px, 30vw, 220px) !important;
    padding: 8px !important;
    border-width: 4px !important;
  }

  body:not(.internal-page) header h1 {
    max-width: 640px;
    font-size: clamp(38px, 7vw, 54px) !important;
    line-height: 1;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 620px !important;
    margin-bottom: 18px !important;
  }

  .hero-service-strip {
    width: min(620px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    padding: 90px 18px 32px !important;
  }

  .hero-content {
    gap: 16px !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(150px, 42vw, 185px) !important;
    height: clamp(150px, 42vw, 185px) !important;
  }

  body:not(.internal-page) header h1 {
    margin-bottom: 9px !important;
    padding-bottom: 7px !important;
    font-size: clamp(32px, 8.8vw, 40px) !important;
    line-height: 1.02;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 100% !important;
    margin-bottom: 14px !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
  }

  .hero-actions-main {
    max-width: 360px;
    margin: 0 auto 12px;
    gap: 9px;
  }

  .hero-action {
    min-height: 46px;
    font-size: 12px;
  }

  .hero-service-strip {
    max-width: 360px;
    margin: 0 auto 10px;
    gap: 7px;
  }

  .hero-service-strip li {
    padding: 8px 10px;
    border-radius: 14px;
  }

  .hero-service-strip strong {
    font-size: 10px;
  }

  .hero-service-strip span {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.25;
  }

}

@media (max-width: 430px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    padding: 86px 18px 30px !important;
  }

  .hero-service-strip li:nth-child(3) {
    display: none;
  }
}

@media (max-width: 380px) {
  body:not(.internal-page) .logo {
    width: 142px !important;
    height: 142px !important;
  }

  body:not(.internal-page) header h1 {
    font-size: 30px !important;
  }

  .hero-service-strip {
    display: none;
  }
}

/* =========================================================
   UI/UX Pro Max professional hero reset.
========================================================= */
body:not(.internal-page) header.hero-header,
body:not(.internal-page) header {
  min-height: clamp(620px, calc(100svh - 84px), 760px) !important;
  padding: clamp(112px, 12vh, 132px) 24px clamp(68px, 8vh, 88px) !important;
}

body:not(.internal-page) .header-overlay {
  background:
    radial-gradient(circle at 78% 45%, rgba(217, 174, 124, 0.22), transparent 27%),
    linear-gradient(
      90deg,
      rgba(23, 13, 9, 0.84) 0%,
      rgba(35, 20, 14, 0.74) 46%,
      rgba(23, 13, 9, 0.70) 100%
    );
}

body:not(.internal-page) header.hero-header::after,
body:not(.internal-page) header::after {
  height: 34px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 250, 244, 0.54) 78%,
      #fffaf4 100%
    );
}

.hero-content {
  width: min(1120px, calc(100% - 48px));
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 720px;
  align-items: flex-start;
  text-align: left;
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-end;
}

body:not(.internal-page) .logo {
  width: clamp(200px, 17vw, 270px) !important;
  height: clamp(200px, 17vw, 270px) !important;
  padding: 10px !important;
  border-width: 5px !important;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.38),
    0 0 0 8px rgba(217, 168, 124, 0.16),
    inset 0 0 0 7px rgba(255, 255, 255, 0.34);
}

.hero-eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4c99d;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeSlideRight 0.85s ease 0.12s forwards;
  opacity: 0;
  transform: translateX(24px);
}

.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #f0cba6;
}

body:not(.internal-page) header h1 {
  max-width: 720px;
  margin: 0 0 18px !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  font-size: clamp(54px, 6.4vw, 86px) !important;
  line-height: 0.95;
  letter-spacing: 0 !important;
}

body:not(.internal-page) header h1::after {
  content: "";
  display: block;
  width: 104px;
  height: 3px;
  margin: 20px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0cba6, rgba(240, 203, 166, 0));
}

.hero-subtitle,
body:not(.internal-page) header p.hero-subtitle {
  max-width: 610px !important;
  margin: 0 0 24px !important;
  color: #f8e3cf !important;
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.58 !important;
}

.hero-actions-main {
  margin: 0 0 18px;
  justify-content: flex-start;
  gap: 12px;
}

.hero-action {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-highlights {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 !important;
  animation: fadeSlideRight 0.85s ease 0.4s forwards;
  opacity: 0;
  transform: translateX(24px);
}

.hero-highlights span {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(240, 203, 166, 0.26);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 248, 239, 0.88);
  background: rgba(255, 248, 239, 0.08);
  font-size: 10.5px !important;
  line-height: 1;
}

.hero-highlights span::before {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #f0cba6;
  border-bottom: 2px solid #f0cba6;
  transform: rotate(45deg) translateY(-1px);
}

@media (min-width: 1280px) {
  .hero-content {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: auto !important;
    padding: 92px 18px 42px !important;
  }

  .hero-content {
    width: min(680px, calc(100% - 28px));
    display: flex !important;
    flex-direction: column;
    gap: 20px !important;
    text-align: center;
    transform: none;
  }

  .hero-media {
    order: 1;
    justify-content: center;
  }

  .hero-copy {
    order: 2;
    align-items: center;
    text-align: center;
  }

  body:not(.internal-page) .logo {
    width: clamp(140px, 36vw, 190px) !important;
    height: clamp(140px, 36vw, 190px) !important;
    padding: 7px !important;
    border-width: 4px !important;
  }

  .hero-eyebrow {
    justify-content: center;
    margin-bottom: 10px;
    font-size: 10.5px;
    transform: translateY(18px);
  }

  .hero-eyebrow::before {
    width: 22px;
  }

  body:not(.internal-page) header h1 {
    max-width: 560px;
    margin-bottom: 12px !important;
    font-size: clamp(34px, 8.6vw, 48px) !important;
    line-height: 1.02;
  }

  body:not(.internal-page) header h1::after {
    width: 78px;
    margin: 12px auto 0;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 430px !important;
    margin-bottom: 16px !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
  }

  .hero-actions-main {
    width: min(340px, 100%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0 auto;
  }

  .hero-action {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-highlights {
    justify-content: center;
    margin-top: 14px !important;
    transform: translateY(18px);
  }
}

@media (max-width: 560px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    padding: 84px 14px 34px !important;
  }

  .hero-content {
    width: min(360px, calc(100% - 24px));
    gap: 16px !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(128px, 40vw, 158px) !important;
    height: clamp(128px, 40vw, 158px) !important;
  }

  .hero-eyebrow {
    display: none;
  }

  body:not(.internal-page) header h1 {
    font-size: clamp(31px, 8.8vw, 38px) !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 330px !important;
    font-size: 12.8px !important;
  }

  .hero-highlights {
    display: none !important;
  }
}

@media (max-width: 380px) {
  body:not(.internal-page) .logo {
    width: 124px !important;
    height: 124px !important;
  }

  body:not(.internal-page) header h1 {
    font-size: 29px !important;
  }

  .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    font-size: 12.4px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-highlights {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   UI/UX Pro Max: full-video hero and scroll reveal
========================================================= */

body:not(.internal-page) header.hero-header,
body:not(.internal-page) header {
  min-height: 100svh !important;
  height: auto !important;
  margin-top: 0 !important;
  padding: clamp(112px, 13svh, 140px) clamp(24px, 5vw, 54px)
    clamp(72px, 9svh, 96px) !important;
  align-items: center !important;
  justify-content: center !important;
  background: #180d09 !important;
  opacity: 1 !important;
}

body:not(.internal-page) .header-video {
  opacity: 1 !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.78);
}

body:not(.internal-page) .header-overlay {
  background:
    radial-gradient(circle at 78% 40%, rgba(240, 203, 166, 0.16), transparent 30%),
    linear-gradient(
      90deg,
      rgba(18, 10, 7, 0.68) 0%,
      rgba(23, 13, 9, 0.42) 48%,
      rgba(18, 10, 7, 0.56) 100%
    ) !important;
}

body:not(.internal-page) header.hero-header::after,
body:not(.internal-page) header::after {
  height: 26px !important;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 244, 0.68)) !important;
}

body:not(.internal-page) .hero-content {
  width: min(1160px, calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 340px) !important;
  align-items: center !important;
  gap: clamp(38px, 6.5vw, 102px) !important;
  transform: none !important;
}

body:not(.internal-page) .hero-copy {
  order: 1 !important;
  max-width: 650px !important;
  align-items: flex-start !important;
  text-align: left !important;
}

body:not(.internal-page) .hero-media {
  order: 2 !important;
}

body:not(.internal-page) .logo {
  width: clamp(250px, 18vw, 330px) !important;
  height: clamp(250px, 18vw, 330px) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(214, 158, 96, 0.28) !important;
}

body:not(.internal-page) header h1 {
  max-width: 620px !important;
  margin-bottom: 18px !important;
  font-size: clamp(54px, 6.1vw, 82px) !important;
  line-height: 0.96 !important;
}

body:not(.internal-page) header h1::after {
  width: 96px !important;
  height: 3px !important;
  margin-top: 18px !important;
}

body:not(.internal-page) .hero-subtitle,
body:not(.internal-page) header p.hero-subtitle {
  max-width: 570px !important;
  margin-bottom: 26px !important;
  color: rgba(255, 241, 226, 0.95) !important;
  font-size: clamp(17px, 1.42vw, 21px) !important;
  line-height: 1.52 !important;
}

body:not(.internal-page) .hero-actions-main {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin: 0 !important;
}

body:not(.internal-page) .hero-action {
  min-height: 52px !important;
  padding: 0 24px !important;
}

body:not(.internal-page) .hero-highlights {
  margin-top: 22px !important;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 203, 166, 0.36);
  border-radius: 999px;
  background: rgba(38, 21, 14, 0.48);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 2px solid #f0cba6;
  border-bottom: 2px solid #f0cba6;
  transform: translateY(-3px) rotate(45deg);
  animation: heroScrollCue 1.6s ease-in-out infinite;
}

.hero-scroll-cue:focus-visible {
  outline: 3px solid rgba(240, 203, 166, 0.72);
  outline-offset: 4px;
}

@keyframes heroScrollCue {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(-4px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

#home-surprise {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  scroll-margin-top: 92px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -24px 70px rgba(55, 31, 18, 0.16);
}

#home-surprise::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d69e60, transparent);
  transform: translateX(-50%);
}

body.hero-surprise-ready #home-surprise.hero-surprise {
  opacity: 0;
  transform: translateY(68px) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.72s ease;
}

body.hero-surprise-ready #home-surprise.hero-surprise.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: calc(100svh - 76px) !important;
    padding: clamp(20px, 4svh, 30px) 16px clamp(58px, 8svh, 74px) !important;
  }

  body:not(.internal-page) .header-video {
    object-position: center center !important;
    filter: saturate(1.05) contrast(1.04) brightness(0.72);
  }

  body:not(.internal-page) .header-overlay {
    background:
      radial-gradient(circle at 50% 28%, rgba(240, 203, 166, 0.14), transparent 28%),
      linear-gradient(
        180deg,
        rgba(18, 10, 7, 0.48) 0%,
        rgba(23, 13, 9, 0.34) 44%,
        rgba(18, 10, 7, 0.72) 100%
      ) !important;
  }

  body:not(.internal-page) .hero-content {
    width: min(372px, calc(100% - 28px)) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 14px !important;
    text-align: center !important;
  }

  body:not(.internal-page) .hero-copy {
    order: 2 !important;
    align-items: center !important;
    text-align: center !important;
  }

  body:not(.internal-page) .hero-media {
    order: 1 !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(156px, 42vw, 194px) !important;
    height: clamp(156px, 42vw, 194px) !important;
    padding: 7px !important;
  }

  body:not(.internal-page) .hero-eyebrow {
    display: none !important;
  }

  body:not(.internal-page) header h1 {
    max-width: 340px !important;
    margin-bottom: 10px !important;
    font-size: clamp(31px, 8.3vw, 38px) !important;
    line-height: 1.02 !important;
  }

  body:not(.internal-page) header h1::after {
    width: 72px !important;
    height: 2px !important;
    margin: 10px auto 0 !important;
  }

  body:not(.internal-page) .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 324px !important;
    margin-bottom: 15px !important;
    font-size: 12.8px !important;
    line-height: 1.38 !important;
  }

  body:not(.internal-page) .hero-actions-main {
    width: min(320px, 100%) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  body:not(.internal-page) .hero-action {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
  }

  body:not(.internal-page) .hero-highlights {
    display: none !important;
  }

  .hero-scroll-cue {
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    min-height: calc(100svh - 70px) !important;
    padding: 18px 14px 58px !important;
  }

  body:not(.internal-page) .hero-content {
    width: min(350px, calc(100% - 24px)) !important;
    gap: 12px !important;
  }

  body:not(.internal-page) .logo {
    width: clamp(148px, 39vw, 178px) !important;
    height: clamp(148px, 39vw, 178px) !important;
  }

  body:not(.internal-page) header h1 {
    max-width: 330px !important;
    font-size: clamp(29px, 7.7vw, 35px) !important;
  }

  body:not(.internal-page) .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    max-width: 310px !important;
    font-size: 12.2px !important;
  }

  body:not(.internal-page) .hero-action {
    min-height: 44px !important;
  }

  #home-surprise {
    scroll-margin-top: 78px;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 46px rgba(55, 31, 18, 0.13);
  }
}

@media (max-width: 980px) and (max-height: 720px) {
  body:not(.internal-page) .hero-content {
    gap: 10px !important;
  }

  body:not(.internal-page) .logo {
    width: 132px !important;
    height: 132px !important;
  }

  body:not(.internal-page) header h1 {
    font-size: clamp(27px, 7.2vw, 33px) !important;
  }

  body:not(.internal-page) .hero-subtitle,
  body:not(.internal-page) header p.hero-subtitle {
    margin-bottom: 11px !important;
    font-size: 11.8px !important;
  }

  body:not(.internal-page) .hero-action {
    min-height: 42px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span {
    animation: none !important;
  }

  body.hero-surprise-ready #home-surprise.hero-surprise {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Keep the three service badges visible in the phone hero. */
@media (max-width: 560px) {
  body:not(.internal-page) header.hero-header,
  body:not(.internal-page) header {
    padding-bottom: 76px !important;
  }

  body:not(.internal-page) .hero-content {
    gap: 11px !important;
  }

  body:not(.internal-page) .hero-highlights {
    width: min(342px, 100%) !important;
    margin: 9px auto 0 !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;

    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body:not(.internal-page) .hero-highlights span {
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 5px 6px !important;

    justify-content: center !important;
    gap: 4px !important;

    font-size: 9px !important;
    line-height: 1.12 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body:not(.internal-page) .hero-highlights span::before {
    width: 5px !important;
    height: 8px !important;
    border-right-width: 1.5px !important;
    border-bottom-width: 1.5px !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 380px) {
  body:not(.internal-page) .hero-highlights {
    width: min(312px, 100%) !important;
    gap: 5px !important;
  }

  body:not(.internal-page) .hero-highlights span {
    min-height: 32px !important;
    padding: 4px 5px !important;
    font-size: 8.4px !important;
  }
}
