/* =========================
   RESET + VARIABLES
========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #f2f1ef;
  --paper-dark: #e8e4df;
  --field: #e5e2de;
  --tan: #c6a49a;
  --mauve: #d68189;
  --hot-pink: #e94e77;
  --dark: #1f1c1a;
  --mid: #55504a;
  --white: #ffffff;
  --icon: #8a8784;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--dark);
  background: var(--paper);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  background: var(--white);
}

.nav-logo img {
  height: 62px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  display: inline-block;
  padding: 12px 22px;
  min-width: 96px;
  border-radius: 10px;
  background: var(--mauve);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover,
.nav-btn.active {
  background: var(--hot-pink);
}

.nav-btn:hover {
  transform: translateY(-1px);
}

/* =========================
   MAP
========================= */
.map-section {
  width: 100%;
  background: #ddd;
}

.map-section iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-wrapper {
  max-width: 1220px;
  margin: 0 auto;
  padding: 56px 32px 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 360px);
  gap: 84px;
  align-items: start;
}

.form-column h2,
.info-column h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
}

.form-row.align-start {
  align-items: start;
}

.form-row > label:first-child {
  font-size: 16px;
  color: var(--dark);
  padding-top: 4px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--field);
  color: var(--dark);
  font: inherit;
  padding: 12px 14px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  height: 46px;
}

textarea {
  resize: vertical;
  min-height: 86px;
}

.options-inline,
.options-stack {
  display: flex;
}

.options-inline {
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.options-stack {
  flex-direction: column;
  gap: 4px;
}

.option-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
}

.option-item input {
  accent-color: var(--hot-pink);
}

.form-actions {
  padding-left: 110px;
  margin-top: 8px;
}

.send-btn {
  border: 0;
  border-radius: 10px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 20px;
  min-width: 86px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.send-btn:hover {
  background: var(--mauve);
  transform: translateY(-1px);
}

/* =========================
   CONTACT INFO
========================= */
.info-column {
  padding-top: 2px;
}

.hq-address {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-meta p {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
}

.contact-meta span {
  min-width: 52px;
  font-weight: 700;
}

.contact-meta a:hover {
  color: var(--hot-pink);
}

.social-icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: transparent;
}

.social-icons svg {
  width: 30px;
  height: 30px;
  fill: var(--icon);
  transition: fill 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover svg {
  fill: var(--hot-pink);
  transform: translateY(-1px);
}

/* =========================
   THANK YOU PAGE
========================= */
.thankyou-page {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
}

.thankyou-card {
  width: min(100%, 720px);
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: 18px;
  padding: 52px 32px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.thankyou-card img {
  width: 84px;
  margin: 0 auto 18px;
}

.thankyou-card h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.thankyou-card p {
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 24px;
}

.return-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.return-links a {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--mauve);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.return-links a:hover {
  background: var(--hot-pink);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 30px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-info p,
.footer-right p {
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

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

@media (max-width: 700px) {
  .map-section iframe {
    height: 280px;
  }

  .contact-wrapper {
    padding: 32px 20px 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-actions {
    padding-left: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
  }
}
