* {
  box-sizing: border-box;
}

:root {
  --green: #071d18;
  --green2: #103a2e;
  --gold: #c8a96a;
  --cream: #f7f1e7;
  --white: #fffaf1;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--cream);
  background: var(--green);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url('images/floralcode-kiosk.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 16, 13, 0.94) 0%, rgba(3, 16, 13, 0.78) 42%, rgba(3, 16, 13, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 16, 13, 0.52), rgba(3, 16, 13, 0.76));
}

.nav {
  position: absolute;
  top: 32px;
  left: 44px;
  right: 44px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.96;
}

.nav__link {
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(200,169,106,0.75);
  padding: 12px 22px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 120px);
  padding-top: 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  color: rgba(255,250,241,0.88);
  font-weight: 300;
}

.line {
  width: 160px;
  height: 1px;
  background: var(--gold);
  margin: 38px 0 24px;
}

.tagline {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.intro {
  background: var(--cream);
  color: var(--green);
  padding: clamp(70px, 10vw, 130px) 24px;
}

.intro__inner {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.dark {
  color: var(--gold);
}

.intro h2, .contact h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 28px;
}

.intro p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(7,29,24,0.78);
  margin: 16px auto;
  max-width: 780px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #09251e;
  border-top: 1px solid rgba(200,169,106,0.24);
  border-bottom: 1px solid rgba(200,169,106,0.24);
}

.value {
  padding: clamp(38px, 5vw, 70px);
  border-right: 1px solid rgba(200,169,106,0.22);
}

.value:last-child {
  border-right: none;
}

.value span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
}

.value h3 {
  margin-top: 22px;
  font-size: 34px;
}

.value p {
  color: rgba(255,250,241,0.76);
  line-height: 1.75;
}

.contact {
  background: var(--cream);
  color: var(--green);
  text-align: center;
  padding: clamp(70px, 10vw, 120px) 24px;
}

.contact__grid {
  margin: 36px auto 0;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact__grid a {
  color: var(--green);
  text-decoration: none;
  border: 1px solid rgba(7,29,24,0.18);
  padding: 18px 16px;
  border-radius: 2px;
  background: rgba(255,255,255,0.32);
}

.contact__grid a:hover {
  border-color: var(--gold);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 44px;
  background: var(--green);
  color: rgba(255,250,241,0.68);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .nav {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .nav__logo {
    width: 94px;
    height: 94px;
  }

  .nav__link {
    padding: 10px 14px;
    font-size: 10px;
  }

  .hero__content {
    margin-left: 24px;
    padding-top: 80px;
  }

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

  .value {
    border-right: none;
    border-bottom: 1px solid rgba(200,169,106,0.22);
  }

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

  footer {
    flex-direction: column;
    padding: 24px;
  }
}
