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

:root {
  --dark: #081321;
  --dark-2: #10233d;
  --green: #c9a96a;
  --green-dark: #b89455;
  --cream: #f8f5ef;
  --muted: #65748b;
  --line: #e5e9f0;
  --white: #ffffff;
  --text: #101828;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fbfcfd;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), #7ee6bd);
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(19, 185, 129, 0.25);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: #b6c3d3;
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: #cdd7e4;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: white;
}

.nav-call {
  background: white;
  color: var(--dark);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 900px;
  padding: 90px 0 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.88) 40%, rgba(7, 17, 31, 0.45) 100%),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(19, 185, 129, 0.26), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 32%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  color: #c8ffea;
  margin-bottom: 26px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.hero-copy h1 {
  color: white;
  max-width: 720px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero-text {
  margin-top: 28px;
  max-width: 650px;
  color: #d7e0ec;
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions,
.final-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 20px 45px rgba(19, 185, 129, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-glass {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: white;
  background: var(--dark);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 690px;
  gap: 12px;
  margin-top: 42px;
}

.trust-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row strong {
  color: white;
  display: block;
  font-size: 22px;
}

.trust-row span {
  display: block;
  margin-top: 6px;
  color: #bfd0df;
  font-size: 13px;
}

.hero-card-wrap {
  display: grid;
  gap: 24px;
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.hero-image-card img {
  height: 390px;
}

.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 24px;
  color: white;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-note strong {
  display: block;
  font-size: 20px;
}

.floating-note span {
  display: block;
  margin-top: 8px;
  color: #d4deea;
  line-height: 1.5;
}

.offer-form {
  background: white;
  padding: 32px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.offer-form h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.offer-form p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 15px 16px;
  border-radius: 16px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition: 0.2s ease;
}

.offer-form textarea {
  min-height: 92px;
  resize: vertical;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  background: white;
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(19, 185, 129, 0.12);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-form button {
  width: 100%;
  margin-top: 16px;
  border: none;
  cursor: pointer;
  border-radius: 17px;
  padding: 17px 20px;
  font: inherit;
  font-weight: 900;
  background: var(--green);
  color: white;
}

.offer-form small {
  display: block;
  margin-top: 14px;
  color: #7b8798;
  font-size: 12px;
  line-height: 1.55;
}

.logo-strip {
  background: white;
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.strip-grid div {
  padding: 28px 14px;
  color: var(--dark);
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.strip-grid div:last-child {
  border-right: none;
}

.split-section,
.process-section,
.why-section,
.faq-section,
.final-cta {
  padding: 110px 0;
}

.split-grid,
.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-image img {
  height: 650px;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.split-copy h2,
.section-heading h2,
.why-copy h2,
.owner-copy h2,
.faq-grid h2,
.final-content h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--dark);
}

.split-copy p,
.section-heading p,
.why-copy p,
.owner-copy p,
.faq-grid p,
.final-content p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.check-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.check-list span {
  color: var(--green);
  font-size: 20px;
}

.process-section {
  background: #f2f6f7;
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 60px;
}

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

.process-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 34px;
  background: white;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--dark);
  color: white;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 46px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.process-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.process-card.image-card {
  padding: 0;
  overflow: hidden;
}

.process-card.image-card img {
  height: 100%;
}

.situations-section {
  padding: 110px 0;
  background: var(--dark);
  color: white;
}

.section-heading.light h2,
.section-heading.light p {
  color: white;
}

.section-heading.light p {
  color: #c4d0dc;
}

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

.situation-grid article {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.situation-grid img {
  height: 245px;
}

.situation-grid div {
  padding: 24px;
}

.situation-grid h3 {
  font-size: 21px;
}

.situation-grid p {
  margin-top: 10px;
  color: #c4d0dc;
  line-height: 1.65;
}

.feature-stack {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.feature-stack div {
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.feature-stack strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
}

.feature-stack span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.why-photo-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 20px;
  align-items: end;
}

.why-photo-grid img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.why-photo-grid img:first-child {
  height: 560px;
}

.why-photo-grid img:last-child {
  height: 380px;
}

.owner-section {
  padding: 80px 0;
  background: var(--cream);
}

.owner-card {
  padding: 52px;
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: center;
}

.owner-contact {
  background: var(--dark);
  color: white;
  padding: 32px;
  border-radius: 30px;
}

.owner-contact span {
  display: block;
  color: #9fb0c3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.owner-contact strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.15;
}

.owner-contact a {
  display: inline-flex;
  margin-top: 22px;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--green);
  font-weight: 900;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  color: var(--dark);
}

details p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding-top: 30px;
}

.final-cta .container {
  position: relative;
  min-height: 540px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.final-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.final-cta .container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.55), rgba(7, 17, 31, 0.15));
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 72px;
}

.final-content h2,
.final-content p {
  color: white;
}

.final-content p {
  color: #d5dfeb;
}

.footer {
  background: var(--dark);
  color: #c1cedd;
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  line-height: 1.75;
  color: #c1cedd;
}

.footer a {
  font-weight: 800;
  color: white;
}

.copyright {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: #8190a3;
  font-size: 14px;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .why-grid,
  .faq-grid,
  .owner-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 70px;
  }

  .process-grid,
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .owner-card {
    padding: 34px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-call {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
    padding: 58px 0 80px;
  }

  .hero-copy h1 {
    font-size: 47px;
  }

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

  .trust-row,
  .process-grid,
  .situation-grid,
  .strip-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-image-card img,
  .split-image img,
  .why-photo-grid img:first-child,
  .why-photo-grid img:last-child {
    height: 330px;
  }

  .offer-form {
    padding: 24px;
  }

  .split-section,
  .process-section,
  .why-section,
  .faq-section,
  .situations-section {
    padding: 75px 0;
  }

  .why-photo-grid {
    grid-template-columns: 1fr;
  }

  .owner-contact strong {
    font-size: 23px;
  }

  .final-cta .container {
    min-height: auto;
  }

  .final-content {
    padding: 40px 24px;
  }
}


.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}


/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
  transform: translateX(0) translateY(0);
}

