/* ─── Reset & Variables ─── */
:root {
  --bg: #F8F4EE;
  --fg: #1A1A18;
  --surface: #FFFFFF;
  --accent: #B8892E;
  --accent-dark: #8A6520;
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --muted: #6B6560;
  --border: #E2DDD5;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(27, 67, 50, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav-location {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(4rem, 10vh, 8rem);
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,106,79,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(184,137,46,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #1B4332 0%, #0F2B1D 40%, #0D2218 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 8rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: #C9A96E;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
  margin: 0 1.25rem;
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--green-dark);
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  quotes: none;
}

.manifesto-attribution {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ─── Craft / Services ─── */
.craft {
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  background: var(--bg);
}

.craft-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
}

.craft-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.craft-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.craft-card--large {
  grid-column: span 6;
  grid-row: span 2;
  flex-direction: row;
}

.craft-card:not(.craft-card--large) {
  grid-column: span 3;
}

.craft-visual {
  flex-shrink: 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.craft-card--large .craft-visual {
  min-height: 380px;
}

.craft-card:not(.craft-card--large) .craft-visual {
  height: 200px;
}

/* Atmospheric textures for each category */
.craft-visual--deck::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      92deg,
      transparent 0px,
      transparent 18px,
      rgba(201,169,110,0.18) 18px,
      rgba(201,169,110,0.18) 19px
    ),
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(45,106,79,0.5) 0%, transparent 70%);
}

.craft-visual--deck::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,43,29,0.8) 0%, transparent 100%);
}

.craft-visual--pergola::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 28px,
      rgba(0,0,0,0.15) 28px,
      rgba(0,0,0,0.15) 32px
    ),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,137,46,0.2) 0%, transparent 60%);
}

.craft-visual--pergola::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,67,50,0.3) 0%, rgba(27,67,50,0.6) 100%);
}

.craft-visual--kitchen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,137,46,0.25) 0%, transparent 70%),
    linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #1B4332 100%);
}

.craft-visual--kitchen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(15,43,29,0.7) 0%, transparent 100%);
}

.craft-visual--pool::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 12px,
      rgba(255,255,255,0.04) 12px,
      rgba(255,255,255,0.04) 13px
    ),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(150,200,220,0.15) 0%, transparent 70%),
    linear-gradient(180deg, #1B4332 0%, #0F2B1D 100%);
}

.craft-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.craft-card--large .craft-body {
  padding: 2.5rem;
}

.craft-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.craft-card--large .craft-name {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.craft-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.craft-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.craft-specs li {
  font-size: 0.78rem;
  color: var(--green-mid);
  font-weight: 500;
  padding-left: 1.1rem;
  position: relative;
}

.craft-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Process ─── */
.process {
  background: var(--surface);
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1.5px solid var(--border);
  position: relative;
}

.process-step:last-child { border-right: none; }

.process-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Social Proof ─── */
.social {
  background: var(--green-dark);
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
}

.social-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.social-rating {
  text-align: center;
  margin-bottom: 3.5rem;
}

.social-score {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.social-stars {
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.social-count {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
}

.social-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.75rem;
}

.social-stars-small {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.social-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.social-author {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ─── Areas ─── */
.areas {
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  background: var(--bg);
}

.areas-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.areas-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.65;
}

.areas-counties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--border);
}

.area-county {}

.area-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--accent);
  display: inline-block;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.area-list li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.area-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── Closing ─── */
.closing {
  background: var(--green-dark);
  padding: clamp(5rem, 10vh, 9rem) var(--gutter);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  line-height: 1.65;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 1.5px solid rgba(255,255,255,0.1);
  border-bottom: 1.5px solid rgba(255,255,255,0.1);
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.closing-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.closing-unit {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.closing-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.closing-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.closing-phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.closing-email {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Footer ─── */
.footer {
  background: #0D2218;
  padding: 2.5rem var(--gutter);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}

.footer-info {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .craft-card--large { grid-column: span 12; flex-direction: column; }
  .craft-card:not(.craft-card--large) { grid-column: span 6; }
  .craft-card--large .craft-visual { min-height: 240px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1.5px solid var(--border); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-bottom: none; }
  .social-grid { grid-template-columns: 1fr; }
  .areas-counties { grid-template-columns: 1fr; gap: 1.5rem; }
  .closing-stats { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .craft-card:not(.craft-card--large) { grid-column: span 12; }
  .craft-grid { gap: 1px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1.5px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .closing-stats { flex-direction: column; gap: 1.5rem; }
  .hero-meta { flex-direction: column; gap: 0.5rem; }
  .hero-divider { display: none; }
  .craft-specs { grid-template-columns: 1fr; }
}