
:root {
  --ivory: #f3f0e9;
  --paper: #e8e3d9;
  --stone: #cbc4b7;
  --taupe: #9c9385;
  --brown: #5c5349;
  --charcoal: #292825;
  --dark: #1d1d1a;
  --white: #faf9f6;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}


/* ------------------------------
   Base
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}


/* ------------------------------
   Header
------------------------------ */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;

  color: var(--white);

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

.nav {
  min-height: 105px;

  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-mark {
  width: auto;
  min-width: 52px;
  height: 43px;

  padding: 0 9px;

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

  border: 1px solid currentColor;

  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;

  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.logo-text small {
  margin-top: 3px;

  font-family: var(--sans);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;

  opacity: 0.72;
}


/* ------------------------------
   Hero
------------------------------ */

.hero {
  min-height: 850px;

  position: relative;

  display: flex;
  align-items: center;

  color: var(--white);

  background-image: url("images/thomas-more.jpg");

  background-size: cover;
  background-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(24, 23, 20, 0.94) 0%,
      rgba(24, 23, 20, 0.82) 38%,
      rgba(24, 23, 20, 0.38) 70%,
      rgba(24, 23, 20, 0.18) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 105px;
}

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

  font-size: 11px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.23em;
}

.hero h1 {
  max-width: 850px;

  margin: 0;

  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 100px);
  line-height: 0.91;
  letter-spacing: -0.03em;

  font-weight: 500;
}

.hero h1 em {
  font-weight: 500;
}

.hero-description {
  max-width: 590px;

  margin: 38px 0 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;

  margin-top: 40px;
}

.button {
  display: inline-block;

  padding: 14px 24px;

  font-size: 12px;
  letter-spacing: 0.04em;
}

.button-light {
  background: var(--ivory);
  color: var(--charcoal);

  transition: 0.2s ease;
}

.button-light:hover {
  background: var(--white);
}


/* Portrait caption */

.hero-caption {
  position: absolute;

  right: 45px;
  bottom: 45px;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-caption span {
  font-family: var(--serif);
  font-size: 17px;
}

.hero-caption small {
  margin-top: 4px;

  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;

  opacity: 0.65;
}


/* ------------------------------
   Contact
------------------------------ */

.contact-section {
  padding: 135px 0;

  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 120px;

  align-items: start;
}

.contact-intro .section-label {
  color: var(--taupe);
}

.contact-intro h2 {
  margin: 0;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.025em;

  font-weight: 500;
}

.contact-intro h2 em {
  font-weight: 500;
}

.contact-information {
  padding-top: 42px;
}

.contact-lead {
  max-width: 530px;

  margin: 0 0 45px;

  color: var(--brown);

  font-size: 15px;
  line-height: 1.85;
}

.contact-block {
  padding: 25px 0;

  border-top: 1px solid var(--stone);
}

.contact-label {
  display: block;

  margin-bottom: 9px;

  color: var(--taupe);

  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.email-link {
  display: inline-block;

  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;

  border-bottom: 1px solid var(--brown);

  transition: opacity 0.2s ease;
}

.email-link:hover {
  opacity: 0.65;
}

.contact-block p {
  margin: 0;

  color: var(--brown);

  font-size: 14px;
  line-height: 1.7;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;

  margin-top: 32px;
  padding: 14px 22px;

  background: var(--charcoal);
  color: var(--white);

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  transition: 0.2s ease;
}

.contact-button span {
  font-size: 18px;
}

.contact-button:hover {
  background: var(--brown);
}


/* ------------------------------
   Footer
------------------------------ */

.footer {
  padding: 42px 0;

  background: var(--dark);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;

  line-height: 1.05;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.footer-brand small {
  margin-top: 4px;

  font-family: var(--sans);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;

  opacity: 0.6;
}

.copyright {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 900px) {

  .hero {
    min-height: 760px;

    background-position: 62% center;
  }

  .hero-overlay {
    background: rgba(25, 24, 21, 0.72);
  }

  .hero-caption {
    display: none;
  }

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

  .contact-information {
    padding-top: 0;
  }
}


@media (max-width: 600px) {

  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    min-height: 85px;
  }

  .logo-mark {
    min-width: 48px;
    height: 40px;

    padding: 0 7px;

    font-size: 11px;
  }

  .logo-text strong {
    font-size: 16px;
  }

  .logo-text small {
    font-size: 7px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .contact-section {
    padding: 95px 0;
  }

  .contact-intro h2 {
    font-size: 54px;
  }

  .email-link {
    font-size: 21px;
  }

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

  .copyright {
    text-align: left;
  }
}
