:root {
  --bg: #f5f2eb;
  --bg-card: #ece8df;
  --bg-section: #efece4;
  --text: #3d3d2e;
  --text-muted: #6b6b56;
  --accent: #3d3d2e;
  --accent-hover: #2a2a1e;
  --green: #5a7a4a;
  --border: #d4d0c5;
  --max-width: 1100px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,242,235,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img { height: 58px; width: auto; }

.nav-logo span {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 strong { font-weight: 600; }

.hero p {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}

.hero-cta:hover { gap: 0.8rem; }

/* SECTIONS */
section { padding: 6rem 2rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title strong { font-weight: 600; }

.section-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

/* PILLAR CARDS */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color 0.3s;
}

.pillar:hover { border-color: #3a3a3a; }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pillar-icon.hospitality { background: rgba(61,61,46,0.08); }
.pillar-icon.living { background: rgba(90,122,74,0.12); }

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar p {
  font-family: var(--serif);
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.pillar ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pillar ul li {
  font-family: var(--serif);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pillar ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

.pillar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* PROJECT — FEATURED HERO LAYOUT */
.projects-section { background: var(--bg-section); }

.project-featured {
  margin-top: 2rem;
}

.project-featured-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.project-featured-images .img-main {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-featured-images .img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-featured-images .img-stack div {
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}

.project-featured-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-family: var(--sans);
}

.project-content h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-location {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
}

.project-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.project-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.project-meta span {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  background: rgba(61,61,46,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 500;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: #ddd9ce;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.team-headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--border);
}

.team-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.2);
}

.team-member:first-child .team-headshot img {
  transform: none;
  object-position: center center;
}

.team-member h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.25rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.team-email {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.team-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.team-phone {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.team-phone:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* CONTACT */
.contact-section {
  background: var(--bg-section);
  text-align: center;
}

.contact-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 240px;
}

.contact-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.3rem;
}

.contact-link {
  color: rgba(245,242,235,0.75);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #fff;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 2rem 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .project-featured-images { grid-template-columns: 1fr; }
  .project-body { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-emails { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero h1 { font-size: 2.2rem; }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .hamburger { display: block; }
}
