:root {
  --primary-teal: #1b6b6b;
  --dark-teal: #155050;
  --gold-accent: #c8952a;
  /* Same gold hue, lighter for 1px rules on white */
  --gold-accent-soft: rgba(200, 149, 42, 0.48);
  --bg: #ffffff;
  --light-gray: #f7f7f7;
  --body-text: #333333;
  --muted-text: #666666;
  --border-gray: #e6e6e6;
  --error-red: #d93025;

  --header-height: 84px;
  --section-padding-y: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--body-text);
  background: var(--bg);
}

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

img,
svg {
  display: block;
}

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

@media (min-width: 1280px) {
  .container {
    width: min(1200px, calc(100% - 2rem));
  }
  .section-heading {
    font-size: 1.7rem;
  }
}

.section {
  padding: var(--section-padding-y) 0;
}

@media (min-width: 480px) {
  .hero p {
    font-size: 1.08rem;
  }
}

/* Account for sticky header when jumping to anchors */
#services,
#why,
#about,
#service-area,
#contact {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gray);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
}

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

.brand-wordmark {
  width: 190px;
  height: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.phone a {
  color: var(--primary-teal);
  font-weight: 800;
}

.phone {
  font-weight: 700;
  color: var(--primary-teal);
  white-space: nowrap;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.05rem;
  border-radius: 0;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.btn-primary {
  background: var(--gold-accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(200, 149, 42, 0.18);
}
.btn-primary:hover {
  background: #b9851d;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(200, 149, 42, 0.22);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-teal);
  position: relative;
  padding: 0.35rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 180ms ease;
}
.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid var(--border-gray);
  background: #fff;
  cursor: pointer;
}

/* Hamburger -> X toggle driven by aria-expanded on the button */
.hamburger .icon-close {
  display: none;
}
.hamburger[aria-expanded="true"] .icon-hamburger {
  display: none;
}
.hamburger[aria-expanded="true"] .icon-close {
  display: block;
}
.hamburger:focus {
  outline: 2px solid rgba(27, 107, 107, 0.35);
  outline-offset: 2px;
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--header-height) + 1px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-gray);
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, max-height 260ms ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  max-height: 420px;
  pointer-events: auto;
}

.mobile-menu .container {
  display: grid;
  gap: 0.75rem;
}

.mobile-menu a:not(.mobile-menu-cta) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.95rem;
  border-radius: 0;
  font-weight: 800;
  color: var(--dark-teal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-accent-soft);
}

.mobile-menu a:not(.mobile-menu-cta):last-child {
  border-bottom: none;
}

.mobile-menu a:not(.mobile-menu-cta):hover {
  color: var(--primary-teal);
}

/* Shown only when header #header-cta is hidden (narrow screens) */
.mobile-menu-cta {
  display: none;
  margin-top: 0;
  margin-bottom: 0.15rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .mobile-menu-cta {
    display: flex;
  }
}

/* Mobile header layout */
.header-stack {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
  .header-inner {
    padding: 0.9rem 0;
    align-items: center;
    flex-wrap: nowrap;
  }
  .header-stack {
    display: contents;
  }
  .header-right {
    width: auto;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand-wordmark {
    width: 170px;
  }
  .phone {
    font-size: 0.92rem;
  }
  .btn.btn-primary {
    flex: 0 0 auto;
  }
  #header-cta {
    padding: 0.7rem 0.85rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .hamburger {
    margin-left: auto;
  }
  .nav {
    display: none;
  }
  .mobile-menu {
    top: calc(var(--header-height) + 1px);
  }
}

@media (max-width: 720px) {
  #header-cta {
    display: none;
  }
}

/* Desktop header layout */
@media (min-width: 768px) {
  .header-inner {
    padding: 0.5rem 0;
  }
  .hamburger {
    display: inline-flex;
  }
  .nav {
    display: none;
  }
  .header-stack {
    display: contents;
  }
  .header-right {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 78px;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(21, 80, 80, 0.36) 0%, rgba(21, 80, 80, 0.44) 100%),
    linear-gradient(0deg, rgba(12, 32, 32, 0.1), rgba(12, 32, 32, 0.1)),
    url("hero.png");
  background-position: center, center, center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 56px 0;
}

