/* ========================================
   ALBERT - Last Minute Luxury Concierge
   ======================================== */

/* Fonts */
@font-face {
  font-family: 'Symphony Pro';
  src: url('/fonts/symphony-pro-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/fonnts.com-theseasons-reg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/fonnts.com-theseasons-lt.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/fonnts.com-theseasons-bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/fonnts.com-theseasons-it.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Variables */
:root {
  --bg-dark: #080405;
  --bg-section: #0b0607;
  --bg-section-alt: #0e080a;
  --burgundy: #3a0f18;
  --burgundy-light: #5a1a28;
  --champagne: #c8b4a0;
  --champagne-light: #ddd0c4;
  --champagne-dim: rgba(200, 170, 150, 0.5);
  --text-primary: #e8ddd4;
  --text-secondary: rgba(200, 185, 175, 0.7);
  --text-muted: rgba(200, 185, 175, 0.4);
  --border: rgba(200, 170, 150, 0.08);
  --border-hover: rgba(200, 170, 150, 0.2);
  --font-brand: 'Symphony Pro', Georgia, serif;
  --font-heading: 'The Seasons', Georgia, serif;
  --font-body: 'The Seasons', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle velvet/fabric texture overlay on the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(120, 20, 35, 0.012) 1px,
      rgba(120, 20, 35, 0.012) 2px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(80, 10, 20, 0.008) 3px,
      rgba(80, 10, 20, 0.008) 4px
    );
}

body > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(8, 4, 5, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--champagne-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.header-brand:hover {
  color: #fff;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--champagne-light);
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.menu-toggle span:first-child { top: 4px; }
.menu-toggle span:last-child { bottom: 4px; }

.menu-toggle.open span:first-child {
  top: 50%;
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(70, 15, 28, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 55%, rgba(50, 12, 22, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(60, 15, 25, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 20%, rgba(40, 8, 16, 0.2) 0%, transparent 60%),
    var(--bg-dark);
}

/* Fabric-like texture on hero */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(100, 20, 35, 0.015) 2px,
      rgba(100, 20, 35, 0.015) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(80, 15, 25, 0.01) 2px,
      rgba(80, 15, 25, 0.01) 4px
    );
  opacity: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-pre {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-dim);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-brand);
  font-weight: normal;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--champagne-light);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--champagne-dim);
  margin: 0 auto 1.5rem;
}

.hero-sub {
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--champagne-dim), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-primary {
  background: rgba(200, 170, 150, 0.1);
  border: 1px solid rgba(200, 170, 150, 0.25);
  color: var(--champagne-light);
}

.btn-primary:hover {
  background: rgba(200, 170, 150, 0.18);
  border-color: rgba(200, 170, 150, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--champagne);
}

.btn-outline:hover {
  background: rgba(200, 170, 150, 0.06);
  border-color: rgba(200, 170, 150, 0.4);
  color: var(--champagne-light);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 0.9rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 8rem 0;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--champagne-light);
  margin-bottom: 4rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

h2 em {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
}

/* ========================================
   ABOUT
   ======================================== */
.section-about {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(50, 12, 22, 0.12) 0%, transparent 60%),
    var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.about-col p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 2.2rem;
  color: var(--champagne-light);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ========================================
   SERVICES INTRO
   ======================================== */
.section-services-intro {
  padding: 6rem 0 2rem;
  background: var(--bg-section-alt);
}

/* ========================================
   FULL-PAGE SERVICE SECTIONS
   ======================================== */
.service-full {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.service-full:hover .service-full-bg {
  transform: scale(1.03);
}

.service-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 4, 5, 0.92) 0%,
    rgba(8, 4, 5, 0.75) 40%,
    rgba(8, 4, 5, 0.3) 100%
  );
}

/* Right-aligned content variant: overlay flipped */
.service-full:has(.service-full-content--right) .service-full-overlay {
  background: linear-gradient(
    270deg,
    rgba(8, 4, 5, 0.92) 0%,
    rgba(8, 4, 5, 0.75) 40%,
    rgba(8, 4, 5, 0.3) 100%
  );
}

.service-full-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  padding: 4rem 5vw;
}

.service-full-content--right {
  margin-left: auto;
}

