:root {
  color-scheme: light;
  --ink: #172b2a;
  --green: #183c39;
  --green-light: #2d5c56;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --gold: #e6a536;
  --gold-light: #f1c46f;
  --muted: #63706e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 2%, rgba(230, 165, 54, 0.12), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--green);
  padding: 8px 0 6px;
  font-size: 14px;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.header-link:hover {
  gap: 13px;
  color: var(--green-light);
}

.header-link svg {
  width: 17px;
}

.hero {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(52px, 7vw, 88px);
  padding: 42px 0 72px;
}

.hero-copy {
  position: relative;
  max-width: 690px;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0 0 19px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 630px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6.7vw, 92px);
  line-height: 0.97;
}

h1 em {
  display: block;
  color: var(--green);
  font-weight: 600;
}

.intro {
  max-width: 590px;
  margin-bottom: 30px;
  color: #44504f;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.67;
}

.intro strong {
  color: var(--ink);
  font-weight: 750;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 29px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  gap: 11px;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(24, 60, 57, 0.19);
  color: white;
}

.button-primary:hover {
  background: var(--green-light);
  box-shadow: 0 13px 30px rgba(24, 60, 57, 0.23);
}

.button-primary svg {
  width: 18px;
}

.button-secondary {
  border: 1px solid rgba(24, 60, 57, 0.32);
  color: var(--green);
}

.button-secondary:hover {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.42);
}

.location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.location svg {
  width: 18px;
  color: var(--gold);
}

.portrait-area {
  position: relative;
  justify-self: end;
  width: min(100%, 300px);
  margin-right: 8px;
  isolation: isolate;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.88;
  border: 4px solid rgba(255, 253, 248, 0.88);
  border-radius: 47% 47% 25% 25% / 35% 35% 18% 18%;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(24, 60, 57, 0.07);
  z-index: 2;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 60, 57, 0.06);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  transform: scale(1.04);
}

.portrait-accent {
  position: absolute;
  border-radius: 50%;
}

.portrait-accent-top {
  top: -16px;
  right: -14px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(230, 165, 54, 0.38);
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 8px,
      rgba(230, 165, 54, 0.1) 8px,
      rgba(230, 165, 54, 0.1) 9px
    );
  z-index: -1;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 82px);
  border-radius: 20px;
  background: var(--green);
  padding: clamp(42px, 5vw, 60px);
  color: var(--paper);
}

.contact-card .section-label {
  margin-bottom: 14px;
  color: var(--gold-light);
}

.contact-card h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(39px, 4.2vw, 58px);
  line-height: 1.05;
}

.email-list {
  min-width: 0;
}

.email-list > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  padding: 20px 0;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 650;
}

.email-list > a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.email-list > a:hover .email-arrow {
  transform: translateX(5px);
}

.email-list small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.email-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.email-icon svg {
  width: 18px;
}

.email-arrow {
  width: 20px;
  color: var(--gold-light);
  transition: transform 180ms ease;
}

footer {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 960px) {
  .page-shell {
    width: min(100% - 40px, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 56px 0 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .contact-actions,
  .location {
    justify-content: center;
  }

  h1,
  .intro {
    margin-right: auto;
    margin-left: auto;
  }

  .portrait-area {
    justify-self: center;
    width: min(54vw, 260px);
    margin-right: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-card h2 {
    max-width: 590px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 0;
    gap: 38px;
    padding: 40px 0 54px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(52px, 16vw, 70px);
  }

  .intro {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-bottom: 27px;
  }

  .button {
    width: 100%;
  }

  .portrait-area {
    width: min(64vw, 220px);
  }

  .portrait-accent-top {
    top: -12px;
    right: -8px;
    width: 60px;
    height: 60px;
  }

  .contact-card {
    gap: 30px;
    border-radius: 16px;
    padding: 34px 22px;
  }

  .contact-card h2 {
    font-size: 39px;
  }

  .email-list > a {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .email-arrow {
    display: none;
  }

  footer {
    min-height: 92px;
    flex-direction: column;
    gap: 6px;
  }

  .footer-dot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
