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

body {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #fff8ec;
  color: #102033;
}

.navbar {
  height: 72px;
  padding: 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 236, 0.96);
  border-bottom: 1px solid rgba(197, 132, 32, 0.24);
}

.logo {
  color: #c98420;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo span {
  color: #102033;
}

/* PUSH NAV TO RIGHT */
nav {
  display: flex;
  gap: 56px;
  margin-left: auto;
  margin-right: 26px;
}

nav a {
  color: #102033;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 27px 0;
  transition: 0.3s ease;
}

nav a.active,
nav a:hover {
  color: #c98420;
  border-bottom: 3px solid #c98420;
}

/* THEME TOGGLE */
.theme-switch {
  width: 74px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3c56d, #df9e29);
  border: 1px solid rgba(201, 132, 32, 0.35);
  transition: all 0.4s ease;
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.04),
    0 0 14px rgba(35, 140, 255, 0.12);
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdf7, #ffe6ad);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(36px);
  transition:
    transform 0.4s ease,
    background 0.4s ease;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.28),
    inset 0 1px 2px rgba(255,255,255,0.7);
}

.icon-toggle {
  position: absolute;
  font-size: 15px;
  transition: all 0.35s ease;
}

.sun {
  color: #f4a100;
  opacity: 1;
  transform: translateY(0);
}

.moon {
  color: #16345f;
  opacity: 0;
  transform: translateY(-10px);
}

.hero {
  min-height: 450px;
  padding-top: 88px;
  height: 300px;

  background-image:
    linear-gradient(
      90deg,
      rgba(255,248,236,.96),
      rgba(255,248,236,.68),
      rgba(255,248,236,.18)
    ),
    url("../assets/images/hero_3_light.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: max(1920px, 100%) auto;
  background-color: #fff8ec;

  transition: background 0.4s ease;
}

.hero-text {
  max-width: 620px;
  margin-left: 72px;
}

.hero-text h1 {
  font-size: 66px;
  font-weight: 400;
}

.hero-text h1 span {
  color: #c98420;
}

.accent-line {
  width: 42px;
  height: 3px;
  background: #c98420;
  margin: 18px 0;
}

.hero-text p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: #39485c;
}

.contact-page {
  padding: 24px 46px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  gap: 20px;
}

.panel {
  background: linear-gradient(180deg, #fffdf8, #f6ead8);
  border: 1px solid rgba(201,132,32,.18);
  border-radius: 6px;
  padding: 30px;
}

.panel h2 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 28px;
}

.panel h2::first-letter,
.icon,
.building {
  color: #c98420;
}

.info-block {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,132,32,.16);
}

.info-block:last-child {
  border-bottom: 0;
}

.icon {
  font-size: 28px;
}

.info-block h3,
.address h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #102033;
}

.info-block a,
.info-block p {
  color: #b87316;
  text-decoration: none;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201,132,32,.3);
  background: rgba(201,132,32,.08);
  color: #b87316;
}

form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #39485c;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(201,132,32,.22);
  border-radius: 5px;
  color: #102033;
  font: inherit;
  padding: 15px 17px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #c98420;
  box-shadow: 0 0 0 3px rgba(201,132,32,.12);
}

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

.contact-submit {
  width: fit-content;
  border: 0;
  border-radius: 5px;
  background: #c98420;
  color: white;
  padding: 15px 24px;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(201,132,32,.25);
}

.map {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(201,132,32,.18);
  margin: 1.5rem 0;
  background: #f6ead8;
}

.map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1150px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .navbar {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .hero-text {
    margin: 0 28px;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .contact-page {
    padding: 24px;
  }
}