:root {
  --forest: #26352a;
  --forest-deep: #1c2720;
  --cream: #f1e7d3;
  --cream-soft: #f7f0e1;
  --sand: #e8dcc7;
  --clay: #c98a6b;
  --sage: #8ba188;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(38, 53, 42, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 240, 225, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}
.nav-brand img { height: 34px; width: 34px; border-radius: 6px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--forest); transition: opacity .2s; }
.nav-links a:hover { opacity: 0.65; }
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,138,107,0.08) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(139,161,136,0.1) 0, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-logo {
  width: 280px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  justify-self: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--cream);
  margin-bottom: 20px;
}
.hero .tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: var(--sand);
  margin-bottom: 32px;
  max-width: 480px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero { padding: 64px 0 80px; }
  .hero-logo { width: 220px; }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--clay); color: var(--cream-soft); }
.btn-primary:hover { background: #b67758; }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--forest); }
.btn-dark { background: var(--forest); color: var(--cream-soft); }
.btn-dark:hover { background: var(--forest-deep); }

/* ============ SECTIONS ============ */
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--forest);
  margin-bottom: 20px;
  max-width: 720px;
}
.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 56px;
  font-size: 17px;
}

/* ============ ABOUT ============ */
.about { background: var(--cream-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p + p { margin-top: 18px; }
.about-card {
  background: var(--forest);
  color: var(--cream);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.about-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--cream);
}
.about-card ul { list-style: none; }
.about-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(241,231,211,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sand);
  font-size: 15px;
}
.about-card li:last-child { border: none; }
.about-card li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ PROJECTS ============ */
.projects { background: var(--sand); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project {
  background: var(--cream-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(38,53,42,0.12);
}
.project-thumb {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  position: relative;
}
.project:nth-child(2) .project-thumb { background: linear-gradient(135deg, var(--clay), #e3a688); }
.project:nth-child(3) .project-thumb { background: linear-gradient(135deg, var(--sage), var(--cream)); color: var(--forest); }
.project:nth-child(4) .project-thumb { background: linear-gradient(135deg, #8b5a3c, var(--clay)); }
.project:nth-child(5) .project-thumb { background: linear-gradient(135deg, var(--forest-deep), var(--forest)); }
.project:nth-child(6) .project-thumb { background: linear-gradient(135deg, #d4a88a, var(--sand)); color: var(--forest); }
.project-body { padding: 22px 24px 26px; }
.project-body h4 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 4px;
}
.project-body span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-notes {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #4a4a4a;
}
@media (max-width: 820px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============ ENQUIRY ============ */
.enquiry { background: var(--cream-soft); }
.enquiry-cta {
  text-align: center;
  max-width: 640px;
}
.enquiry-cta .section-title { margin-left: auto; margin-right: auto; }
.enquiry-cta .eyebrow { margin-bottom: 14px; }
.enquiry-lead {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 18px;
}
.btn-lg {
  padding: 18px 44px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

form { display: grid; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream-soft);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2326352a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}
.form-msg {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-msg.ok { background: #e4f0df; color: #2d5c1d; display: block; }
.form-msg.err { background: #f8dcdc; color: #8c1f1f; display: block; }

@media (max-width: 820px) { .enquiry-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============ FOOTER ============ */
footer {
  background: var(--forest-deep);
  color: var(--sand);
  padding: 56px 0 32px;
  text-align: center;
}
footer img { width: 56px; border-radius: 10px; margin: 0 auto 20px; }
footer .foot-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
}
footer p { font-size: 14px; color: var(--sand); opacity: 0.75; }
.socials { margin: 20px 0 28px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(241,231,211,0.25);
  border-radius: 50%;
  margin: 0 4px;
  transition: background .2s, border-color .2s;
}
.socials a:hover { background: var(--clay); border-color: var(--clay); }
.socials svg { width: 18px; height: 18px; fill: var(--cream); }
.copy { font-size: 12px; opacity: 0.5; margin-top: 24px; }
.admin-link {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  border: 1px solid rgba(241,231,211,0.3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.85;
  transition: all .2s;
}
.admin-link:hover { background: var(--clay); border-color: var(--clay); color: #fff; opacity: 1; }
