:root {
  --concept-ink: #253b43;
  --concept-cream: #eee8df;
  --concept-sand: #d3b891;
  --concept-line: rgba(37, 59, 67, 0.2);
  --concept-radius-xl: 28px;
  --concept-radius-lg: 22px;
  --concept-radius-md: 15px;
  --concept-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--concept-cream);
  color: var(--concept-ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

em {
  font-style: italic;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.concept-section-shell {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

/* Keep page panels, navigation, and footer on the same centered grid. */
main:not(.concept-home) > section {
  width: min(1240px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

main:not(.concept-home) > section > .concept-section-shell {
  width: 100%;
}

.concept-overline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dark-overline {
  color: #9b7750;
}

.concept-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 260ms var(--concept-ease), background 220ms var(--concept-ease), color 220ms var(--concept-ease),
    box-shadow 220ms var(--concept-ease);
}

.concept-button:hover {
  transform: translateY(-2px);
}

.concept-button-light {
  background: #fff;
  color: var(--concept-ink);
  box-shadow: 0 8px 22px rgba(9, 27, 33, 0.1);
}

.concept-button-light:hover {
  box-shadow: 0 12px 30px rgba(9, 27, 33, 0.18);
}

.concept-button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}

.concept-button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.concept-button-outline-dark {
  border: 1px solid rgba(37, 59, 67, 0.35);
  background: transparent;
  color: var(--concept-ink);
}

.concept-button-outline-dark:hover {
  background: rgba(37, 59, 67, 0.06);
}

.concept-button-dark {
  background: var(--concept-ink);
  color: #fff;
}

.concept-button-dark:hover {
  box-shadow: 0 10px 24px rgba(37, 59, 67, 0.2);
}

.concept-text-link {
  color: var(--concept-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.light-link {
  color: #fff;
}

.concept-nav-cta span,
.concept-button span,
.concept-text-link span {
  margin-left: 12px;
}

.concept-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  animation: concept-rise-in 800ms var(--concept-ease) 80ms both;
}

.concept-nav--overlay {
  position: relative;
  z-index: 1;
}

.concept-nav--bar {
  position: relative;
  z-index: 20;
  background: var(--concept-ink);
  width: 100%;
  max-width: none;
  padding: 22px max(48px, calc((100% - 1240px) / 2));
  border-radius: 0 0 var(--concept-radius-lg) var(--concept-radius-lg);
}

.concept-brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.35em;
  line-height: 1;
}

.concept-brand small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  letter-spacing: 0.34em;
}

.concept-nav-links,
.concept-nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.concept-nav-links a,
.concept-nav-actions a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.concept-nav-links a:hover,
.concept-nav-actions a:hover,
.concept-nav-links a.is-active {
  color: #fff;
}

.concept-nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 11px 17px;
  transition: background 220ms var(--concept-ease), border-color 220ms var(--concept-ease), color 220ms var(--concept-ease);
}

.concept-nav-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.concept-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.concept-nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform 220ms var(--concept-ease), opacity 220ms var(--concept-ease);
}

.concept-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.concept-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.concept-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.concept-mobile-menu {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding: 96px 32px 48px;
  color: #fff;
  background: var(--concept-ink);
}

.concept-mobile-menu[hidden] {
  display: none;
}

.concept-mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}

.concept-mobile-menu a.is-active {
  color: #fff;
}

.concept-mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.concept-mobile-menu-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  color: var(--concept-ink) !important;
}

.concept-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}

.concept-form-field label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #536368;
}

.concept-form-field input,
.concept-form-field textarea,
.concept-form-field select {
  border: 1px solid rgba(37, 59, 67, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  color: var(--concept-ink);
  background: #fff;
  width: 100%;
}

.concept-form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.concept-footer {
  width: 100%;
  margin: 0;
  padding: 76px 0 26px;
  color: #fff;
  background: #183642;
  border-radius: var(--concept-radius-xl) var(--concept-radius-xl) 0 0;
}

.concept-footer-top,
.concept-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.concept-footer-top {
  padding-bottom: 74px;
}

.concept-footer-brand {
  font-size: 17px;
}

.concept-footer-top p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.concept-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-footer-bottom div {
  display: flex;
  gap: 25px;
}

.concept-footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@keyframes concept-rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .concept-section-shell {
    width: min(100% - 48px, 680px);
  }

  main:not(.concept-home) > section {
    width: min(100% - 48px, 680px);
  }

  .concept-nav-links {
    display: none;
  }

  .concept-nav-actions {
    gap: 15px;
  }

  .concept-nav-toggle {
    display: flex;
  }

  .concept-nav--bar {
    padding: 18px 24px;
  }

  .concept-footer {
    padding: 60px 24px 25px;
  }

  .concept-footer-top,
  .concept-footer-bottom {
    display: block;
  }

  .concept-footer-top .concept-button {
    margin-top: 35px;
  }

  .concept-footer-bottom div {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .concept-nav-cta {
    padding: 9px 11px;
    font-size: 8px;
  }

  .concept-brand {
    font-size: 13px;
  }

  .concept-footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
