@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --sage: #7a9478;
  --sage-light: #c8d9c5;
  --sage-dark: #3e5c3d;
  --cream: #f5f0e8;
  --text: #2e2a25;
  --text-muted: #6b6460;
  --stone: #8c8378;
  --stone-dark: #4a4540;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text);
}

.page {
  max-width: 960px;
  height: 100vh;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  flex-direction: column;
}

.hero {
  padding: 5rem 0 5rem;
  opacity: 0;
  animation: fadeUp .8s ease .1s forwards;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--stone-dark);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  padding-left: 0.25rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sage-light);
}

.divider-icon {
  color: var(--sage);
}

.contact {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}

.contact-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(122,148,120,.08);
  border: 1px solid var(--sage-light);
  border-radius: 14px;
  padding: 2rem;
  transition: .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
}

.contact-card .icon { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: var(--sage-light); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 1rem; 
}

.contact-card .icon svg { 
  width: 18px; 
  height: 18px; 
  stroke: var(--sage-dark); 
  fill: none; 
  stroke-width: 1.6; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
  flex-shrink: 0; 
}

.contact-card .type {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: .5rem;
}

.contact-card .value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--stone-dark);
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.address-card {
  background: var(--sage-dark);
  border-radius: 14px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.address-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: .75rem;
}

.address-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  padding: .85rem 1.4rem;
  border-radius: 999px;

  color: var(--cream);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);

  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;

  transition: background .2s ease;
}


footer {
  border-top: 1px solid var(--sage-light);
  padding: 1.5rem 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: .8rem;
  color: var(--stone);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  html,
  body {
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100vh;
  }

  .hero {
    padding: 4rem 0 2rem;
  }

  .contact {
    display: block;
    padding-bottom: 3rem;
  }

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

  .address-card {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
  }
}