.service-full-number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 5rem;
  color: rgba(200, 170, 150, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-full-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--champagne-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.service-full-content > p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.service-full-content .service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.service-full-content .service-list li {
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(200, 185, 175, 0.55);
  padding-left: 1.2rem;
  position: relative;
}

.service-full-content .service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: var(--champagne-dim);
}

/* ========================================
   PROCESS
   ======================================== */
.section-process {
  background: var(--bg-section);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: rgba(200, 170, 150, 0.15);
  margin-bottom: 1.2rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 1.3rem;
  color: var(--champagne-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.process-step p {
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.process-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 3rem;
}

/* ========================================
   CONTACT
   ======================================== */
.section-contact {
  background: linear-gradient(180deg, var(--bg-section-alt) 0%, #12080b 50%, var(--bg-dark) 100%);
  text-align: center;
}

.contact-desc {
  max-width: 550px;
  margin: -2rem auto 3rem;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.contact-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

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

.contact-label {
  display: block;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-value {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3.5rem 0 2rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--champagne-light);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.service-block.reveal {
  transform: translateY(40px);
  transition-duration: 0.9s;
}

/* Stagger children */
.process-step.reveal:nth-child(1) { transition-delay: 0s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.15s; }
.process-step.reveal:nth-child(5) { transition-delay: 0.3s; }

.about-col.reveal:nth-child(2) { transition-delay: 0.15s; }

.stat.reveal:nth-child(1) { transition-delay: 0s; }
.stat.reveal:nth-child(3) { transition-delay: 0.12s; }
.stat.reveal:nth-child(5) { transition-delay: 0.24s; }

.contact-item.reveal:nth-child(1) { transition-delay: 0s; }
.contact-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-item.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ========================================
   RESPONSIVE - Mobile First Priority
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .process-connector {
    width: 1px;
    height: 25px;
    margin-top: 0;
  }

  .process-step {
    padding: 0 1rem;
  }

  /* Services tablet: center overlay */
  .service-full-overlay,
  .service-full:has(.service-full-content--right) .service-full-overlay {
    background: linear-gradient(
      0deg,
      rgba(8, 4, 5, 0.95) 0%,
      rgba(8, 4, 5, 0.8) 40%,
      rgba(8, 4, 5, 0.35) 100%
    );
  }

  .service-full {
    align-items: flex-end;
  }

  .service-full-content,
  .service-full-content--right {
    margin-left: 0;
    max-width: 100%;
    padding: 3rem 2rem 4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(8, 4, 5, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 100;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }

  .header {
    padding: 1rem 0;
  }

  .header-brand {
    font-size: 1.6rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .header-inner {
    padding: 0 1.5rem;
  }

  /* Hero mobile */
  .hero {
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-pre {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }

  .hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .hero-desc br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* About mobile */
  h2 {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }

  .about-col p {
    font-size: 0.95rem;
  }

  .about-stats {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
  }

  /* Services mobile */
  .service-full {
    min-height: 100dvh;
  }

  .service-full-content h3 {
    font-size: 1.8rem;
  }

  .service-full-content > p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .service-full-number {
    font-size: 3.5rem;
  }

  .section-services-intro {
    padding: 4rem 0 1.5rem;
  }

  /* Process mobile */
  .process-step h3 {
    font-size: 1.1rem;
  }

  .process-step p {
    font-size: 0.88rem;
  }

  /* Contact mobile */
  .contact-desc {
    font-size: 0.95rem;
    margin: -1.5rem auto 2.5rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto 3rem;
    gap: 1rem;
  }

  .contact-buttons .btn {
    justify-content: center;
  }

  .contact-details {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Footer mobile */
  .footer-top {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .footer-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav a {
    font-size: 0.7rem;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .container {
    padding: 0 1.2rem;
  }

  .header-inner {
    padding: 0 1.2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-pre {
    font-size: 0.6rem;
  }

  .section-label {
    font-size: 0.65rem;
  }

  .about-stats {
    gap: 1rem;
  }

  .service-full-content,
  .service-full-content--right {
    padding: 2.5rem 1.2rem 3rem;
  }

  .service-full-content h3 {
    font-size: 1.5rem;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .service-full:hover .service-full-bg {
    transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .btn:active {
    background: rgba(200, 170, 150, 0.15);
  }
}

/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .hero {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }

  .service-full-content {
    padding-left: max(5vw, env(safe-area-inset-left));
    padding-right: max(5vw, env(safe-area-inset-right));
  }
}
