:root {
  --bg: #f3efe8;
  --ink: #1d2b3a;
  --ink-soft: rgba(29, 43, 58, 0.72);
  --gold: #b39a73;
  --rule: rgba(29, 43, 58, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

.landing-page-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-shell {
  width: min(100%, 1200px);
  min-height: 100vh;
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-home {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}

.brand-mark {
  width: min(18vw, 190px);
  min-width: 140px;
  max-width: 190px;
}

.small-mark {
  width: min(7vw, 90px);
  min-width: 70px;
  max-width: 90px;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

.brand-mark text {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 108px;
  font-weight: 500;
  fill: var(--ink);
}

.small-mark text {
  font-size: 60px;
}

.brand-mark line {
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: square;
}

.brand-words {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name,
.brand-capital {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-name {
  font-size: clamp(2.7rem, 6vw, 7.8rem);
  font-weight: 500;
}

.brand-capital {
  position: relative;
  margin-top: 0.12em;
  font-size: clamp(1.5rem, 2.3vw, 3rem);
  letter-spacing: 0.18em;
  padding: 0 1.2rem;
}

.brand-capital::before,
.brand-capital::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: var(--rule);
}

.brand-capital::before { left: 0; }
.brand-capital::after { right: 0; }

.landing-nav,
.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.landing-nav {
  margin-top: 2.5rem;
}

.main-nav {
  gap: 1.8rem;
}

.landing-nav a,
.main-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.landing-nav a::after,
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.compact-brand {
  margin-bottom: 0.35rem;
}

.advisory-shell {
  padding-top: 1rem;
}

.advisory-main {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding-top: 4.5rem;
}

.section-header {
  margin-bottom: 1.2rem;
}

.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.advisory-intro {
  border-top: 1px solid var(--rule);
  padding-top: 1.8rem;
}

.advisory-intro h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
}

.intro-copy {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.activity-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

.activity-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.activity-number {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  color: var(--gold);
  letter-spacing: -0.05em;
}

.activity-body h2 {
  margin: 0 0 0.6rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 3vw, 3rem);
}

.activity-body p,
.contact-details address,
.contact-details p,
.footer-brand p,
.footer-brand a {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.enquiries-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 3rem;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.08);
  color: var(--ink);
  padding: 0.85rem 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.contact-form button {
  justify-self: start;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  padding: 0.9rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  border-color: var(--gold);
  background: rgba(179, 154, 115, 0.06);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.form-status.success {
  color: var(--ink);
}

.form-status.error {
  color: #7a2a2a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details a {
  color: var(--ink);
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-name {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.footer-tag,
.footer-location {
  margin: 0;
}

.footer-brand a {
  margin-top: 0.5rem;
  color: var(--ink);
}

.copyright {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .landing-shell,
  .page-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .landing-nav,
  .main-nav {
    gap: 1rem 1.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .activity-item,
  .enquiries-layout {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-capital::before,
  .brand-capital::after {
    width: 18%;
  }

  .contact-form button {
    width: 100%;
  }
}
