
:root {
  --ink: #172021;
  --muted: #5e6869;
  --paper: #f6f3ed;
  --line: rgba(23, 32, 33, 0.13);
  --orange: #f35f0e;
  --orange-dark: #dc4c00;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12)),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

main {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: -20rem;
  right: -9rem;
  background: rgba(243, 95, 14, 0.1);
}

.ambient-two {
  width: 25rem;
  height: 25rem;
  bottom: -17rem;
  left: -10rem;
  background: rgba(23, 32, 33, 0.06);
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.site-header {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(243, 95, 14, 0.17);
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243, 95, 14, 0.12);
}

.hero {
  padding: clamp(70px, 10vw, 138px) 0 clamp(68px, 8vw, 106px);
}

.eyebrow,
.card-label {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(46px, 8.1vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.intro {
  max-width: 745px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

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

.primary-button,
.secondary-button {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.primary-button {
  color: white;
  background: var(--orange);
  box-shadow: 0 15px 34px rgba(220, 76, 0, 0.2);
}

.primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(220, 76, 0, 0.26);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

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

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 40px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 80px rgba(23, 32, 33, 0.06);
  backdrop-filter: blur(10px);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.contact-card p:not(.card-label) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  font-style: normal;
  line-height: 1.45;
}

address a {
  margin-top: 4px;
  font-weight: 750;
  text-underline-offset: 4px;
  text-decoration-color: rgba(23, 32, 33, 0.25);
}

footer {
  min-height: 105px;
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer a {
  text-underline-offset: 4px;
  text-decoration-color: transparent;
}

footer a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 30px, 1180px);
  }

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

  .brand small {
    display: none;
  }

  .availability {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .hero {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .intro {
    margin-top: 30px;
  }

  .actions {
    display: grid;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 24px;
  }

  footer {
    min-height: 120px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
