:root {
  color-scheme: light;
  --background: #fffdf7;
  --surface: #ffffff;
  --surface-alt: #fff5bf;
  --text: #111111;
  --muted: #555555;
  --border: rgba(17, 17, 17, 0.1);
  --accent: #f2c300;
  --accent-strong: #ddb100;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fffef9 0%, #fff8d8 100%);
  color: var(--text);
}

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

iframe {
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  flex-wrap: nowrap;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 22;
  min-width: 0;
}

.site-menu {
  position: relative;
  z-index: 41;
  margin-left: auto;
  flex-shrink: 0;
}

.site-menu summary {
  list-style: none;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.menu-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: min(18rem, calc(100vw - 2rem));
  z-index: 42;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-menu[open] .main-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  font-size: 1rem;
}

.main-nav-title {
  display: none;
}

.main-nav a:hover {
  background: rgba(242, 195, 0, 0.14);
  color: var(--text);
}

.site-menu[open] .menu-toggle {
  background: var(--accent);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.38) 48%, rgba(17, 17, 17, 0.24) 100%), url("true_jpg_conversion-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  transform-origin: center;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.hero-copy,
.info-card,
.contacts-card,
.contact-person,
.map-frame,
.location-copy {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 3vw, 3rem);
  max-width: 680px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: var(--radius-lg);
  margin-left: -4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.16);
  color: #7a6100;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p,
dl,
dd,
dt {
  margin: 0;
}

h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.lead {
  margin-top: 1.4rem;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.button-secondary {
  background: var(--accent);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--accent-strong);
}

.highlights,
.pricing,
.location,
.company {
  padding: 1rem 0 3rem;
}

.section-heading {
  max-width: 60rem;
}

.section-heading h2,
.location-copy h2,
.contacts-heading h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p,
.location-copy p,
.contacts-heading p,
.info-card p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.info-card h3 {
  font-size: 1.15rem;
}

.info-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.info-list li + li {
  margin-top: 0.35rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.price-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.price-table thead {
  background: #111111;
  color: #ffffff;
}

.price-table th,
.price-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.price-table th {
  font-size: 0.95rem;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(242, 195, 0, 0.12);
}

.price-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.92);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
}

.location-copy {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.detail-list div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
}

.detail-list span,
.company-details dt {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6d5a00;
}

.detail-list strong,
.company-details dd {
  font-size: 1.02rem;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f0f0f0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.contacts-card {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 216, 0.92) 100%);
  color: var(--text);
  border-radius: var(--radius-lg);
}

.contacts-heading {
  max-width: 44rem;
}

.contacts-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.contacts-heading p {
  color: var(--muted);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-person {
  display: grid;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: transparent;
}

.contact-photo {
  overflow: hidden;
  width: min(100%, 220px);
  min-height: 180px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(242, 195, 0, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
}

.contact-details div {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.contact-details span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7a6100;
}

.contact-details strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.02rem;
  color: var(--text);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid,
  .location-grid,
  .contacts-grid,
  .pricing-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-actions,
  .footer-inner {
    align-items: flex-start;
  }

  .header-inner {
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .brand {
    font-size: 1rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .site-menu {
    position: static;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    min-width: 0;
    align-items: stretch;
    padding: 5.75rem 1rem 1.5rem;
    justify-content: flex-start;
    gap: 0.85rem;
    border: 0;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: none;
    color: #ffffff;
    z-index: 100;
  }

  .main-nav-title {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
  }

  .main-nav a {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    color: #111111;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  .main-nav a:hover {
    background: #fff5bf;
    border-color: rgba(242, 195, 0, 0.35);
    color: #111111;
  }

  .site-menu[open] .menu-toggle {
    position: relative;
    z-index: 101;
    background: var(--accent);
    color: var(--text);
  }

  .hero-copy,
  .location-copy,
  .contacts-card,
  .contact-person,
  .info-card {
    padding: 1.35rem;
  }

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