/* ============================================
   VELUXA — Global Styles
   Greek luxury theme: dark, gold, marble
   ============================================ */

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

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

:root {
  --bg:         #07070f;
  --bg-2:       #0d0d1a;
  --gold:       #c9a96e;
  --gold-light: #e2c98a;
  --gold-dim:   #7a6341;
  --cream:      #f0ece3;
  --muted:      #6e6a5f;
  --border:     rgba(201, 169, 110, 0.15);
  --border-mid: rgba(201, 169, 110, 0.3);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --radius:     2px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Typography ---- */
.serif { font-family: var(--serif); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; }

/* ---- Greek ornament rule ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}
.ornament::before { max-width: 3rem; }
.ornament::after { display: none; }
.ornament-center::before { max-width: unset; }
.ornament-center::after { display: block; max-width: unset; }

/* ---- Divider ---- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

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

/* ---- Nav ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(7, 7, 15, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0;
  transition: border-color var(--transition);
}
.nav-logo:hover .nav-logo-mark { border-color: var(--gold); }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}
.hero-greek-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-dim) 0px, var(--gold-dim) 8px,
    transparent 8px, transparent 16px,
    var(--gold-dim) 16px, var(--gold-dim) 24px,
    transparent 24px, transparent 40px
  );
  opacity: 0.5;
}
.hero-roman-numeral {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--serif);
  font-size: clamp(12rem, 20vw, 22rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.04);
  letter-spacing: 0.1em;
  user-select: none;
  white-space: nowrap;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-content h1 {
  margin: 1.2rem 0 1.5rem;
  color: var(--cream);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Services ---- */
.services { background: var(--bg-2); }
.section-header { margin-bottom: 4rem; }
.section-header h2 { margin-top: 0.5rem; }
.section-header p {
  color: var(--muted);
  max-width: 480px;
  margin-top: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-2);
  border: none;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: rgba(201, 169, 110, 0.04); }
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }

/* ---- Featured Work ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.work-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.work-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0d0d1a 0%, #13131f 100%);
  overflow: hidden;
  position: relative;
}
.work-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--border-mid);
  letter-spacing: 0.2em;
}
.work-card-body { padding: 1.75rem; }
.work-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.work-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.work-card p { color: var(--muted); font-size: 0.88rem; }
.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.work-card-link:hover { gap: 0.7rem; }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { margin: 0.75rem 0 1rem; }
.cta-band p { color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; }

/* ---- Why Veluxa ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-stat { border-left: 1px solid var(--border-mid); padding-left: 1.25rem; }
.why-stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.why-right p { color: var(--muted); line-height: 1.9; margin-bottom: 1rem; }

/* ---- Process ---- */
.process { background: var(--bg-2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.process-step { padding: 0 2rem 0 0; position: relative; }
.process-step-num {
  width: 3rem;
  height: 3rem;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }

/* ---- Work Page ---- */
.work-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--gold-dim); }
.pricing-card.featured {
  border-color: var(--gold-dim);
  background: rgba(201, 169, 110, 0.04);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
}
.pricing-tier {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pricing-price {
  margin: 1.25rem 0;
}
.pricing-price .amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.2rem;
  color: var(--muted);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}
.pricing-price .note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '—';
  color: var(--gold-dim);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}
.pricing-features li.included { color: var(--cream); }
.pricing-features li.included::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.pricing-note a { color: var(--gold); border-bottom: 1px solid var(--border-mid); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin: 0.75rem 0 1rem; }
.contact-info p { color: var(--muted); line-height: 1.9; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.9rem; color: var(--cream); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--bg-2); }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.9; margin-top: 1rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Page header (inner pages) ---- */
.page-header {
  padding: 12rem 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-top: 0.75rem; }
.page-header p { color: var(--muted); max-width: 500px; margin-top: 1rem; font-size: 1rem; }

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .process-steps::before { display: none; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 5rem 0; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Mobile nav overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
