@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #131313;
  --white: #fff;
  --off-white: #f4f4f1;
  --gray: #a5a5a5;
  --line: #2b2b2b;
  --text: #171717;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, .97);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--white);
  line-height: 1;
}

.logo-main {
  display: block;
  font: 600 1.15rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: .08em;
}

.logo-sub {
  display: block;
  margin-top: 6px;
  color: #aaa;
  font-size: .48rem;
  letter-spacing: .28em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ddd;
  font-size: .88rem;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

/* HERO */
.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.86)),
    radial-gradient(circle at 72% 25%, #3a3a3a, #080808 58%);
}

.hero-content {
  padding: 100px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: #aaa;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
}

.eyebrow.dark {
  color: #666;
}

.hero h1 {
  max-width: 900px;
  font: 500 clamp(3rem, 8vw, 6.5rem)/1.02 "Playfair Display", Georgia, serif;
}

.hero h2 {
  margin-top: 22px;
  color: #d0d0d0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
}

.hero-text {
  max-width: 610px;
  margin-top: 22px;
  color: #bcbcbc;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--black);
  font-size: .86rem;
  font-weight: 600;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.btn-light {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-light:hover {
  background: #ddd;
}

.btn-outline {
  color: #fff;
  border-color: #777;
}

.btn-outline:hover {
  border-color: #fff;
}

.btn-dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn-dark:hover {
  background: #333;
}

/* SECTIONS */
.section {
  padding: 110px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.section h2 {
  font: 500 clamp(2.25rem, 5vw, 4rem)/1.15 "Playfair Display", Georgia, serif;
}

.body-copy p,
.section p {
  color: #555;
}

.body-copy p + p {
  margin-top: 20px;
}

.section-dark {
  color: #fff;
  background: var(--black);
}

.section-dark p {
  color: #aaa;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-width: 0;
  min-height: 270px;
  padding: 30px;
  background: var(--dark);
}

.card span {
  color: #777;
  font-size: .8rem;
}

.card h3 {
  margin: 55px 0 12px;
  font: 500 1.45rem/1.2 "Playfair Display", Georgia, serif;
}

.card p {
  font-size: .9rem;
}

.quote-section {
  padding: 100px 0;
  background: var(--off-white);
}

blockquote {
  max-width: 900px;
  font: 500 clamp(2rem, 5vw, 4rem)/1.25 "Playfair Display", Georgia, serif;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-item strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-item p {
  margin-top: 4px;
}

.contact-item a:hover {
  text-decoration: underline;
}

footer {
  background: var(--black);
  color: #888;
  font-size: .78rem;
}

.footer-inner {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* TABLET */
@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .nav-links {
    gap: 18px;
    font-size: .82rem;
  }

  .two-column {
    gap: 45px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    min-height: 240px;
  }
}

/* MOBILE NAV + LAYOUT */
@media (max-width: 700px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a0a;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 25px rgba(0,0,0,.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid #242424;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    padding: 75px 0;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .hero h2 {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-text {
    max-width: 100%;
    font-size: .98rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1 1 180px;
  }

  .section {
    padding: 75px 0;
  }

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

  .section h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
    padding: 26px;
  }

  .card h3 {
    margin-top: 32px;
  }

  .quote-section {
    padding: 70px 0;
  }

  blockquote {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .contact-details {
    gap: 24px;
  }

  .btn-dark {
    width: 100%;
  }

  .footer-inner {
    min-height: 0;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* SMALL PHONES */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 26px);
  }

  .logo-main {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: .42rem;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .eyebrow {
    font-size: .62rem;
    letter-spacing: .2em;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 65px 0;
  }

  .card {
    padding: 23px;
  }
}
