/* ===== Reset & Variables ===== */
:root {
  --accent: oklch(68% 0.045 20);
  --accent-deep: oklch(58% 0.06 20);
  --ink: oklch(32% 0.015 60);
  --kicker: oklch(55% 0.04 30);
  --bg: #faf5f1;
  --white: #ffffff;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--stone-600);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--ink); }
.accent { color: var(--accent); }
.italic { font-style: italic; }
.kicker { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em; color: var(--kicker); margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ===== Links ===== */
.link-underline {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--ink); padding-bottom: 4px;
  border-bottom: 1px solid var(--accent); transition: all 0.3s;
}
.link-underline:hover { color: var(--accent-deep); }
.inline-link { color: var(--accent-deep); font-weight: 400; font-style: italic; }
.inline-link:hover { text-decoration: underline; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,229,228,0.6);
}
.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; letter-spacing: 0.02em; color: var(--accent-deep); }
.logo span { font-style: normal; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--stone-600); transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--stone-700); transition: all 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; top: 25%; left: -8rem;
  width: 28rem; height: 28rem; border-radius: 50%;
  background: oklch(85% 0.04 20 / 0.45); filter: blur(48px);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; right: -8rem;
  width: 32rem; height: 32rem; border-radius: 50%;
  background: oklch(90% 0.025 70 / 0.6); filter: blur(48px);
}
.hero-content { position: relative; text-align: center; padding: 80px 24px 0; max-width: 720px; }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 32px; }
.hero-text { font-size: clamp(1rem, 2vw, 1.15rem); max-width: 480px; margin: 0 auto 40px; }
.hero-links { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.dot { color: var(--stone-300); }
.hero-line {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

/* ===== About ===== */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 40px; }
.about-text p { margin-bottom: 24px; font-size: 1.05rem; line-height: 2; }
.about-image { position: relative; }
.image-bg-block {
  position: absolute; top: -16px; right: -16px; width: 100%; height: 100%;
  background: oklch(92% 0.02 30); border-radius: 2px;
}
.image-glow {
  position: absolute; bottom: -12px; left: -12px; width: 96px; height: 96px;
  border-radius: 50%; background: oklch(85% 0.05 20); filter: blur(32px); opacity: 0.7;
}
.about-image img { position: relative; width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; box-shadow: 0 30px 60px -20px oklch(45% 0.04 30 / 0.25); }
.image-handle {
  position: absolute; bottom: -24px; right: 8px;
  font-family: var(--font-display); font-style: italic; font-size: 0.85rem;
  color: var(--accent-deep);
}
.social-row { display: flex; align-items: center; gap: 24px; margin-top: 40px; }
.social-line { width: 40px; height: 1px; background: oklch(85% 0.025 20); }
.social-link-sm {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--stone-500); transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.social-link-sm:hover { color: var(--accent-deep); }

/* ===== Services ===== */
.services { padding: 120px 0; background: var(--bg); }
.services-list { display: flex; flex-direction: column; }
.service { padding: 48px 0; border-top: 1px solid oklch(88% 0.02 20); }
.service-info { display: grid; grid-template-columns: 1fr 2fr 3fr; gap: 32px; align-items: start; }
.service-number span { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--accent); }
.service-title h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.service-tagline { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent-deep); }
.service-desc p { line-height: 2; margin-bottom: 20px; }
.service-details { display: flex; flex-wrap: wrap; gap: 20px; }
.service-details li {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--stone-500); display: flex; align-items: center; gap: 8px;
}
.service-details li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.service-images { margin-top: 40px; }
.service-images-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-left: auto; max-width: 85%; }
.img-wrap { overflow: hidden; aspect-ratio: 3/4; background: var(--stone-200); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.img-wrap:hover img { transform: scale(1.03); }

.exclusivity { text-align: center; max-width: 640px; margin: 80px auto 0; }
.exclusivity-text { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1.5; color: var(--ink); margin-bottom: 24px; }
.exclusivity-sub { margin-bottom: 40px; }

/* ===== Contact ===== */
.contact { position: relative; padding: 120px 0; background: var(--white); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-bg::before {
  content: ''; position: absolute; top: 33%; left: 25%;
  width: 24rem; height: 24rem; border-radius: 50%;
  background: oklch(88% 0.035 20 / 0.45); filter: blur(48px);
}
.contact-bg::after {
  content: ''; position: absolute; bottom: 0; right: 25%;
  width: 20rem; height: 20rem; border-radius: 50%;
  background: oklch(92% 0.02 70 / 0.55); filter: blur(48px);
}
.contact-inner { position: relative; max-width: 640px; margin: 0 auto; }
.contact-sub { color: var(--stone-600); font-weight: 300; line-height: 2; max-width: 420px; margin: 0 auto; }

/* Form */
.contact-form { margin-top: 56px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--kicker); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--stone-300); padding: 12px 0;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  color: var(--stone-700); transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-bottom-color: var(--accent-deep); }
.form-group textarea { resize: none; }

.form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; gap: 24px; flex-wrap: wrap; }
.form-hint { font-size: 11px; color: var(--stone-500); max-width: 280px; line-height: 1.6; }
.btn-submit {
  font-family: var(--font-body); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.3em; padding: 16px 32px; border: 1px solid var(--accent-deep);
  background: var(--accent-deep); color: white; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { background: var(--ink); border-color: var(--ink); }

.contact-direct { text-align: center; margin-top: 64px; }
.email-link {
  display: inline-block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid oklch(68% 0.045 20 / 0.5);
  word-break: break-all;
}
.email-link:hover { color: var(--accent-deep); }

.contact-social {
  display: flex; justify-content: center; align-items: center; gap: 24px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--stone-200);
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.social-divider { width: 1px; height: 12px; background: var(--stone-200); }

/* ===== Footer ===== */
.footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 48px 24px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer .logo { color: white; }
.footer p, .footer a { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; }
.footer a:hover { color: white; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 24px; gap: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 360px; margin: 0 auto; order: -1; }
  .image-bg-block, .image-glow, .image-handle { display: none; }
  .service-info { grid-template-columns: 1fr; gap: 16px; }
  .service-images-grid { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .form-hint { max-width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-line { display: none; }
}