:root {
  --bg: #3f3f3f;
  --dark: #2e2e2e;
  --text: #f3f3f3;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #f2d400;
  --button: #8b5b3c;
  --field: #ffffff;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

section {
  padding: 90px 0;
}

.container {
  width: 70%;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 1px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav {
  color: var(--text);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 87px;
  width: 87px;
  display: block;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle .menu-icon,
.menu-toggle .close-icon {
  font-size: 32px;
  line-height: 1;
  display: inline-block;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.is-open .menu-icon {
  display: none;
}

.menu-toggle.is-open .close-icon {
  display: inline-block;
  font-size: 34px;
}
.hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: var(--bg);
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-family: "Gruppo", sans-serif;
  font-size: 64px;
  letter-spacing: 8px;
  font-weight: 300;
  margin-bottom: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.address {
  background: var(--bg);
  padding-top: 40px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.address-info h2 {
  font-family: "Gruppo", sans-serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
}

.address-info p,
.address-line {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.address-line {
  white-space: nowrap;
}

.hours h4 {
  font-weight: 400;
  margin-bottom: 8px;
  padding-top: 20px;
}

.hours p {
  color: var(--muted);
  line-height: 1.2;
}

.address-map iframe {
  width: 100%;
  min-height: 360px;
  border: none;
  box-shadow: var(--shadow);
  display: block;
  height: 100%;
}

.contact {
  background: var(--bg);
  padding-top: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(260px, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-title h2 {
  font-family: "Gruppo", sans-serif;
  font-size: 48px;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 615px;
  justify-self: end;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: var(--field);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: var(--button);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  max-width: 220px;
  justify-self: center;
}

.form-message {
  min-height: 1.2em;
  font-size: 0.95rem;
  text-align: center;
  color: var(--muted);
}

.form-message.is-success {
  color: #9ad18b;
}

.form-message.is-error {
  color: #f0a4a4;
}

.site-footer {
  background: var(--bg);
  color: var(--text);
  padding: 50px 0 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--text);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.footer-email {
  color: var(--muted);
  letter-spacing: 0.5px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-inner {
    padding: 12px 0;
  }

  .logo img {
    height: 64px;
    width: 64px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 14px 20px;
    border-radius: 8px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    align-items: flex-end;
    text-align: right;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .nav-inner {
    align-items: center;
  }

  .nav-links {
    width: min(260px, 70vw);
  }

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

  .contact-form {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .address-line {
    white-space: normal;
  }

  .hero {
    min-height: 40vh;
  }

  .address {
    padding-top: 0;
  }

  .address-map {
    min-height: 320px;
    height: 320px;
  }

  .address-map iframe {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }

  .container {
    width: 88%;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }

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

  .footer-content {
    align-items: center;
  }
}
