/* ==========================================================================
   Sourced By Jes — Luxury Real Estate Advisory
   Converted from the original React/Tailwind (Lovable) build to plain CSS.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap");

:root {
  --radius: 0.25rem;

  --background: #F7F6F2;
  --foreground: #111111;
  --card: #FFFFFF;
  --primary: #111111;
  --primary-foreground: #FFFFFF;
  --secondary: #EBEAE5;
  --muted-foreground: #666666;
  --accent: #E5E3DB;
  --destructive: #8B0000;
  --border: rgba(17, 17, 17, 0.12);

  --font-serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --tracking-luxe: 0.28em;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style-position: inside;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.italic {
  font-style: italic;
}

/* ---------- Layout helpers ---------- */
.container-luxe {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 80rem;
}

@media (min-width: 640px) {
  .container-luxe {
    padding-inline: 1.5rem;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--tracking-luxe);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Mobile-first section padding */
.section {
  padding-block: 4rem;
}

.section-lg {
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .section {
    padding-block: 7rem;
  }

  .section-lg {
    padding-block: 8rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 8rem;
  }

  .section-lg {
    padding-block: 12rem;
  }
}

.bg-tint {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bg-dark {
  background-color: var(--foreground);
  color: var(--background);
}

.text-muted {
  color: var(--muted-foreground);
}

.border-top {
  border-top: 1px solid var(--border);
}

.border-bottom {
  border-bottom: 1px solid var(--border);
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn {
    padding: 1.1rem 2.25rem;
  }
}

.btn-solid-light {
  background: var(--background);
  color: var(--foreground);
}

.btn-solid-light:hover {
  background: rgba(247, 246, 242, 0.9);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

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

.btn-solid-dark:hover {
  opacity: 0.85;
}

.btn-outline-dark {
  border-color: rgba(17, 17, 17, 0.3);
  color: var(--foreground);
}

.btn-outline-dark:hover {
  background: rgba(17, 17, 17, 0.05);
  border-color: var(--foreground);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.site-header.scrolled {
  background-color: rgba(247, 246, 242, 0.85);
  /* F7F6F2 with opacity */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.site-header.scrolled .header-row,
.site-header.inner-page .header-row {
  color: var(--foreground);
}

/* Logo / Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 72px;
  max-height: 72px;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .brand img {
  height: 44px;
}

.site-header:not(.scrolled):not(.inner-page) .brand img {
  filter: brightness(0) invert(1);
}

.brand-mark {
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.brand-name {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  position: relative;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  opacity: 0.85;
  transition: opacity 0.25s ease;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0.65rem 1.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: currentColor;
}

.site-header:not(.scrolled):not(.inner-page) .header-cta:hover {
  color: #000;
}

.site-header.scrolled .header-cta:hover,
.site-header.inner-page .header-cta:hover {
  color: var(--background);
}

.menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin-bottom: 6px;
}

.menu-btn span:last-child {
  margin-bottom: 0;
}

.mobile-nav {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .container-luxe {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--foreground);
}

.mobile-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

@media (min-width: 768px) {
  .brand-name {
    display: block;
  }

  .brand img {
    height: 52px;
    max-height: 52px;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-btn {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: heroZoom 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.85));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
  padding-top: 8rem;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-content {
    padding-bottom: 7rem;
    padding-top: 10rem;
  }
}

.hero-content .max-w {
  max-width: 48rem;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .italic {
  color: rgba(255, 255, 255, 0.9);
}

.hero-rule {
  margin-top: 1.5rem;
  height: 1px;
  width: 6rem;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: left;
  animation: shimmerLine 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 1rem;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 1.05;
  }

  .hero-rule {
    margin-top: 2rem;
    width: 8rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    margin-top: 2rem;
  }

  .hero-actions {
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

.img-frame {
  overflow: hidden;
  position: relative;
}

/* Images fill the frame via absolute positioning */
.img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.img-frame:hover img {
  transform: scale(1.06);
}

/* Aspect ratio container — img is positioned inside absolutely */
.ratio-4-5 {
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
}

/* On mobile, limit the about image height so it doesn't dominate the screen */
@media (max-width: 767px) {
  .about-grid .ratio-4-5 {
    aspect-ratio: 3 / 2;
  }
}

.rule {
  height: 1px;
  width: 6rem;
  background: rgba(21, 20, 17, 0.6);
  margin-block: 1.5rem;
}

.about-copy {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-copy p:first-of-type {
  font-size: 1.45rem;
  font-family: var(--font-serif);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.about-copy p+p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.about-copy ul {
  list-style: none;
  padding: 0;
  margin-block: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-copy li {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--foreground);
}

.about-signoff {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

.about-signoff .brand-mark {
  height: 3rem;
  width: 3rem;
}

.about-signoff p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

h2.h-lg {
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--foreground);
}

@media (min-width: 640px) {
  h2.h-lg {
    font-size: 3.25rem;
  }
}

@media (min-width: 768px) {
  h2.h-lg {
    font-size: 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .about-grid .img-frame {
    position: sticky;
    top: 120px;
  }

  .rule {
    margin-block: 2rem;
  }

  .about-copy {
    font-size: 1.05rem;
  }

  .about-copy p+p {
    margin-top: 1.5rem;
  }
}

/* ---------- Showcase ---------- */
.showcase-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.showcase-grid {
  display: grid;
  gap: 2rem;
}

.showcase-card .pt {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-card h3 {
  font-size: 1.75rem;
  font-family: var(--font-serif);
  color: var(--foreground);
}

.showcase-place {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.hover-lift {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .showcase-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }

  .showcase-card .pt {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background-color: var(--background);
  padding: 2rem;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.luxury-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
  display: block;
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .luxury-number {
    margin-bottom: 2rem;
  }
}

.service-card:hover .luxury-number {
  color: rgba(247, 246, 242, 0.7);
}

.service-card h3 {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
  }
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.service-card:hover p {
  color: rgba(252, 251, 250, 0.7);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  gap: 2.5rem;
}

.why-item {
  text-align: center;
}

.why-item .luxury-number {
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.why-item h3 {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .why-item {
    text-align: left;
  }

  .why-item .luxury-number {
    margin: 0 0 1.25rem 0;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Process ---------- */
.process-section {
  overflow: hidden;
}

.process-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.process-steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  border-top: 1px solid rgba(252, 251, 250, 0.25);
  padding-top: 1.25rem;
}

.process-step .num {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: rgba(252, 251, 250, 0.6);
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(252, 251, 250, 0.7);
  line-height: 1.7;
}

/* Hide the decorative image on small screens to avoid huge blank space */
@media (max-width: 1023px) {
  .process-grid .img-frame {
    display: none;
  }
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    gap: 2.5rem;
  }

  .process-step .num {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

  .process-grid .img-frame {
    display: block;
  }

  .process-steps {
    margin-top: 4rem;
  }
}

/* ---------- CTA ---------- */
.cta-section {
  padding-block: 5rem;
  text-align: center;
}

.cta-section .container-luxe {
  max-width: 48rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .cta-section {
    padding-block: 8rem;
  }

  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3.75rem;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    padding-block: 5rem;
    gap: 3rem;
  }
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-about p {
  max-width: 24rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-col a {
  color: var(--muted-foreground);
}

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

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.footer-email:hover {
  color: var(--foreground);
}

.footer-email svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--muted-foreground);
}

.footer-social a:hover {
  color: var(--foreground);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.footer-bottom p {
  line-height: 1.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 11px;
    letter-spacing: 0.22em;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- Consultation / form page ---------- */
.page-hero {
  padding-top: 7rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}

.page-hero .container-luxe {
  max-width: 48rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.05;
}

.page-hero p {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }

  .page-hero p {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.form-section {
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .form-section {
    padding-block: 6rem;
  }
}

.form-section .container-luxe {
  max-width: 48rem;
}

form.consultation-form {
  display: flex;
  flex-direction: column;
}


.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field label.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: var(--font-serif);
  -webkit-appearance: none;
  border-radius: 0;
}

.field-input:focus {
  outline: none;
  border-color: var(--foreground);
}

.field-input::placeholder {
  color: rgba(72, 69, 64, 0.5);
}

.field-error {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.8rem;
  color: var(--destructive);
}

.submit-row {
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .submit-row {
    padding-top: 1rem;
  }
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--foreground);
  color: var(--background);
  padding: 1rem 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .submit-btn {
    width: auto;
    padding: 1.25rem 2.5rem;
  }
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.success-box {
  text-align: center;
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

@media (min-width: 640px) {
  .success-box {
    padding: 4rem;
  }
}

.success-box svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  stroke-width: 1;
}

.success-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .success-box h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .success-box h2 {
    font-size: 2.25rem;
  }
}

.success-box p {
  color: var(--muted-foreground);
}

.success-box button {
  margin-top: 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border: none;
  background: none;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.25rem;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* ---------- Luxury Lead Form ---------- */
.luxury-form-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .luxury-form-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.luxury-form-wrap {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .luxury-form-wrap {
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
}

/* ---- Left editorial panel ---- */
.luxury-form-editorial {
  padding-top: 0.5rem;
}

.luxury-form-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--foreground);
}

.luxury-form-rule {
  width: 3rem;
  height: 1px;
  background: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1.75rem;
}

.luxury-form-sub {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}

/* Trust badges */
.luxury-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.luxury-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.luxury-trust-item svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  stroke-width: 1.5;
  color: var(--foreground);
}

.luxury-form-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.luxury-form-contact:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

.luxury-form-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* ---- Right form panel ---- */
.luxury-form-fields {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

@media (min-width: 640px) {
  .luxury-form-fields {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .luxury-form-fields {
    padding: 3.5rem;
  }
}

/* Form row grid */
.luxury-field-row {
  display: grid;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
  .luxury-field-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Floating label field */
.luxury-field {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}

.luxury-field-row .luxury-field {
  margin-bottom: 0;
}

.luxury-field--full {
  margin-top: 0;
}

/* Input/Select/Textarea base */
.luxury-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 20, 17, 0.2);
  padding: 1.5rem 0 0.6rem;
  font-size: 1rem;
  font-family: var(--font-serif);
  color: var(--foreground);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.luxury-input:focus {
  border-color: var(--foreground);
}

/* Floating label */
.luxury-label {
  position: absolute;
  top: 0.6rem;
  left: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-foreground);
  pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.luxury-label em {
  font-style: normal;
  color: var(--destructive);
  margin-left: 2px;
}

/* Animate label up when input has content or is focused */
.luxury-input:focus~.luxury-label,
.luxury-input:not(:placeholder-shown)~.luxury-label {
  top: -0.25rem;
  font-size: 0.62rem;
  color: var(--foreground);
}

/* Select */
.luxury-field--select {
  position: relative;
}

.luxury-select {
  padding-right: 1.5rem;
  cursor: pointer;
}

.luxury-select-arrow {
  position: absolute;
  right: 0;
  bottom: 0.85rem;
  width: 0.9rem;
  height: 0.9rem;
  pointer-events: none;
  color: var(--muted-foreground);
  stroke-width: 2;
}

/* Animated underline on focus */
.luxury-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--foreground);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.luxury-input:focus~.luxury-line {
  width: 100%;
}

.luxury-textarea {
  min-height: 5rem;
}

/* Error */
.field-error {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

/* Submit row */
.luxury-submit-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 540px) {
  .luxury-submit-row {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
}

.luxury-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--foreground);
  color: var(--background);
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
  white-space: normal;
  text-align: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.luxury-submit-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.luxury-submit-btn:hover {
  opacity: 0.85;
}

.luxury-submit-btn:hover svg {
  transform: translateX(4px);
}

.luxury-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.luxury-submit-note {
  font-size: 0.76rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-family: var(--font-sans);
}

/* ---------- Reveal-on-scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 900ms cubic-bezier(0.22, 0.36, 0.22, 1), transform 1100ms cubic-bezier(0.22, 0.36, 0.22, 1);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---------- Keyframes ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.animate-fade-up {
  animation: fadeUp 0.9s ease-out both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes shimmerLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== WHY CLIENTS CHOOSE US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

.why-us-card {
  background: var(--card, #fff);
  border: 1px solid var(--border, rgba(17,17,17,.12));
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--primary, #111);
  transition: height 0.35s ease;
}

.why-us-card:hover::before {
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--primary, #111);
}

.why-us-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--primary, #111);
}

.why-us-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}

.why-us-card h3 {
  font-family: var(--font-serif, serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--foreground, #111);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-us-card p {
  font-size: 0.92rem;
  color: var(--muted-foreground, #666);
  line-height: 1.75;
}