:root {
  --cream: #ffffff;
  --cream-deep: #e6dad3;
  --charcoal: #3d3b3a;
  --stone: #7a6d63;
  --terracotta: #bca08b;
  --terracotta-deep: #a08876;
  --line: #e6dad3;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.logo span {
  display: block;
  font-family: -apple-system, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--stone);
  text-align: center;
}

.logo-img {
  height: 40px;
  width: auto;
}
footer .logo-img {
  height: 46px;
  filter: brightness(0) invert(1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a.btn {
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
    linear-gradient(135deg, var(--terracotta), var(--charcoal));
  color: #fff;
}

.hero .wrap {
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  max-width: 780px;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 30px;
}

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
}

/* Hero (split text + photo) */
.hero-split {
  background: var(--cream);
  padding: 70px 0;
}
.hero-split-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-split .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}
.hero-split h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 22px;
  color: var(--charcoal);
}
.hero-text p.intro {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 30px;
}
.hero-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split .btn-outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
@media (max-width: 800px) {
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin: 0 auto; order: -1; }
}

/* Section generic */
section { padding: 90px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--stone); margin-top: 14px; }

/* Services */
.services { background: var(--cream-deep); }
.category-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 4px;
}
.category-label:first-of-type { margin-top: 0; }
.service {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--terracotta);
  opacity: 0.6;
}
.service h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service p { color: var(--stone); font-size: 0.95rem; margin-bottom: 14px; }
.service ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}
.service ul li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
}
.service ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.service .cta-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--terracotta-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .service { grid-template-columns: 1fr; gap: 10px; }
}

/* About */
.about .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about .portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-deep), var(--terracotta));
  border-radius: var(--radius);
  overflow: hidden;
}
.about .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
}
.about h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }
.about p { color: var(--stone); margin-bottom: 16px; }
.about .name { color: var(--charcoal); font-weight: 600; }
.about .role {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--stone);
}

@media (max-width: 800px) {
  .about .wrap { grid-template-columns: 1fr; }
  .about .portrait { max-width: 320px; }
}

/* Team member */
.team-member { background: var(--cream-deep); }
.team-member-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.team-member .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
}
.team-member h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.team-member .role {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}
.team-member p:not(.eyebrow):not(.role) { color: var(--charcoal); }
.team-member .portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  order: 2;
}
.team-member .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .team-member-inner { grid-template-columns: 1fr; }
  .team-member .portrait { max-width: 320px; margin: 0 auto; }
}

/* Location */
.location { background: var(--charcoal); color: var(--cream); }
.location .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.location h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }
.location .details { display: grid; gap: 10px; margin-top: 24px; color: #d8d0c3; }
.area-groups {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.area-group-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.area-group-list {
  font-size: 0.9rem;
  color: #d8d0c3;
  line-height: 1.5;
}
.location .map {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--charcoal), #000000);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 800px) {
  .location .wrap { grid-template-columns: 1fr; }
}

/* Instagram */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--stone), var(--terracotta));
}
.insta-tile:nth-child(2n) { background: linear-gradient(155deg, var(--terracotta), var(--charcoal)); }
.insta-tile:nth-child(3n) { background: linear-gradient(155deg, var(--cream-deep), var(--stone)); }
@media (max-width: 720px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA / Contact */
.cta {
  text-align: center;
  background: var(--cream-deep);
}
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.cta p { color: var(--stone); max-width: 520px; margin: 0 auto 32px; }

form.enquiry {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 16px;
}
form.enquiry label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 6px;
  display: block;
}
form.enquiry input, form.enquiry select, form.enquiry textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}
form.enquiry button {
  justify-self: start;
  margin-top: 6px;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: #cfc7ba;
  padding: 60px 0 30px;
}
footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
footer .logo { color: var(--cream); }
footer .logo span { color: #a89c8a; }
footer p { font-size: 0.9rem; margin-top: 14px; color: #a89c8a; max-width: 320px; }
footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cfc7ba;
  margin-bottom: 16px;
}
footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.9rem; }
footer .bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #8c8171;
}

@media (max-width: 720px) {
  footer .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  nav.nav-open ul { display: flex; }
  header .wrap { position: relative; }
}

/* Blog listing */
.blog-hero {
  background: var(--cream-deep);
  padding: 70px 0 50px;
  text-align: center;
}
.blog-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
}
.blog-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.blog-hero p { color: var(--stone); max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 70px 0;
}
.projects-listing {
  padding: 60px 0 90px;
}
.projects-listing .blog-grid {
  padding: 24px 0 56px;
}
.blog-card { display: block; }
.blog-card .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--stone), var(--terracotta));
  margin-bottom: 20px;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 10px;
  display: block;
}
.blog-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.blog-card p { color: var(--stone); font-size: 0.95rem; }

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Moodboard / resources gallery */
.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 20px 0 70px;
}
.moodboard-card { display: block; }
.moodboard-card .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.moodboard-card .thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.moodboard-card:hover .thumb img { transform: scale(1.03); }
.moodboard-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .moodboard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .moodboard-grid { grid-template-columns: 1fr; }
}

/* Blog post */
.post-hero {
  background: var(--cream-deep);
  padding: 60px 0 40px;
}
.post-hero .tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
  display: block;
}
.post-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 760px; margin-bottom: 16px; }
.post-hero .meta { color: var(--stone); font-size: 0.9rem; }

.post-image {
  aspect-ratio: 16/7;
  background: linear-gradient(150deg, var(--terracotta), var(--charcoal));
  margin: 0 0 10px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}
.post-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.post-body p {
  margin-bottom: 18px;
  color: var(--charcoal);
}
.post-body ul {
  margin: 0 0 18px 20px;
}
.post-body li { margin-bottom: 8px; }
.post-body img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 36px;
  display: block;
}
.post-cta {
  background: var(--cream-deep);
  padding: 50px 0;
  text-align: center;
}
.post-cta h2 { font-size: 1.6rem; margin-bottom: 14px; }
.post-cta p { color: var(--stone); margin-bottom: 24px; }
