:root {
  --maroon: #7a1f2b;
  --maroon-deep: #5c1720;
  --gold: #b8862b;
  --gold-soft: #d4a94a;
  --cream: #faf5ec;
  --cream-warm: #f4ead6;
  --ink: #2a1f1a;
  --ink-soft: #6b5e54;
  --line: #e8dcc4;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
}

/* ── Announcement bar ── */
.announce {
  background: var(--maroon);
  color: #f0d2a6;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  letter-spacing: 0.5px;
}

/* ── Nav ── */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
}

.logo-main {
  font-size: 24px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--maroon);
  border-bottom: 1.5px solid var(--gold);
}

/* ── Page header ── */
.page-header {
  background: var(--cream-warm);
  padding: 60px 48px 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-header::before {
  left: calc(50% - 200px);
}

.page-header::after {
  right: calc(50% - 200px);
}

.page-header h1 {
  font-size: 54px;
  font-weight: 500;
  color: var(--maroon);
  letter-spacing: 1px;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--gold);
  margin: 0 8px;
}

/* ── Main content ── */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 48px;
}

.intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.intro h2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 14px;
  line-height: 1.15;
}

.intro p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ── Contact grid (2 col) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 70px;
}

/* Left: contact info */
.contact-info h3 {
  font-size: 28px;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--maroon);
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-text .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.info-text .value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}

.info-text .value a {
  color: inherit;
  text-decoration: none;
}

.info-text .sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.socials {
  margin-top: 28px;
}

.socials-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon);
  color: #f0d2a6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.social-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* Right: form */
.form-card {
  background: white;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(122, 31, 43, 0.06);
  border: 1px solid var(--line);
}

.form-card h3 {
  font-size: 28px;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 8px;
}

.form-card .form-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border 0.2s;
  font-weight: 300;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}

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

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--maroon);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--maroon-deep);
  letter-spacing: 4px;
}

/* ── Map section ── */
.map-section {
  margin-top: 20px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.map-header h3 {
  font-size: 34px;
  font-weight: 500;
  color: var(--maroon);
}

.map-header .addr {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
}

.map-header .addr strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 340px;
  background: repeating-linear-gradient(45deg, #e0d4b8, #e0d4b8 10px, #e8dcc4 10px, #e8dcc4 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrap svg.mapnet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 42px;
  height: 42px;
  background: var(--maroon);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.map-pin::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-radius: 50%;
}

.map-label {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, 32px);
  background: white;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--maroon);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* ── Quick action row ── */
.quick-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-btn {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  cursor: pointer;
}

.quick-btn:hover {
  border-color: var(--gold);
  background: var(--cream-warm);
  transform: translateY(-2px);
}

.quick-btn .q-icon {
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: #f0d2a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-btn .q-icon svg {
  width: 20px;
  height: 20px;
}

.quick-btn .q-text .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.quick-btn .q-text .val {
  font-size: 15px;
  color: var(--ink);
  margin-top: 2px;
  font-weight: 400;
}

/* ── Footer ── */
footer {
  background: var(--maroon-deep);
  color: #e8d5b0;
  padding: 50px 48px 24px;
  margin-top: 80px;
}

.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot-brand .logo-main {
  color: #f0d2a6;
}

.foot-brand .logo-sub {
  color: #b89a75;
}

.foot-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: #c9a77c;
  max-width: 280px;
  line-height: 1.7;
}

.foot h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.foot ul {
  list-style: none;
}

.foot li {
  margin-bottom: 10px;
  font-size: 13px;
}

.foot a {
  color: #c9a77c;
  text-decoration: none;
  transition: color 0.2s;
}

.foot a:hover {
  color: #f0d2a6;
}

.foot-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid #4a1219;
  text-align: center;
  font-size: 12px;
  color: #a68762;
  letter-spacing: 1px;
}

/* ── Responsive ── */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

footer {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  main {
    padding: 40px 20px;
  }

  .page-header h1 {
    font-size: 40px;
  }

  .page-header::before,
  .page-header::after {
    display: none;
  }

  .quick-row {
    grid-template-columns: 1fr;
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr;
  }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .map-header .addr {
    text-align: left;
  }

  .foot a,
  .foot li {
    word-break: break-word;
  }

  .form-card {
    padding: 24px;
  }

  .row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 32px;
  }

  .intro h2 {
    font-size: 26px;
  }

  .map-header h3 {
    font-size: 26px;
  }

  .form-card h3,
  .contact-info h3 {
    font-size: 22px;
  }

  .foot-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}