:root {
  --navy: #001d39;
  --navy-soft: #082949;
  --gold: #c99b3a;
  --gold-light: #f0d990;
  --ivory: #f8f3ec;
  --cream: #fffaf3;
  --green: #5a8731;
  --ink: #111b2d;
  --muted: #667085;
  --line: #e1cfaa;
  --shadow: 0 24px 60px rgba(0, 29, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(248, 243, 236, 0.94);
  border-bottom: 1px solid rgba(201, 155, 58, 0.28);
  backdrop-filter: blur(14px);
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.instagram-link {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--navy);
  line-height: 1;
  transform: translateY(-10px);
}

.instagram-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-call {
  grid-column: 3;
  justify-self: end;
  padding: 0 20px;
  color: var(--cream);
  background: var(--navy);
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(201, 155, 58, 0.25);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(255, 250, 243, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: calc(100vh - 82px);
  background: var(--navy);
}

.hero-media {
  order: 2;
  min-height: 520px;
  overflow: hidden;
}

.hero-media img {
  width: calc(100% + 100px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translateX(-100px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 82px);
  color: var(--cream);
}

.hero-logo {
  width: clamp(150px, 18vw, 220px);
  height: auto;
  margin-bottom: clamp(28px, 5vw, 46px);
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.3vw, 5rem);
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  max-width: 700px;
}

.trust-row span {
  position: relative;
  padding-left: 18px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-row span::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.intro-section,
.services-section,
.about-section,
.offer-section,
.reviews-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(22px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.62fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.intro-support {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.intro-image {
  width: min(100%, 330px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid #fffdfa;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 29, 57, 0.1);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 72%;
}

.intro-support p,
.contact-copy p,
.about-copy p {
  color: #344054;
  font-size: 1.1rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(0, 29, 57, 0.05);
}

.service-card p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
  background: #fffdfa;
}

.owner-photo {
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 29, 57, 0.1);
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.offer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  background: var(--navy);
}

.offer-section h2 {
  max-width: 900px;
  margin: 0;
  color: var(--cream);
}

.offer-section .button {
  flex: 0 0 auto;
  min-width: 196px;
  white-space: nowrap;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: end;
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
}

.reviews-section .section-heading {
  margin-bottom: 0;
}

.reviews-section p:last-child {
  margin: 0;
  color: #344054;
  font-size: 1.1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 32px;
  align-items: center;
  background: var(--cream);
}

.contact-panel {
  padding: 34px;
  color: var(--cream);
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel span {
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel a {
  display: block;
  margin: 4px 0 8px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.contact-panel p {
  margin: 0;
  color: #cde4b9;
  font-weight: 800;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--cream);
  background: var(--green);
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 29, 57, 0.24);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  background: var(--navy);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--cream);
  background: var(--navy);
}

.chat-header span,
.chat-form label {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-header strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.chat-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(255, 250, 243, 0.35);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-thread {
  padding: 18px 18px 0;
}

.chat-bubble {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.chat-bubble.bot {
  color: var(--navy);
  background: #f1e7d7;
}

.chat-form {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.chat-form label {
  color: var(--navy);
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
}

.chat-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 22px;
  color: rgba(255, 250, 243, 0.82);
  text-align: center;
  background: var(--navy);
}

.site-footer img {
  width: 140px;
  height: auto;
  border-radius: 4px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .offer-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .site-header.nav-open .header-call {
    display: inline-flex;
    justify-self: start;
  }

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

  .hero-media {
    order: 0;
    min-height: 38vh;
  }

  .hero-content {
    padding-top: 42px;
  }

  .intro-section,
  .about-section,
  .reviews-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-support {
    gap: 18px;
  }

  .intro-image {
    width: min(100%, 280px);
  }

  .offer-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-panel {
    padding: 26px 22px;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-toggle {
    min-width: 68px;
  }
}
