:root {
  --ink: #2a2623;
  --ink-soft: #5a524c;
  --muted: #8a8078;
  --taupe: #8c7c70;
  --taupe-deep: #6f6258;
  --sand: #e8e0d6;
  --mist: #f3eee8;
  --paper: #faf7f3;
  --line: rgba(140, 124, 112, 0.22);
  --glow: rgba(140, 124, 112, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(250, 247, 243, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.brand-logo {
  width: clamp(120px, 18vw, 160px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a:not(.nav-cta) {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:not(.nav-cta):hover {
  color: var(--taupe-deep);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--taupe);
  color: #fff !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--taupe-deep);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(140, 124, 112, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(196, 178, 158, 0.28), transparent 50%),
    linear-gradient(165deg, #f7f2ec 0%, #ebe3d8 45%, #e2d7cb 100%);
  animation: heroShift 14s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(140, 124, 112, 0.04) 50%, transparent 52%, transparent 100%),
    linear-gradient(0deg, transparent 0%, transparent 48%, rgba(140, 124, 112, 0.04) 50%, transparent 52%, transparent 100%);
  background-size: 72px 72px;
  opacity: 0.5;
}

@keyframes heroShift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  animation: fadeUp 1s ease both;
}

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

.hero-logo {
  width: clamp(220px, 42vw, 340px);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 12px 28px rgba(90, 74, 60, 0.12));
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 300;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-primary {
  background: var(--taupe);
  color: #fff;
}

.btn-primary:hover {
  background: var(--taupe-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--taupe);
  color: var(--taupe-deep);
  transform: translateY(-2px);
}

/* Services */
.services {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem);
  max-width: 920px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 0.04s);
}

.service.is-in {
  opacity: 1;
  transform: translateY(0);
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.4;
  padding-top: 0.15rem;
}

.service-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--taupe-deep);
  margin-bottom: 1rem;
}

.service-body > p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.service-body h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.service-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
}

.service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--taupe);
  opacity: 0.7;
}

.service-body li strong {
  font-weight: 500;
  color: var(--ink);
}

/* Contact */
.contact {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 55% 70% at 85% 30%, rgba(140, 124, 112, 0.12), transparent 55%),
    linear-gradient(180deg, #f3eee8 0%, #ebe3d8 100%);
}

.contact-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.contact-intro .eyebrow {
  margin-bottom: 0.75rem;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-lead {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 28rem;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label hint"
    "value value";
  gap: 0.35rem 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s, transform 0.25s;
}

.contact-row:hover {
  transform: translateX(4px);
}

.contact-row:hover .contact-value {
  color: var(--taupe-deep);
}

.contact-label {
  grid-area: label;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-hint {
  grid-area: hint;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--taupe);
  align-self: center;
  opacity: 0.85;
}

.contact-value {
  grid-area: value;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.25s;
}

@media (max-width: 760px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 120px;
  margin: 0 auto 1rem;
  opacity: 0.75;
}

.site-footer p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .service-num {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 6rem;
  }
}
