:root {
  --forest: #103b2a;
  --forest-deep: #0a2d20;
  --forest-text: #173e2f;
  --gold: #c89a43;
  --cream: #f7f3eb;
  --paper: #fbf9f4;
  --ink: #1b211e;
  --muted: #5e655f;
  --line: rgba(23, 62, 47, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.site-nav, .section-inner, footer {
  width: min(1380px, calc(100% - 96px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 38px 0 92px;
  color: white;
  background:
    radial-gradient(circle at 77% 44%, rgba(255,255,255,.035), transparent 24%),
    linear-gradient(135deg, #12442f 0%, var(--forest) 45%, var(--forest-deep) 100%);
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .divider {
  display: block;
  width: 1px;
  height: 1.8em;
  background: var(--gold);
  flex: 0 0 auto;
}
.wordmark .brand-collective {
  position: relative;
  font-family: "Inter", Arial, sans-serif;
  font-size: .62em;
  font-weight: 500;
  letter-spacing: .32em;
}
.wordmark .brand-collective::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.62em;
  width: 3.4em;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  color: white;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 96px));
  margin: 100px auto 0;
  margin-left: max(48px, calc((100% - 1380px) / 2));
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.025em;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.gold-rule {
  width: 62px;
  height: 2px;
  margin: 28px 0;
  background: var(--gold);
}
.gold-rule.centered { margin-inline: auto; }

.hero-content p {
  max-width: 630px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}
.outline-button {
  display: inline-flex;
  gap: 42px;
  align-items: center;
  margin-top: 36px;
  padding: 17px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}
.outline-button:hover {
  color: var(--forest-deep);
  background: var(--gold);
}

.hero-decoration {
  position: absolute;
  top: 110px;
  right: -90px;
  width: 600px;
  height: 600px;
  opacity: .34;
}
.hero-decoration span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.hero-decoration span:nth-child(2) { transform: translateX(72px) scale(.82); }
.hero-decoration span:nth-child(3) { transform: translateX(145px) scale(.64); }

.philosophy, .capabilities, .contact { padding: 86px 0; }
.philosophy {
  text-align: center;
  background: var(--cream);
}
.section-inner.narrow { max-width: 820px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  color: var(--forest-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
}
.philosophy .section-inner > p:last-child {
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.75;
  color: #323934;
}

.capabilities {
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
}
.capability-card {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.capability-card:last-child { border-right: 0; }
.capability-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.capability-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.capability-card h3 {
  min-height: 45px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}
.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

.contact {
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 90px;
  align-items: start;
}
.contact-copy p {
  max-width: 390px;
  color: #424a44;
  line-height: 1.7;
}
.contact-form label {
  display: block;
  margin-bottom: 15px;
}
.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: #4a514c;
  font-size: .76rem;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input, textarea {
  width: 100%;
  border: 1px solid #d9d4ca;
  border-radius: 0;
  background: rgba(255,255,255,.55);
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  outline: none;
  padding: 14px 15px;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--gold); }
button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  gap: 36px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: white;
  cursor: pointer;
  padding: 16px 22px;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .2s ease;
}
button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-deep);
}
.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  padding: 38px max(48px, calc((100% - 1380px) / 2));
  color: rgba(255,255,255,.78);
  background: var(--forest-deep);
}
.footer-wordmark { font-size: clamp(1.9rem, 2.5vw, 2.55rem); }
.footer-brand p {
  margin: 18px 0 0;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: .76rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  transition: color .25s ease, transform .25s ease;
}

.footer-instagram:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-copyright {
  color: rgba(255, 255, 255, .75);
  font-size: .76rem;
}

@media (max-width: 1080px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 0; }
  .capability-card:nth-child(even) { border-right: 0; }
  .capability-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
}

@media (max-width: 760px) {
  .site-nav, .section-inner { width: min(100% - 40px, 1380px); }
  .hero { min-height: 700px; padding-top: 26px; }
  .site-nav { align-items: flex-start; }
  .wordmark { gap: 10px; font-size: 1.25rem; letter-spacing: .12em; }
  .nav-links { display: none; }
  .hero-content {
    width: calc(100% - 40px);
    margin: 94px 20px 0;
  }
  .hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-decoration { right: -340px; opacity: .25; }
  .philosophy, .capabilities, .contact { padding: 68px 0; }
  .capability-grid { grid-template-columns: 1fr; gap: 0; }
  .capability-card {
    padding: 32px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .capability-card:last-child {
    grid-column: auto;
    max-width: none;
    border-bottom: 0;
  }
  .capability-card h3 { min-height: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .two-column { grid-template-columns: 1fr; gap: 0; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 20px;
  }
  .footer-wordmark { font-size: 1.6rem; }
  .footer-links { justify-content: flex-start; }
}
/* Hidden spam-trap field; legitimate visitors will never see it. */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* Legal pages */
.legal-header {
  padding: 30px 0;
  color: white;
  background: linear-gradient(135deg, #12442f 0%, var(--forest) 55%, var(--forest-deep) 100%);
}
.legal-header .site-nav { width: min(1380px, calc(100% - 96px)); }
.legal-main { padding: 76px 0 90px; }
.legal-content {
  width: min(820px, calc(100% - 96px));
  margin-inline: auto;
}
.legal-content h1 {
  margin: 0 0 12px;
  color: var(--forest-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}
.legal-effective {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: .88rem;
}
.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 1.8rem;
  line-height: 1.2;
}
.legal-content p,
.legal-content li {
  color: #3f4741;
  font-size: .98rem;
  line-height: 1.75;
}
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--forest-text); }
.legal-back {
  display: inline-block;
  margin-top: 32px;
  color: var(--forest-text);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.legal-back:hover { color: var(--gold); }

@media (max-width: 760px) {
  .legal-header .site-nav,
  .legal-content { width: calc(100% - 40px); }
  .legal-main { padding: 58px 0 72px; }
}

.experience {
    padding: clamp(80px, 10vw, 130px) 0;
    background: #fff;
}

.experience-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: clamp(42px, 6vw, 70px);
}

.experience-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .82rem;
    font-weight: 600;
}

