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

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

:root {
  --black: #1a1a2e;
  --white: #ffffff;
  --gold: #2a7f7f;
  --gold-light: #4aa8a8;
  --gold-pale: #e8f4f4;
  --gray: #5a6070;
  --gray-light: #e8eaee;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

#home {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--white) 55%, #e8f4f4 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,127,127,0.08) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 60px; left: 30%;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(42,127,127,0.25), transparent);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 28px;
}
h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.9;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.hero-note {
  position: absolute;
  bottom: 48px; right: 60px;
  z-index: 1;
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-align: right;
  animation: fadeUp 1.2s ease 0.3s both;
}
.hero-note strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
}

.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

section { padding: 100px 60px; }

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

#clients {
  padding: 48px 60px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.client-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.client-tag:hover { color: var(--gold-light); }
.client-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

#services { background: var(--white); }

.services-intro { max-width: 600px; margin-bottom: 64px; }
.services-intro p { font-size: 0.88rem; color: var(--gray); font-weight: 300; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--gray-light);
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: #f9fffe; }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: var(--gold-pale); }

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-desc { font-size: 0.82rem; color: var(--gray); font-weight: 300; line-height: 1.85; }

.flat-rate-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 14px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#about {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#about .section-label { color: var(--gold-light); }
#about .section-label::before { background: var(--gold-light); }
#about h2 { color: var(--white); }

.about-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.9; margin-bottom: 16px; }
.about-text strong { color: var(--gold-light); font-weight: 500; }

.about-disclaimer {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(42,127,127,0.3);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-style: italic;
}

.about-stats { display: flex; flex-direction: column; gap: 32px; }

.stat-item { padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

#contact { background: var(--gold-pale); }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-left p { font-size: 0.88rem; color: var(--gray); font-weight: 300; margin-bottom: 36px; line-height: 1.9; }

.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  width: 36px; height: 36px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; fill: var(--gold); }

.contact-item-text { font-size: 0.82rem; color: var(--black); font-weight: 300; }
.contact-item-text strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

footer {
  background: var(--black);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
.footer-disclaimer {
  width: 100%;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 18px 28px; }
  section, #home { padding: 80px 28px; }
  #clients { padding: 36px 28px; gap: 28px; }
  #about { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-note { display: none; }
  footer { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

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