:root {
  --bg: #f2eee4;
  --card: #f7f4eb;
  --text: #2f2a24;
  --muted: #6b645a;
  --olive: #8b8650;
  --olive-dark: #6f6a3e;
  --line: #ddd4c3;
  --shadow: 0 18px 45px rgba(30, 22, 10, 0.18);
}

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

body {
  min-height: 100vh;
  font-family: "Lora", serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 20%, #f8f6ef 0%, #f2eee4 38%, #ece6d8 100%);
  padding: 20px 12px;
}

.call-overlay[hidden] {
  display: none;
}

.call-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 16px;
}

.call-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 9, 0.64);
}

.call-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border: 1px solid #d7c8a9;
  border-radius: 14px;
  padding: 18px 16px 16px;
  background: #fbf6ea;
  box-shadow: 0 16px 44px rgba(34, 23, 11, 0.28);
}

.call-overlay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #cfbe9b;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  background: #f6ecd8;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.call-overlay-eyebrow {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.call-overlay-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 8vw, 2.45rem);
  line-height: 0.95;
  margin-bottom: 8px;
}

.call-overlay-copy {
  color: #4b4338;
  line-height: 1.5;
  margin-bottom: 14px;
}

.call-overlay-actions {
  display: grid;
  gap: 8px;
}

.call-overlay-primary,
.call-overlay-secondary {
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.call-overlay-primary {
  border: 1px solid var(--olive);
  background: var(--olive);
  color: #f8f3e5;
  font-weight: 600;
}

.call-overlay-primary:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.call-overlay-secondary {
  border: 1px solid #ccb991;
  background: #f5ead3;
  color: #3d3429;
}

.call-overlay-secondary:hover {
  background: #efdfbf;
}

.site {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid #e4ddcf;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  padding: 16px 16px 16px 120px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 235, 0.95);
}

.brand-link {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
}

.nav {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  color: #413a31;
  font-size: 0.95rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.nav a {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  padding: 6px 10px;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 1px;
  background: var(--olive-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: #ece2ca;
  color: #302a22;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a:active {
  transform: translateY(0) scale(0.98);
}

.main {
  display: grid;
  gap: 16px;
  padding: 18px 16px 24px;
}

.contact-form-section {
  border: 1px solid #d8cab0;
  border-radius: 12px;
  padding: 14px;
  background: #fbf7ef;
}

.contact-form-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  margin-bottom: 4px;
}

.contact-form-sub {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-form-grid {
  display: grid;
  gap: 10px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field span {
  font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  border: 1px solid #cdbb9a;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #31281f;
  background: #fffdf8;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2px solid #b89d73;
  outline-offset: 1px;
}

.contact-form-actions {
  margin-top: 12px;
}

.contact-form-actions button {
  border: 1px solid var(--olive);
  background: var(--olive);
  color: #f8f3e5;
  border-radius: 999px;
  padding: 10px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-actions button:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.contact-form-actions button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-form-status {
  margin-top: 10px;
  min-height: 1.2em;
  color: #4d4338;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contacts-layout {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.eyebrow {
  color: var(--muted);
  margin-bottom: 4px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.95;
}

.contacts-card {
  border: 1px solid #d8cab0;
  border-radius: 12px;
  padding: 14px;
  background: #fbf7ef;
  display: grid;
  gap: 10px;
}

.contacts-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.contacts-card a {
  color: #2f2a24;
}

.map-card {
  border: 1px solid #d8cab0;
  border-radius: 12px;
  background: #fbf7ef;
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (min-width: 880px) {
  body {
    padding: 36px;
  }

  .call-overlay-panel {
    width: min(100%, 500px);
    padding: 22px 22px 20px;
  }

  .call-overlay-actions {
    grid-template-columns: 1fr 1fr;
  }

  .main {
    padding: 28px 32px 36px;
  }

  .topbar {
    justify-content: flex-end;
    padding: 20px 30px 20px 148px;
  }

  .brand-link {
    left: 30px;
  }

  .brand-logo {
    height: 64px;
  }

  .nav {
    justify-content: flex-end;
    width: auto;
    min-width: auto;
    overflow: visible;
    padding-bottom: 0;
    margin: 0 0 0 auto;
  }

  .contacts-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-field-full {
    grid-column: 1 / -1;
  }
}
