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

:root {
  --blue: #1e3a5f;
  --blue-dark: #0f1e30;
  --orange: #e8720c;
  --orange-dark: #c45e08;
  --cream: #f5f1eb;
  --warm-white: #faf8f5;
  --gray: #8a8478;
  --dark: #111111;
  --gold: #c9a84c;
  --line: rgba(15, 30, 48, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 30, 48, 0.95);
  backdrop-filter: blur(14px);
  padding: 18px 42px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 12px 42px;
}

.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo img {
  height: 40px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.lang-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 10px;
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 16px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 90px;
  background-image:
    linear-gradient(to bottom, rgba(10, 20, 35, 0.76), rgba(10, 20, 35, 0.7)),
    url("/static/images/hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 920px;
}

.hero-eyebrow {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-rule {
  width: 54px;
  height: 1px;
  margin: 0 auto 24px;
  background: var(--gold);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================
   BUTTONS (Updated with Call Button Style)
   ========================================== */
.btn-primary,
.btn-secondary,
.btn-call {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  padding: 15px 28px;
  display: inline-block; /* Keeps elements properly aligned side-by-side */
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Dedicated styled Call Button rule */
.btn-call {
  color: #ffffff;
  background: transparent;
  border: 1px solid var(--gold);
}

.btn-call:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

section {
  padding: 92px 48px;
}

.section-eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 14px;
}

section h2 {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  color: var(--blue-dark);
  font-weight: 400;
  line-height: 1.1;
}

.section-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 46px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  margin: 0 auto 48px;
  max-width: 760px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 168, 76, 0.24);
  padding: 1px;
}

.trust-item {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px;
}

.trust-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  background: var(--cream);
}

.founder-image img {
  width: 100%;
  border-radius: 2px;
  display: block;
  min-height: 420px;
  object-fit: cover;
}

.founder-copy {
  max-width: 560px;
}

.founder-copy .section-eyebrow,
.founder-copy h2 {
  text-align: left;
}

.founder-copy p {
  color: #353535;
  margin-bottom: 16px;
}

.story-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.story-list li {
  color: var(--blue-dark);
  font-size: 0.94rem;
  padding-left: 18px;
  position: relative;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--orange);
}

.services {
  background: var(--warm-white);
}

.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 168, 76, 0.24);
}

.service-card {
  background: #ffffff;
  padding: 34px 28px;
}

.service-num {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--blue-dark);
  font-size: 1.42rem;
  margin-bottom: 12px;
  line-height: 1.15;
}

.service-card p {
  color: #575757;
  font-size: 0.9rem;
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(232, 114, 12, 0.22) 0%,
      rgba(232, 114, 12, 0) 40%
    ),
    radial-gradient(
      circle at 86% 84%,
      rgba(201, 168, 76, 0.22) 0%,
      rgba(201, 168, 76, 0) 42%
    ),
    linear-gradient(
      140deg,
      var(--blue-dark) 0%,
      var(--blue) 52%,
      var(--blue-dark) 100%
    );
}

.pricing .section-eyebrow {
  color: var(--gold);
}

.pricing h2 {
  color: var(--warm-white);
}

.pricing .section-rule {
  background: var(--orange);
}

.pricing .section-sub {
  color: rgba(250, 248, 245, 0.84);
}

.pricing-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(245, 241, 235, 0.94) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.32);
  padding: 30px 28px;
  box-shadow: 0 14px 34px rgba(15, 30, 48, 0.2);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 30, 48, 0.28);
}

.price-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.price-value {
  display: inline-block;
  color: var(--orange-dark);
  background: rgba(232, 114, 12, 0.14);
  border: 1px solid rgba(232, 114, 12, 0.5);
  padding: 6px 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.price-card p {
  color: #4a4a4a;
}

.pricing-grid .price-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 560px);
  text-align: center;
}

.pricing-grid .price-card:last-child .price-value {
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  background: var(--dark);
}

.gallery h2,
.gallery .section-eyebrow {
  color: var(--warm-white);
}

.gallery .section-rule {
  background: var(--orange);
}

.gallery-pairs {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.pair {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1b1b1b;
  padding: 14px;
}

.pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pair-shot {
  position: relative;
  overflow: hidden;
  display: block;
}

.pair-shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pair-shot:hover img {
  transform: scale(1.04);
}

.pair-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(15, 30, 48, 0.88);
  color: #ffffff;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.63rem;
}

.pair-tag.after {
  background: rgba(232, 114, 12, 0.88);
}

.testimonials {
  background: var(--warm-white);
}

.testimonial-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  border: 1px solid var(--line);
  background: #ffffff;
}

.testimonial-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.testimonial-quote {
  padding: 18px 20px 12px;
  color: #3d3d3d;
  font-size: 0.93rem;
}

.testimonial-author {
  padding: 0 20px 18px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-widget {
  background: var(--cream);
  padding-top: 40px;
  padding-bottom: 40px;
}

.process {
  background: var(--blue-dark);
}

.process h2,
.process .section-eyebrow,
.process .section-sub {
  color: #ffffff;
}

.process-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-step {
  background: var(--blue-dark);
  padding: 30px 24px;
}

.process-step span {
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
}

.process-step h3 {
  margin-top: 8px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;
  font-size: 1.4rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.care {
  background: #ffffff;
}

.care-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.care-card {
  border: 1px solid var(--line);
  padding: 24px;
}

.care-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--blue-dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.care-card p {
  color: #555555;
}

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--blue-dark);
  font-weight: 600;
}

.faq-list p {
  margin-top: 10px;
  color: #555555;
}

.quote-form-section {
  background: var(--warm-white);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

form {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(15, 30, 48, 0.2);
  background: #ffffff;
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-size: 0.92rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

button[type="submit"] {
  background: var(--blue-dark);
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background: var(--orange);
}

#success {
  background: #d8f3dc;
  border-left: 3px solid #2d6a4f;
  color: #2d6a4f;
  padding: 18px;
}

footer {
  background: var(--dark);
  padding: 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

/* Direct Call CTA above the input fields */
.form-call-wrapper {
  max-width: 920px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.form-call-wrapper p {
  margin: 0;
  font-weight: 500;
  color: var(--blue-dark);
}

.btn-form-call {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  padding: 12px 24px;
  background: transparent;
  color: var(--orange-dark);
  border: 1px solid var(--orange);
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.btn-form-call:hover {
  background: var(--orange);
  color: #ffffff;
}

/* Ensure responsiveness on small phone screens */
@media (max-width: 768px) {
  .form-call-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .btn-form-call {
    width: 100%;
    text-align: center;
  }
}

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

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  nav.scrolled {
    padding: 10px 20px;
  }

  .nav-inner {
    align-items: flex-start;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  section {
    padding: 74px 20px;
  }

  .hero {
    padding: 130px 20px 80px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .trust-bar,
  .services-grid,
  .pricing-grid,
  .process-grid,
  .field-grid,
  .pair-images,
  .founder {
    grid-template-columns: 1fr;
  }

  .founder-image img {
    min-height: 260px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .pair-shot img {
    height: 220px;
  }

  footer {
    padding: 36px 20px;
  }
}
