/* Brand Colors */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFCFA;
  --sand: #E8E0D5;
  --taupe: #C4B5A4;
  --warm-gray: #8A7E73;
  --espresso: #3D3329;
  --deep-brown: #2A231C;
  --gold: #B8956A;
  --gold-light: #D4B896;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  padding: 2rem 0;
  text-align: center;
}

.site-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Main Sections */
main {
  padding: 3rem 0;
}

section {
  background: var(--warm-white);
  margin-bottom: 2rem;
  padding: 2.5rem 0;
}

section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

section p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

section p:last-child {
  margin-bottom: 0;
}

/* Hero/Intro Section */
.intro {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 3rem 0;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--espresso);
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 680px;
}

/* Services */
.services {
  background: var(--warm-white);
}

.service-item {
  margin-bottom: 2rem;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* Links */
.link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.link:hover {
  border-bottom-color: var(--gold);
}

/* Contact Section */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--espresso);
  color: var(--warm-white);
  text-decoration: none;
  text-align: center;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--espresso);
  transition: all 0.4s ease;
}

.contact-link:hover {
  background: transparent;
  color: var(--espresso);
}

/* Footer */
.footer {
  background: var(--deep-brown);
  border-top: 1px solid rgba(196, 181, 164, 0.12);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--taupe);
}

/* Responsive */
@media (max-width: 640px) {
  .site-title {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

  section h2 {
    font-size: 1.35rem;
  }

  .intro h2 {
    font-size: 1.6rem;
  }
}