.hero-content {
  text-align: center;
  width: min(860px, 100%);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-content {
    padding-inline: 0.85rem;
  }
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(2.15rem, 3.9vw, 3.35rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.hero p {
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.97);
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.hero .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  padding: 1.05rem 1.35rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 900ms ease-out forwards;
}

.reveal.delay-1 {
  animation-delay: 120ms;
}

.reveal.delay-2 {
  animation-delay: 220ms;
}

/* Scroll reveal for sections */
.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    animation: none;
  }
  .btn {
    transition: none;
  }
  .mobile-menu {
    transition: none;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Section headings */
.section-heading {
  font-family: "Cinzel", serif;
  font-weight: 800;
  color: var(--primary-teal);
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
}

.section-heading.white {
  color: #fff;
}

.subtle-divider {
  width: 110px;
  height: 2px;
  background: var(--gold-accent);
  margin: 1rem auto 0.4rem;
  border-radius: 2px;
}

/* Services */
#services.section {
  background: var(--light-gray);
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 14px 35px rgba(21, 80, 80, 0.08);
  border-top: 4px solid var(--primary-teal);
  padding: 1.35rem 1.25rem 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(21, 80, 80, 0.12);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.7rem;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-teal);
  letter-spacing: 0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.98rem;
}

/* Why choose */
#why.section {
  background: #fff;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  background: var(--bg);
  border: 1px solid rgba(27, 107, 107, 0.12);
  border-radius: 0;
  padding: 1.1rem 1.05rem;
  text-align: center;
}

.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.6rem;
}

.trust-item h3 {
  margin: 0 0 0.45rem;
  color: var(--primary-teal);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.trust-item p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
  font-weight: 500;
  font-size: 0.96rem;
}

/* About */
#about.section {
  background: var(--primary-teal);
  color: #fff;
}

#about.section .section-heading.white {
  margin-bottom: 1.15rem;
}

#about.section .subtle-divider {
  background: var(--gold-accent);
}

.about-text {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  line-height: 1.75;
  font-size: 1.02rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
}

/* Service area */
#service-area.section {
  background: var(--light-gray);
}

.area-text {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.75rem;
  color: var(--muted-text);
  line-height: 1.7;
  font-weight: 500;
  font-size: 1.02rem;
}

.map-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(21, 80, 80, 0.14);
  border: 1px solid rgba(21, 80, 80, 0.12);
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-top: 52%;
  background: #fff;
}

.map-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */
#contact.section {
  background: #fff;
}

.contact-subheading {
  text-align: center;
  color: var(--gold-accent);
  font-weight: 900;
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.contact-email {
  margin-top: -0.15rem;
}

#contact .contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 149, 42, 0.45);
}

#contact .contact-link:hover {
  border-bottom-color: var(--gold-accent);
}

.contact-bilingual {
  text-align: center;
  color: var(--muted-text);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1.6rem;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.form-card {
  width: min(520px, 100%);
  border-radius: 0;
  border: 1px solid rgba(27, 107, 107, 0.14);
  box-shadow: 0 18px 46px rgba(21, 80, 80, 0.10);
  padding: 1.25rem 1.25rem 1.3rem;
  background: #fff;
}

form .field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

label {
  font-weight: 800;
  color: var(--primary-teal);
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(27, 107, 107, 0.22);
  padding: 0.8rem 0.85rem;
  font-family: inherit;
  font-size: 0.98rem;
  outline: none;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(27, 107, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(27, 107, 107, 0.12);
}

textarea {
  resize: vertical;
}

.error {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--error-red);
  font-weight: 600;
}

.form-actions {
  margin-top: 0.25rem;
}

/* FormSubmit honeypot — keep off-screen; do not remove */
.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.btn-full {
  width: 100%;
  padding: 1rem 1.1rem;
}

.success-message {
  display: none;
  width: min(520px, 100%);
  text-align: center;
  color: var(--primary-teal);
  font-weight: 700;
  line-height: 1.6;
  border: 1px solid rgba(27, 107, 107, 0.14);
  border-radius: 0;
  padding: 1.4rem 1.25rem;
  background: rgba(27, 107, 107, 0.05);
  box-shadow: 0 18px 46px rgba(21, 80, 80, 0.08);
}

.success-message.show {
  display: block;
}

/* Footer */
footer.site-footer {
  /* Keep footer non-green so the teal logo doesn't blend */
  background: #0f1414;
  color: #fff;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
}

.brand-wordmark,
.footer-logo {
  user-select: none;
}

.footer-note {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-weight: 500;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-family: "Cinzel", serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.footer-contacts {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.5;
}

.footer-contacts a {
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 149, 42, 0.45);
  font-weight: 700;
}

.footer-contacts a:hover {
  border-bottom-color: var(--gold-accent);
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 160ms ease, background-color 160ms ease;
}
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.service-area-lines {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(200, 149, 42, 0.55);
  position: relative;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.86rem;
}

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