@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --ink: #302b26;
  --cream: #f5f1e9;
  --paper: #fbfaf7;
  --sand: #d8c9b4;
  --brown: #75614c;
  --brown-dark: #4b3d31;
  --line: rgba(75, 61, 49, .22);
  --shadow: 0 18px 42px rgba(42, 34, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.75;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    url("../images/hero.jpg") center 42% / cover no-repeat;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,17,14,.32), rgba(20,17,14,.55)),
    radial-gradient(circle at center, transparent 0 25%, rgba(20,17,14,.32) 100%);
}
.hero__content {
  width: min(900px, 100%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.eyebrow {
  margin: 0 0 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--brown); }
h1, h2, h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}
h2 {
  margin-bottom: 28px;
  color: var(--brown-dark);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.hero__status {
  margin: 0 0 30px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .05em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  font-weight: 600;
  transition: .2s ease;
}
.button--light { color: #fff; background: rgba(255,255,255,.08); }
.button:hover { transform: translateY(-2px); background: #fff; color: var(--brown-dark); }

.section { padding: clamp(72px, 10vw, 135px) 24px; }
.section__inner { width: min(1180px, 100%); margin: 0 auto; }
.section__inner--narrow { width: min(1020px, 100%); }
.intro { text-align: center; background: var(--paper); }
.intro .lead {
  margin: 0 auto 20px;
  max-width: 850px;
  color: #4d463f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
}
.intro p:not(.eyebrow):not(.lead) { max-width: 800px; margin-left: auto; margin-right: auto; }

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 26px);
  margin: 0 0 clamp(60px, 8vw, 95px);
}
.image-row figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.image-row figure:nth-child(2) { transform: translateY(28px); }
.image-row img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.image-row figure:hover img { transform: scale(1.035); }

.announcement {
  width: min(640px, 100%);
  margin: 58px auto 0;
  padding: 34px 30px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.announcement__star {
  display: block;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 1.3rem;
}
.announcement h3 { margin: 0; color: var(--brown-dark); }

.contact {
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(75,61,49,.08);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 45px;
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.48);
  text-align: left;
  text-decoration: none;
  transition: .2s ease;
}
.contact-card:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow); }
.contact-card__icon { color: var(--brown); font-size: 2rem; }
.contact-card strong {
  display: block;
  color: var(--brown-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.1;
}
.contact-card small { display: block; margin-top: 8px; font-size: .85rem; }

.footer {
  padding: 29px 24px;
  color: rgba(255,255,255,.78);
  background: #302923;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .09em;
}
.footer p { margin: 0; }
.footer span { margin: 0 .5rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }

.cookie {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  color: #fff;
  background: rgba(38,32,27,.96);
  box-shadow: 0 -8px 25px rgba(0,0,0,.15);
  font-size: .76rem;
}
.cookie p { margin: 0; }
.cookie a { text-underline-offset: 2px; }
.cookie button {
  flex: 0 0 auto;
  min-width: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.cookie[hidden] { display: none; }

.legal {
  min-height: 100vh;
  padding: 70px 24px;
  background: var(--paper);
}
.legal__inner { width: min(820px, 100%); margin: auto; }
.legal h1 { color: var(--brown-dark); font-size: clamp(2.8rem, 7vw, 5rem); }
.backlink { display: inline-block; margin-bottom: 35px; color: var(--brown); }

@media (max-width: 760px) {
  .hero { min-height: 78vh; }
  .image-row { grid-template-columns: 1fr; }
  .image-row figure:nth-child(2) { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { justify-content: flex-start; }
  .cookie { align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { padding-inline: 18px; }
  .section { padding-inline: 18px; }
  .cookie { gap: 10px; padding-inline: 12px; }
  .cookie p { line-height: 1.45; }
}