.hero-image-card,
.split-image img,
.why-photo-grid img,
.situation-grid article,
.process-card,
.owner-card,
.final-cta .container {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-image-card:hover,
.split-image img:hover,
.why-photo-grid img:hover,
.situation-grid article:hover,
.process-card:hover,
.owner-card:hover {
  transform: translateY(-6px);
}

.btn,
.nav-call,
.offer-form button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover,
.nav-call:hover,
.offer-form button:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .hero-image-card,
  .split-image img,
  .why-photo-grid img,
  .situation-grid article,
  .process-card,
  .owner-card,
  .final-cta .container,
  .btn,
  .nav-call,
  .offer-form button {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Luxury navy + gold upgrades */
body {
  background: #fbfaf7;
}

.hero-section {
  background: linear-gradient(180deg, #081321 0%, #0d1f35 100%);
}

.hero-bg::after {
  background:
    radial-gradient(circle at top left, rgba(201,169,106,0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 32%);
}

.brand-mark {
  box-shadow: 0 20px 50px rgba(201,169,106,0.22);
}

.offer-form,
.process-card,
.owner-card,
.situation-grid article,
.feature-stack div,
details {
  box-shadow: 0 18px 60px rgba(8, 19, 33, 0.08);
}

.btn-primary,
.offer-form button,
.owner-contact a {
  background: linear-gradient(135deg, #d8bb84 0%, #b89455 100%);
  color: #081321;
}

.btn-primary:hover,
.offer-form button:hover,
.owner-contact a:hover {
  background: linear-gradient(135deg, #e2c998 0%, #c9a96a 100%);
}

.section-label,
.eyebrow,
.check-list span {
  color: #c9a96a;
}

.process-card span {
  background: linear-gradient(135deg, #081321, #10233d);
}

.nav-call {
  background: linear-gradient(135deg, #ffffff 0%, #f7f1e7 100%);
}

.final-cta .container::after {
  background: linear-gradient(90deg, rgba(8,19,33,0.94), rgba(8,19,33,0.68), rgba(8,19,33,0.18));
}

.footer {
  background: #081321;
}

.logo-strip {
  background: #fffdfa;
}

.strip-grid div {
  color: #6f5a33;
}


.terms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8bb84 0%, #b89455 100%);
  color: #081321 !important;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 28px rgba(201,169,106,0.18);
}

.terms-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201,169,106,0.24);
}


/* Regular property photo presentation */
.hero-image-card img,
.split-image img,
.process-card.image-card img,
.situation-grid img,
.why-photo-grid img,
.final-cta img {
  filter: saturate(0.92) contrast(0.96);
}

.situation-grid img {
  object-position: center;
}