.experience-header h2 {
    margin: 0;
    color: var(--forest);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 6vw, 4.6rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.experience-photo {
    width: 100%;
}

.experience-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: cover;
    border-radius: 16px;
}

.experience-text {
    min-width: 0;
}

.experience-intro {
    margin: 0 0 30px;
    max-width: 620px;
    color: var(--green);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.5vw, 2.3rem);
    font-style: italic;
    line-height: 1.3;
}

.experience-text p:not(.experience-intro) {
    margin: 0 0 24px;
    color: #4b4b4b;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.8;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .experience-photo {
        max-width: 560px;
        margin: 0 auto;
    }

    .experience-text {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .experience-container {
        width: min(100% - 40px, 1180px);
    }

    .experience-header {
        text-align: left;
    }

    .experience-header h2 {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }

    .experience-photo img {
        border-radius: 12px;
    }

    .experience-intro {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .experience-text p:not(.experience-intro) {
        line-height: 1.7;
    }
}

.contact {
    background: var(--paper);
    padding: 7rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-copy h2 {
    margin: 0;
    color: var(--forest);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.02em;
}

.contact-intro {
    margin: 1.5rem 0 2.75rem;
    max-width: 24rem;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-label {
    margin: 0;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-phone {
    display: inline-block;
    margin: .35rem 0 1.4rem;
    color: var(--forest);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 500;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-phone:hover {
    color: var(--gold);
}

.contact-note-title {
    margin: 0;
    color: var(--forest);
    font-size: 1rem;
}

.contact-note-title strong {
    font-weight: 700;
}

.contact-note {
    margin-top: .3rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 22rem;
}

@media (max-width: 768px) {
    .experience {
        display: block;
        visibility: visible;
        opacity: 1;
        padding: 5rem 0;
    }

    .experience-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .experience-header {
        display: block;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .experience-image {
        display: block;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .experience-image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .experience-copy {
        display: block;
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal shifting and overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    /* Consistent mobile spacing */
    .section-inner,
    .experience-container,
    .contact-layout,
    .footer-inner {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }


    /* ==============================================
       EXPERIENCE
    ============================================== */

    .experience {
        display: block;
        width: 100%;
        padding: 72px 0;
        overflow: hidden;
    }

    .experience-container {
        display: block;
    }

    .experience-header {
        width: 100%;
        margin: 0 auto 40px;
        text-align: center;
    }

    .experience-kicker {
        margin: 0 0 14px;
        text-align: center;
    }

    .experience-header h2 {
        max-width: 620px;
        margin: 0 auto;
        font-size: clamp(3rem, 13vw, 4.25rem);
        line-height: 0.94;
        text-align: center;
    }

    .experience-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 42px;
        width: 100%;
    }

    .experience-photo {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .experience-photo img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .experience-text {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .experience-intro {
        max-width: 560px;
        margin: 0 0 34px;
        color: var(--forest);
        font-family: "Inter", Arial, sans-serif;
        font-size: clamp(1.55rem, 7vw, 2.05rem);
        font-style: normal;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .experience-text p:not(.experience-intro) {
        margin: 0 0 28px;
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .experience-text p:last-child {
        margin-bottom: 0;
    }

     .contact {
        width: 100%;
        padding: 72px 0;
        overflow: hidden;
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: start;
    }

    .contact-copy {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .contact-copy h2 {
        margin: 0;
        font-size: clamp(3.5rem, 15vw, 4.75rem);
        line-height: 0.9;
    }

    .contact-copy .gold-rule {
        margin-top: 28px;
        margin-bottom: 34px;
    }

    .contact-intro {
        max-width: 480px;
        margin: 0 0 38px;
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .contact-label {
        margin: 0 0 8px;
    }

    .contact-phone {
        display: inline-block;
        margin: 0 0 32px;
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.1;
        white-space: nowrap;
    }

    .contact-note-title {
        margin: 0 0 6px;
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .contact-note-title strong {
        font-weight: 700;
    }

    .contact-note {
        max-width: 460px;
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.6;
    }

      .contact-form {
        display: block;
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        padding: 0;
    }

    .contact-form .two-column {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-form label {
        display: block;
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .contact-form textarea {
        min-height: 190px;
    }

    .contact-form button {
        width: 100%;
        margin-top: 8px;
    }

  .site-footer,
    footer {
        width: 100%;
        overflow: hidden;
    }

    .site-footer .section-inner,
    footer .section-inner,
    .footer-inner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 430px) {

    .section-inner,
    .experience-container,
    .contact-layout,
    .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .experience {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .experience-header {
        margin-bottom: 34px;
    }

    .experience-grid {
        gap: 36px;
    }

    .experience-intro {
        font-size: 1.65rem;
    }

    .experience-text p:not(.experience-intro) {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .contact {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .contact-layout {
        gap: 42px;
    }
}

@media (max-width: 768px) {

    .contact-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
    }

    .contact-copy {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-phone {
        display: inline-block;
        white-space: nowrap;
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .contact-intro {
        max-width: 100%;
    }

    .contact-note {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
  .footer-right {
    width: 100%;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}