/* === VARIABLES === */
:root {
  --ink: #1a1a18;
  --cream: #f5f0e8;
  --parchment: #ebe4d6;
  --warm: #c9a96e;
  --warm-dark: #a6853f;
  --muted: #7a7468;
  --light-muted: #b0a899;
  --rule: #d4cbbf;
  --white: #faf8f4;
  --accent-soft: rgba(201,169,110,0.1);
}
* { 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 { 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; color: var(--ink); text-decoration: none; letter-spacing: 0.02em; }
.logo em { color: var(--warm-dark); font-style: italic; }
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 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 4rem; position: relative; }
.hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; border: 1px solid var(--warm); opacity: 0.06; border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 620px; height: 620px; border: 1px solid var(--warm); opacity: 0.03; border-radius: 50%; pointer-events: none; }
.hero-content { max-width: 740px; animation: fadeUp 1.2s ease both; position: relative; z-index: 1; }
.hero-eyebrow { 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.6rem, 5.5vw, 4.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 0.5rem; }
.hero h1 em { font-style: italic; color: var(--warm-dark); }
.hero-subtitle { font-size: 1.3rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-top: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.services { padding: 6rem 2rem; background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.services-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 0.8rem; }
.services-header p { font-size: 1.15rem; color: var(--muted); font-weight: 300; line-height: 1.7; }
.services-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { padding: 2.5rem; background: var(--cream); border: 1px solid var(--rule); transition: all 0.4s ease; position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--warm); transition: height 0.4s ease; }
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: var(--warm); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,26,24,0.06); }
.service-number { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--warm); letter-spacing: 0.15em; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 0.8rem; }
.service-card p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.process { padding: 6rem 2rem; background: var(--cream); }
.process-header { text-align: center; max-width: 500px; margin: 0 auto 3.5rem; }
.process-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.process-header p { font-size: 1.1rem; color: var(--muted); font-weight: 300; }
.process-steps { max-width: 680px; margin: 0 auto; position: relative; }
.process-steps::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 1px; background: var(--rule); }
.step { display: flex; gap: 2rem; margin-bottom: 2.5rem; align-items: flex-start; }
.step-marker { width: 56px; height: 56px; min-width: 56px; border-radius: 50%; border: 1px solid var(--warm); background: var(--cream); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--warm-dark); position: relative; z-index: 1; }
.step-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4rem; padding-top: 0.2rem; }
.step-content p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.audience { padding: 5rem 2rem; background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); text-align: center; }
.audience h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; margin-bottom: 2.5rem; }
.audience-tags { max-width: 700px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.tag { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; padding: 0.7rem 1.8rem; border: 1px solid var(--rule); color: var(--muted); background: var(--cream); transition: all 0.3s; cursor: default; }
.tag:hover { border-color: var(--warm); color: var(--warm-dark); background: var(--accent-soft); }
.quote-section { padding: 5rem 2rem; text-align: center; background: var(--cream); }
.quote-section blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-style: italic; font-weight: 400; color: var(--ink); max-width: 640px; 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 { padding: 6rem 2rem; background: var(--ink); color: var(--cream); }
.contact-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; }
.contact-text p { font-size: 1.1rem; font-weight: 300; color: var(--light-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-text .email-link { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--warm); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 3px; transition: border-color 0.3s; }
.contact-text .email-link:hover { border-color: var(--warm); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input, .contact-form textarea, .contact-form select { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; padding: 0.9rem 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: var(--cream); outline: none; transition: border-color 0.3s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--warm); }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0a899' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2rem center; cursor: pointer; }
.contact-form select option { background: var(--ink); color: var(--cream); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn-submit { 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(--warm); color: var(--ink); border: none; cursor: pointer; transition: all 0.3s ease; align-self: flex-start; }
.contact-form .btn-submit:hover { background: var(--warm-dark); color: var(--cream); transform: translateY(-1px); }
.diandra-link { grid-column: 1 / -1; text-align: center; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1rem; }
.diandra-link p { font-size: 0.85rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.diandra-link a { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--warm); text-decoration: none; font-style: italic; transition: opacity 0.3s; }
.diandra-link a:hover { opacity: 0.7; }
.diandra-link .arrow { display: inline-block; margin-left: 0.5rem; transition: transform 0.3s; }
.diandra-link a:hover .arrow { transform: translateX(4px); }
.form-success { background: rgba(201,169,110,0.15); border: 1px solid var(--warm); color: var(--cream); padding: 1rem 1.5rem; margin-bottom: 1rem; font-size: 1rem; text-align: center; }
.form-error { background: rgba(200,50,50,0.15); border: 1px solid rgba(200,50,50,0.4); color: var(--cream); padding: 1rem 1.5rem; margin-bottom: 1rem; font-size: 1rem; text-align: center; }
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; }
@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); }
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; }
  nav a { margin-left: 1.5rem; font-size: 0.9rem; }
  .logo { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .contact-form .btn-submit { align-self: center; }
  .hero::before { width: 300px; height: 300px; }
  .hero::after { width: 400px; height: 400px; }
}
@media (max-width: 480px) {
  header { flex-direction: column; gap: 0.8rem; }
  nav a { margin-left: 1rem; }
  .hero { padding-top: 10rem; }
  .audience-tags { flex-direction: column; align-items: center; }
}
