@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --forest-950: #041a12;
  --forest-900: #08291d;
  --forest-800: #104632;
  --forest-700: #196047;
  --forest-600: #2f795b;

  --gold-700: #946512;
  --gold-600: #b57b18;
  --gold-500: #d3a037;
  --gold-400: #e7c36b;
  --gold-300: #f0d893;
  --gold-200: #f7e7b8;

  --cream-50: #fffdf8;
  --cream-100: #faf6e9;
  --cream-200: #f2e8d1;

  --white: #ffffff;
  --text-dark: #17251e;
  --text: #38473f;
  --text-soft: #6b7771;
  --border: #dde5df;

  --shadow-sm: 0 10px 28px rgba(8, 41, 29, 0.08);
  --shadow-md: 0 18px 48px rgba(8, 41, 29, 0.12);
  --shadow-lg: 0 30px 80px rgba(4, 26, 18, 0.18);

  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;

  --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}


/* =========================================================
   SHARED
========================================================= */

.section {
  padding: 108px 20px;
}

.section-container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-label,
.eyebrow,
.panel-label {
  margin: 0 0 18px;

  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-heading h2,
.contact-intro h2,
.form-heading h2,
.hours-intro h2 {
  margin: 0;

  color: var(--forest-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.13;
  letter-spacing: -1.4px;
}

.center-heading > p:last-child {
  max-width: 710px;
  margin: 20px auto 0;

  color: var(--text-soft);
  font-size: 17px;
}

.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 15px 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius-pill);

  text-decoration: none;
  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.primary-btn {
  background:
    linear-gradient(
      135deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);

  box-shadow: 0 13px 30px rgba(181, 123, 24, 0.27);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(181, 123, 24, 0.36);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.32);

  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   NAVIGATION
========================================================= */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 41, 29, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 4px 22px rgba(8, 41, 29, 0.05);
}

.nav-container {
  width: min(calc(100% - 40px), var(--container));
  min-height: 80px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  text-decoration: none;
}

.brand-mark {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;

  box-shadow:
    0 10px 24px rgba(181, 123, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.13;
}

.brand-text strong {
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;

  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 23px;
}

.nav-links a {
  position: relative;

  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.nav-links > a:not(.nav-contact-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;

  height: 2px;
  background: var(--gold-500);

  transition: right 0.22s ease;
}

.nav-links > a:not(.nav-contact-btn):hover::after {
  right: 0;
}

.nav-contact-btn {
  padding: 11px 20px;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      135deg,
      var(--forest-800),
      var(--forest-600)
    );

  color: var(--white) !important;

  box-shadow: 0 8px 20px rgba(16, 70, 50, 0.21);
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
  min-height: 800px;
  padding: 105px 20px;
  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(211, 160, 55, 0.24),
      transparent 33%
    ),
    radial-gradient(
      circle at 88% 79%,
      rgba(247, 231, 184, 0.1),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-900) 48%,
      var(--forest-700)
    );

  color: var(--white);
}

.hero-pattern,
.final-cta-pattern {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );

  background-size: 68px 68px;
}

.hero-container {
  width: min(100%, var(--container));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: center;

  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  color: var(--gold-400);
}

.hero-content h1 {
  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.03;
  letter-spacing: -2.8px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold-200);
}

.hero-description {
  max-width: 680px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.final-actions {
  margin-top: 38px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-contact-panel {
  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);

  background: rgba(255, 255, 255, 0.09);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero-contact-panel .panel-label {
  color: var(--gold-300);
}

.hero-contact-panel h2 {
  margin: 0 0 25px;

  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.2;
}

.hero-contact-list {
  display: grid;
}

.hero-contact-list article {
  padding: 19px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-contact-list article:last-child {
  border-bottom: 0;
}

.hero-contact-list span {
  display: block;
  margin-bottom: 6px;

  color: var(--gold-300);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-contact-list a,
.hero-contact-list p {
  margin: 0;

  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}


/* =========================================================
   INQUIRY CATEGORY STRIP
========================================================= */

.contact-categories {
  position: relative;
  z-index: 10;

  margin-top: -42px;
  padding: 0 20px 35px;
}

.categories-grid {
  padding: 27px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid rgba(8, 41, 29, 0.1);
  border-radius: var(--radius-lg);

  background: var(--white);

  box-shadow: var(--shadow-lg);
}

.categories-grid article {
  padding: 10px 22px;

  display: flex;
  gap: 14px;
}

.categories-grid article + article {
  border-left: 1px solid var(--border);
}

.categories-grid article > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.categories-grid strong {
  display: block;

  color: var(--forest-900);
  font-size: 14px;
}

.categories-grid p {
  margin: 6px 0 0;

  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.55;
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--white)
    );
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 75px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 115px;
}

.contact-intro > p:not(.section-label) {
  color: var(--text-soft);
  font-size: 16px;
}

.contact-guidance {
  margin-top: 35px;

  display: grid;
  gap: 15px;
}

.contact-guidance article {
  padding: 22px;

  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--white);

  box-shadow: var(--shadow-sm);
}

.contact-guidance article > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.contact-guidance h3 {
  margin: 0 0 5px;

  color: var(--forest-900);
  font-size: 16px;
}

.contact-guidance p {
  margin: 0;

  color: var(--text-soft);
  font-size: 13px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-card {
  padding: 42px;

  border: 1px solid rgba(8, 41, 29, 0.1);
  border-radius: var(--radius-lg);

  background: var(--white);

  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 32px;
}

.form-heading h2 {
  font-size: 40px;
}

.form-heading > p:not(.section-label) {
  margin-bottom: 0;

  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 19px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--cream-50);
  color: var(--text-dark);

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group textarea {
  min-height: 170px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #909b95;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);

  box-shadow: 0 0 0 4px rgba(211, 160, 55, 0.13);
}

.form-consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 4px;

  accent-color: var(--forest-700);
}

.form-consent label {
  color: var(--text-soft);
  font-size: 12px;
}

.submit-btn {
  min-height: 56px;
  padding: 15px 29px;

  border: 0;
  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      135deg,
      var(--forest-800),
      var(--forest-600)
    );

  color: var(--white);
  font-weight: 800;

  box-shadow: 0 13px 30px rgba(16, 70, 50, 0.23);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 70, 50, 0.3);
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.direct-contact-section {
  background: var(--white);
}

.direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.direct-contact-card {
  padding: 31px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background:
    linear-gradient(
      180deg,
      var(--white),
      var(--cream-50)
    );

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.direct-contact-card:hover {
  transform: translateY(-6px);

  border-color: rgba(211, 160, 55, 0.5);
  box-shadow: var(--shadow-md);
}

.contact-number {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.direct-contact-card h3 {
  margin: 28px 0 9px;

  color: var(--forest-900);
  font-size: 21px;
}

.direct-contact-card p {
  color: var(--text-soft);
  font-size: 14px;
}

.direct-contact-card a,
.direct-contact-card address {
  color: var(--forest-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}


/* =========================================================
   BUSINESS HOURS
========================================================= */

.business-hours-section {
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(211, 160, 55, 0.17),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
}

.business-hours-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: start;
}

.hours-intro h2 {
  color: var(--white);
}

.hours-intro > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.hours-card {
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.07);
}

.hours-row {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;
  gap: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hours-row:first-child {
  padding-top: 0;
}

.hours-row span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.hours-row strong {
  color: var(--gold-200);
  font-size: 14px;
  text-align: right;
}

.hours-note {
  margin-top: 24px;
  padding: 22px;

  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.07);
}

.hours-note strong {
  color: var(--gold-200);
}

.hours-note p {
  margin: 7px 0 0;

  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}


/* =========================================================
   CONTACT FAQ
========================================================= */

.contact-faq-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--cream-100)
    );
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.faq-card {
  padding: 29px;

  border: 1px solid rgba(8, 41, 29, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.faq-card > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.faq-card h3 {
  margin: 23px 0 9px;

  color: var(--forest-900);
  font-size: 19px;
}

.faq-card p {
  margin: 0;

  color: var(--text-soft);
  font-size: 14px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  min-height: 570px;
  padding: 110px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(211, 160, 55, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
  text-align: center;
}

.final-cta-content {
  width: min(100%, 850px);

  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.07;
  letter-spacing: -2px;
}

.final-cta-content > p:not(.section-label) {
  margin: 23px auto 0;

  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.final-actions {
  justify-content: center;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #03150e;
  color: var(--white);
}

.footer-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 76px 0;

  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.9fr 0.72fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand strong,
.footer-links strong {
  display: block;

  color: var(--white);
  font-size: 16px;
}

.footer-brand p {
  margin: 9px 0 0;

  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-brand small {
  display: block;
  margin-top: 13px;

  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 13px;
}

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

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 23px 0 31px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-200);
  color: var(--forest-950);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .hero-container,
  .contact-grid,
  .business-hours-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-intro {
    position: static;
  }

  .hero-contact-panel {
    max-width: 720px;
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid article:nth-child(3) {
    border-left: 0;
  }

  .categories-grid article:nth-child(n + 3) {
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }

  .direct-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {
  .nav-container {
    padding: 14px 0;

    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;

    justify-content: flex-start;
    gap: 13px 20px;
  }

  .contact-hero {
    min-height: auto;
    padding: 90px 18px;
  }

  .categories-grid,
  .direct-contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid article + article,
  .categories-grid article:nth-child(3) {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-row strong {
    text-align: left;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {
  .section {
    padding: 78px 15px;
  }

  .nav-container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links a {
    font-size: 12px;
  }

  .contact-hero {
    padding: 75px 15px;
  }

  .hero-content h1 {
    font-size: 44px;
    letter-spacing: -1.6px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-contact-panel {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .hero-contact-panel h2 {
    font-size: 31px;
  }

  .center-heading h2,
  .contact-intro h2,
  .form-heading h2,
  .hours-intro h2 {
    font-size: 35px;
    letter-spacing: -0.8px;
  }

  .contact-form-card {
    padding: 29px 21px;
  }

  .contact-guidance article {
    grid-template-columns: 32px 1fr;
    padding: 20px;
  }

  .direct-contact-card,
  .faq-card,
  .hours-card {
    padding: 24px 21px;
  }

  .final-cta {
    min-height: 530px;
    padding: 85px 16px;
  }

  .final-cta h2 {
    font-size: 41px;
    letter-spacing: -1.2px;
  }

  .footer-container,
  .footer-bottom {
    width: min(calc(100% - 30px), var(--container));
  }

  .footer-container {
    padding: 58px 0;
  }
}