:root {
  --ink: #1f2320;
  --ivory: #fffaf1;
  --leaf: #445b46;
  --tomato: #ba4a34;
  --blue: #315d73;
  --line: #dfd4c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 70px);
}

.brand,
nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--tomato);
  border-radius: 50%;
  color: var(--tomato);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  color: #70675f;
}

nav a.active,
nav a:hover {
  color: var(--tomato);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 620px);
  gap: 42px;
  align-items: start;
  padding: 64px clamp(18px, 5vw, 70px) 76px;
}

.intro {
  position: sticky;
  top: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .88;
}

.intro p:last-child {
  max-width: 540px;
  color: #625950;
  font-size: 19px;
  line-height: 1.65;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(31, 35, 32, .1);
}

label {
  display: grid;
  gap: 8px;
  color: #4f4841;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7cbb9;
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

button {
  grid-column: 1 / -1;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: var(--tomato);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #963a29;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.details article {
  min-height: 190px;
  padding: 30px clamp(18px, 4vw, 46px);
  background: var(--leaf);
  color: var(--ivory);
}

.details span {
  color: #f0c36f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.details p {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.map-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(90deg, rgba(49, 93, 115, .92), rgba(68, 91, 70, .76)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.map-panel div {
  display: grid;
  width: min(100%, 420px);
  min-height: 210px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, .65);
  border-radius: 8px;
  color: var(--ivory);
  text-align: center;
  background: rgba(31, 35, 32, .34);
  backdrop-filter: blur(10px);
}

.map-panel p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 86px;
  line-height: .8;
}

.map-panel span {
  align-self: start;
  font-weight: 700;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .contact-hero,
  .booking-form,
  .details {
    grid-template-columns: 1fr;
  }

  .intro {
    position: static;
  }
}
