
:root {
  --green: #0E3B2E;
  --gold: #C6A24A;
  --offwhite: #FAF8F5;
  --text: #1C1C1C;
  --sage: #E3E0D6;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--offwhite);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.hero {
  text-align: center;
  padding: 100px 20px 80px;
  background: var(--offwhite);
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  color: var(--green);
}

.tagline {
  color: var(--gold);
  font-size: 1.2em;
  margin-top: 10px;
}

.subtext {
  color: #4f4f4f;
  font-size: 1em;
  margin: 10px 0 25px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.btn:hover {
  background: #b18e3e;
}

.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
}

.portfolio {
  background-color: var(--sage);
  padding: 60px 20px;
  text-align: center;
}

.portfolio h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 280px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.card h3 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.btn-small {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9em;
}

.btn-small:hover {
  background: #094b3b;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.contact {
  text-align: center;
  padding: 70px 20px;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
}

.email-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2em;
  margin-top: 10px;
}

.email-link:hover {
  color: #b18e3e;
}

footer {
  background: var(--green);
  color: var(--gold);
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
}
