:root {
  --deep-slate: #2E7A8A;
  --deep-sage: #459970;
  --sage: #6B8E7F;
  --warm-sand: #C8B49A;
  --warm-white: #F5F5F2;
  --charcoal: #1C1C1E;
  --light-sage: #E2EDEA;
  --mid-grey: #8A8F9A;

  --ink: #162E35;
  --ink-2: rgba(22, 46, 53, 0.74);

  --max: 1200px;
  --gutter: 48px;
  --radius: 10px;
  --shadow: 0 18px 40px rgba(28, 28, 30, 0.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.75;
}

img, svg { max-width: 100%; height: auto; }

a { color: inherit; text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid rgba(69, 153, 112, 0.38);
  outline-offset: 2px;
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.v2lbl {
  color: var(--deep-sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  display: block;
}

.v2h2 {
  color: var(--ink);
  letter-spacing: -0.5px;
  max-width: 40ch;
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
}
.v2h2.v2h2--on-dark { color: rgba(255, 255, 255, 0.96); }

.v2p {
  color: var(--ink-2);
  max-width: 70ch;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}
.v2p + .v2p { margin-top: 14px; }
.v2p.v2p--on-dark { color: rgba(255, 255, 255, 0.72); }

/* Header + nav */
.v2nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(245, 245, 242, 0.96);
  border-bottom: 1px solid rgba(46, 122, 138, 0.10);
  position: sticky;
  top: 0;
}
.v2nav-i {
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 18px;
}
.v2nav-r {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v2nav-brand {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  text-decoration: none;
  display: flex;
  flex-shrink: 0;
}
.v2nav-wm {
  color: var(--deep-slate);
  letter-spacing: -0.5px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
}

.v2nav-details {
  margin: 0;
  padding: 0;
  position: relative;
}
.v2nav-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  color: var(--sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(46, 122, 138, 0.14);
  background: rgba(245, 245, 242, 0.75);
}
.v2nav-summary::-webkit-details-marker { display: none; }
.v2nav-panel {
  position: absolute;
  right: 0;
  top: 46px;
  width: min(420px, calc(100vw - (var(--gutter) * 2)));
  padding: 12px 14px;
  background: rgba(245, 245, 242, 0.98);
  border: 1px solid rgba(46, 122, 138, 0.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 10;
}
.v2nav-panel .v2nav-ul { justify-content: flex-start; }
.v2nav-details:not([open]) .v2nav-panel { display: none; }
.v2nav-ul {
  grid-column-gap: 34px;
  grid-row-gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.v2nav-a,
.v2nav-ul a {
  color: var(--sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  text-decoration: none;
  padding: 6px 0;
}
.v2nav-ul a:hover { color: var(--deep-slate); }
.v2nav-cta {
  color: #fff;
  letter-spacing: 0.2px;
  background-color: var(--deep-slate);
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  border: 1px solid rgba(46, 122, 138, 0.28);
}
.v2nav-cta:hover { filter: brightness(1.04); }

/* Sections */
.v2section {
  padding: clamp(72px, 8vw, 112px) var(--gutter);
}
.v2section--alt { background: rgba(226, 237, 234, 0.35); }
.v2section--dark { background: var(--ink); color: #fff; }
.v2section-i {
  max-width: var(--max);
  margin: 0 auto;
}

/* Hero */
.v2h {
  background-color: var(--ink);
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.v2h-bg {
  background-image: radial-gradient(rgba(69, 153, 112, 0.08) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 36px 36px;
  position: absolute;
  inset: 0;
}
.v2h-i {
  z-index: 1;
  grid-column-gap: 80px;
  grid-row-gap: 56px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 120px) var(--gutter);
  display: grid;
  position: relative;
}
.v2h-eye {
  color: var(--deep-sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 28px;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  display: block;
}
.v2h-h1 {
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.1;
}
.v2h-h1 em { color: var(--deep-sage); font-style: italic; }
.v2h-body {
  color: rgba(255, 255, 255, 0.70);
  max-width: 54ch;
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.8;
}
.v2h-acts {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.v2h-btn,
.button.button--primary,
.button--primary {
  color: #fff;
  background-color: var(--deep-sage);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(69, 153, 112, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.v2h-btn:hover { filter: brightness(1.04); }
.v2h-ghost {
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.5px;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  text-decoration: none;
}
.v2h-ghost:hover { color: rgba(255, 255, 255, 0.85); }
.v2h-r {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  min-height: 320px;
}
.v2h-net {
  filter: drop-shadow(0 0 48px rgba(69, 153, 112, 0.18));
  width: 100%;
  max-width: 480px;
}
.v2h-glow {
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(69, 153, 112, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  width: 360px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Cards */
.v2cards {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}
.v2card {
  background-color: #fff;
  border: 1px solid rgba(46, 122, 138, 0.10);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v2card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
}
.v2card p {
  margin: 0;
  color: rgba(28, 28, 30, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

/* Form styling (Drupal core) */
.form-item { margin: 0 0 12px; }
.form-item label { font-weight: 700; font-size: 14px; display: block; margin: 0 0 6px; }
.form-item input,
.form-item textarea,
input.form-text,
textarea.form-textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(28, 28, 30, 0.18);
  font: inherit;
  background: #fff;
}
.form-item input:focus,
.form-item textarea:focus {
  outline: 3px solid rgba(46, 122, 138, 0.22);
  border-color: rgba(46, 122, 138, 0.35);
}
.form-actions .button {
  color: #fff;
  background-color: var(--deep-sage);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(69, 153, 112, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.form-actions .button:hover { filter: brightness(1.04); }

/* Footer */
.v2ft {
  background-color: #0D1F25;
  padding: 72px var(--gutter) 40px;
  color: #fff;
}
.v2ft-i {
  max-width: var(--max);
  margin: 0 auto;
}
.v2ft-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.v2ft-brand {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}
.v2ft-wm {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
}
.v2ft-links {
  grid-column-gap: 26px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.v2ft-a {
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  text-decoration: none;
}
.v2ft-a:hover { color: rgba(255, 255, 255, 0.72); }
.v2ft-contact {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}
.v2ft-email {
  color: var(--deep-sage);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.v2ft-loc {
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 1px;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}
.v2ft-bot {
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.v2ft-copy,
.v2ft-web {
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  text-decoration: none;
}

@media (max-width: 980px) {
  :root { --gutter: 24px; }
  .v2nav-i { height: auto; padding-top: 14px; padding-bottom: 14px; }
  .v2nav-panel .v2nav-ul { flex-direction: column; gap: 10px; }
  .v2h-i { grid-template-columns: 1fr; }
  .v2cards { grid-template-columns: 1fr; }
  .v2ft-contact { align-items: flex-start; }
}

@media (min-width: 981px) {
  .v2nav-summary { display: none; }
  .v2nav-panel {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .v2nav-details:not([open]) .v2nav-panel { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
