:root {
  --page-bg: #090807;
  --panel: #f7f0df;
  --panel-strong: #fffaf0;
  --ink: #241810;
  --muted: #695b49;
  --red: #9b2525;
  --gold: #bc8e37;
  --green: #1f4f43;
  --line: rgba(36, 24, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(188, 142, 55, 0.12) 22% 22.15%, transparent 22.15% 100%),
    linear-gradient(135deg, #090807 0%, #15100d 52%, #090807 100%);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  border: 0;
  padding: 10px 14px;
  background: #ffffff;
  color: #000000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 40px);
  color: #f8efe1;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header a,
.site-header button {
  text-decoration: none;
}

.header-kicker {
  color: var(--gold);
}

.header-contact {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(248, 239, 225, 0.86);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.header-contact:hover {
  color: #ffffff;
}

.hero {
  display: grid;
  min-height: clamp(500px, calc(100svh - 150px), 620px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(31, 79, 67, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(188, 142, 55, 0.12), transparent 34%),
    var(--panel);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--green);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-title {
  max-width: 718px;
  margin: 0;
}

.hero-logo {
  display: block;
  width: min(100%, 718px);
  height: auto;
}

.hero-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  color: var(--ink);
}

.services-section {
  display: grid;
  gap: 34px;
  padding: clamp(36px, 6vw, 68px);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  align-items: end;
  gap: 28px;
}

.section-intro h2,
.contact-section h2 {
  margin: 0;
  color: var(--red);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 28px 26px 0 0;
  border-right: 1px solid var(--line);
}

.service-list article + article {
  padding-left: 26px;
}

.service-list article:last-child {
  border-right: 0;
}

.service-list span {
  color: var(--gold);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.service-list h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

.service-list p,
.royalty-line {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.royalty-line {
  max-width: 720px;
  padding-top: 2px;
  font-style: italic;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(34px, 6vw, 68px);
  background: #111d1a;
  color: #fff8ec;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section h2 {
  color: #ffffff;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-links,
.contact-form {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-links {
  max-width: 360px;
  font-style: normal;
}

.contact-links strong {
  color: #ffffff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.contact-links .contact-role {
  margin-bottom: 14px;
  color: rgba(255, 248, 236, 0.7);
}

.contact-links .contact-detail {
  color: #fff8ec;
  cursor: text;
  user-select: text;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  font-style: normal;
}

.contact-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff8ec;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.contact-status.is-hidden {
  display: none;
}

.contact-status.is-success {
  background: rgba(31, 79, 67, 0.62);
  border-color: rgba(188, 142, 55, 0.48);
}

.contact-status.is-error {
  background: rgba(155, 37, 37, 0.45);
  border-color: rgba(255, 248, 236, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 236, 0.78);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 11px 12px;
  background: rgba(255, 248, 236, 0.96);
  color: var(--ink);
  font: 16px "Lora", Georgia, serif;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.form-message,
.turnstile-field,
.contact-form button {
  grid-column: 1 / -1;
}

.turnstile-field {
  min-height: 65px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 40px);
  color: rgba(255, 248, 236, 0.72);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .section-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .service-list article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .services-section,
  .contact-section {
    padding: 30px 20px;
  }

  .logo-title {
    max-width: min(100%, 350px);
  }

  .hero-logo {
    width: min(100%, 350px);
  }

  .hero-lede,
  .hero .eyebrow,
  .hero-actions {
    max-width: min(100%, 340px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section-intro h2,
  .contact-section h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .service-list h3 {
    margin-top: 10px;
  }

  address {
    padding: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-form button {
    justify-self: stretch;
  }
}
