/* === VARIABLES === */
:root {
  --ink: #1a1a18;
  --cream: #f5f0e8;
  --parchment: #ebe4d6;
  --warm: #c9a96e;
  --warm-dark: #a6853f;
  --muted: #7a7468;
  --light-muted: #b0a899;
  --rule: #d4cbbf;
  --white: #faf8f4;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
}

.ornament {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: var(--warm);
  letter-spacing: 0.5em;
  margin: 2rem auto;
  opacity: 0.7;
}

.rule {
  width: 80px;
  height: 1px;
  background: var(--warm);
  margin: 1.5rem auto;
  opacity: 0.6;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 20px rgba(26,26,24,0.06);
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--warm);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-left: 2.5rem;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative;
}

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

nav a:hover { color: var(--ink); }
nav a:hover::after { width: 100%; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '\201C';
  position: absolute;
  top: 12%;
  left: 8%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  color: var(--warm);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.hero::after {
  content: '\201D';
  position: absolute;
  bottom: 8%;
  right: 8%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  color: var(--warm);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-dark);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--warm-dark);
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-ghost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--warm);
}

/* === ABOUT === */
.about {
  padding: 6rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo { position: relative; }

.about-photo .photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--parchment);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame .placeholder-text {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--warm);
  opacity: 0.3;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--warm);
  opacity: 0.3;
  z-index: 0;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.about-text .subtitle {
  font-size: 1.1rem;
  color: var(--warm-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 500;
}

.credentials {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 2.5rem;
}

.credential { text-align: center; }

.credential .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--warm-dark);
  display: block;
}

.credential .label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* === QUOTE === */
.quote-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-section cite {
  display: block;
  margin-top: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === CONTACT === */
.contact {
  padding: 6rem 2rem;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact .lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-email {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--warm);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 4px;
  transition: all 0.3s;
}

.contact-email:hover { border-color: var(--warm); }

.contact-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-links a {
  font-size: 0.9rem;
  color: var(--light-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.contact-links a:hover { color: var(--warm); }

.project-link {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.project-link .label-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-link a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--warm);
  text-decoration: none;
  font-style: italic;
  transition: opacity 0.3s;
}

.project-link a:hover { opacity: 0.7; }

.project-link .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.project-link a:hover .arrow { transform: translateX(4px); }

/* === FOOTER === */
footer {
  padding: 1.5rem 2rem;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; }
  nav a { margin-left: 1.5rem; font-size: 0.9rem; }
  .logo { font-size: 1rem; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-photo { max-width: 220px; margin: 0 auto; }
  .about-photo::before { display: none; }
  .credentials { justify-content: center; }
  .hero::before, .hero::after { font-size: 10rem; }
  .contact-email { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  header { flex-direction: column; gap: 0.8rem; }
  nav a { margin-left: 1rem; }
  .hero { padding-top: 10rem; }
  .hero-cta { flex-direction: column; }
  .credentials { flex-direction: column; gap: 1.5rem; }
}
