*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #2c2c2c;
  background: #faf8f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: 0.02em; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 4rem 0.6rem;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
}
.header-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.header-right .header-email {
  font-size: 0.75rem;
  color: #1a3a3a;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 300;
  transition: opacity 0.2s;
}
.header-right .header-email:hover { opacity: 0.6; }
.header-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a3a3a;
}
.header-nav {
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
  margin-top: 0.4rem;
}
.header-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a !important;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 0.6; }
.header-contact {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.header-contact a {
  color: #1a3a3a;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.header-contact a:hover { opacity: 0.6; }
.header-contact .header-phone-block {
  display: inline-flex;
  align-items: stretch;
}
.header-contact .header-phone-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #7ee16c;
  border: 2px solid #4a7c59;
  border-right: none;
  padding: 0.1rem 0.35rem;
  line-height: 1.1;
}
.header-contact .header-phone-labels a {
  color: #2d6a4f;
  text-decoration: none;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  display: block;
  line-height: 1;
}
.header-contact .header-phone-labels a:first-child {
  margin-bottom: 2px;
}
.header-contact .header-phone-labels a:hover { opacity: 0.6; }
.header-contact .header-phone-labels svg {
  width: 14px;
  height: 14px;
  display: block;
}
.header-contact .header-phone-number {
  display: inline-flex;
  align-items: center;
  background: #4a7c59;
  border: 2px solid #4a7c59;
  color: #fff;
  padding: 0.2rem 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-contact .header-phone-number:hover { opacity: 0.85; }
.header-contact .divider { color: #c9b99a; }

/* home hero */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26, 58, 58, 0.25);
  pointer-events: none;
}
.hero-top {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding: 3rem 2rem 0;
  position: relative; z-index: 1;
}
.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9b99a;
  margin-bottom: 0.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.4rem;
}
.hero-sidebar {
  position: absolute; left: 3rem; top: 50%; transform: translateY(-50%);
  z-index: 1;
  text-align: left;
  max-width: 22rem;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: #f0e8dc;
  margin-bottom: 1.2rem;
}
.hero-buttons {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.hero-buttons .hero-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
}
.hero-buttons .hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.hero-buttons .hero-btn-outline:hover {
  background: #fff;
  color: #1a3a3a;
}
.hero-buttons .hero-btn-solid {
  background: #c9b99a;
  color: #1a3a3a;
  border: 2px solid #c9b99a;
}
.hero-buttons .hero-btn-solid:hover {
  background: #b8a889;
  border-color: #b8a889;
}

.hero-bottom {
  width: 100%;
  background: rgba(26, 58, 58, 0.35);
  backdrop-filter: blur(3px);
  padding: 2rem 2rem 3rem;
  position: relative; z-index: 1;
}
.hero-services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #c9b99a;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.hero-services-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1rem;
  max-width: 50rem; margin: 0 auto;
}
.hero-service-item {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #f0e8dc;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.hero-service-item:hover {
  color: #c9b99a;
}

.scroll-indicator {
  position: absolute; bottom: 1rem;
  font-size: 2rem;
  color: #c9b99a;
  animation: scrollBounce 2s ease-in-out infinite;
  line-height: 1;
  font-weight: 300;
  z-index: 1;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* about */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 0;
}
.about-text p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}
.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-quals {
  position: absolute;
  bottom: 0; right: 0;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.2rem;
  max-width: 70%;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
}
.about-quals .qual-item {
  font-size: 0.7rem;
  color: #1a3a3a;
  padding: 0.12rem 0;
  border-bottom: none;
  line-height: 1.35;
}
.about-logos-left {
  position: absolute;
  bottom: 5.3rem; left: 0;
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}



/* page hero (inner pages) */
.page-hero {
  padding: 10rem 4rem 3rem;
  text-align: center;
  position: relative;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26, 58, 58, 0.25);
  pointer-events: none;
}
.page-hero > * {
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.page-hero .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9b99a;
  margin-bottom: 0.6rem;
}
.page-hero .breadcrumb a {
  color: #c9b99a;
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: #d4899a; }
.page-hero p { color: #f0e8dc !important; }

section {
  padding: 4rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9b99a;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #1a3a3a;
  margin-bottom: 1.2rem;
}
.section-body {
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 42rem;
}

.content-block {
  background-color: rgba(176, 223, 209, 0.07);
  padding: 2.5rem 2.5rem;
  border-radius: 10px;
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.content-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg-pattern.png') center left / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}
.content-block > * {
  position: relative;
  z-index: 1;
}
.content-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #2a2218;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  max-width: 42rem;
}
.content-block p:last-child { margin-bottom: 0; }


/* step list */
.step-list {
  list-style: none;
  margin: 1.5rem 0;
}
.step-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: #4a4a4a;
  border-bottom: 1px solid rgba(201, 185, 154, 0.15);
}
.step-list li::before {
  content: '';
  position: absolute; left: 0; top: 1.1rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4899a;
}

/* benefit list */
.benefit-list {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.benefit-list li {
  padding: 0.5rem 0.8rem 0.5rem 1.6rem;
  position: relative;
  font-size: 0.9rem;
  color: #4a4a4a;
}
.benefit-list li::before {
  content: '›';
  position: absolute; left: 0.4rem;
  color: #d4899a;
  font-size: 1.2rem;
  font-weight: 700;
}

.quals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
.qual-item {
  font-size: 0.85rem;
  color: #4a4a4a;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 185, 154, 0.2);
}

.cta-banner {
  background: #1a3a3a;
  color: #faf8f5;
  text-align: center;
  padding: 4rem 4rem;
  max-width: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #faf8f5;
  margin-bottom: 0.6rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .hero-cta {
  border-color: #faf8f5;
  color: #faf8f5;
}
.cta-banner .hero-cta:hover {
  background: #faf8f5;
  color: #1a3a3a;
}

.hero-cta {
  display: inline-block;
  padding: 0.7rem 2.5rem;
  border: 1px solid #1a3a3a;
  color: #1a3a3a;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: #1a3a3a;
  color: #faf8f5;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-details p {
  margin-bottom: 0.4rem;
  color: #4a4a4a;
  font-size: 0.9rem;
}
.contact-details a {
  color: #1a3a3a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-details a:hover {
  border-bottom-color: #c9b99a;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #2c2c2c;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9b99a;
}
.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact-form button {
  padding: 0.7rem 2rem;
  border: 1px solid #1a3a3a;
  background: transparent;
  color: #1a3a3a;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form button:hover {
  background: #1a3a3a;
  color: #faf8f5;
}
.form-msg {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
}
.form-msg--success { color: #1a3a3a; }
.form-msg--error { color: #c26a7e; }
.captcha-row {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.captcha-row span {
  font-size: 0.9rem;
  color: #4a4a4a;
  white-space: nowrap;
}
.captcha-row input {
  flex: 1;
  margin-bottom: 0 !important;
}

.footer {
  text-align: center;
  padding: 1.5rem 4rem;
  font-size: 0.75rem;
  color: #8a7e6b;
  border-top: 1px solid rgba(201, 185, 154, 0.2);
}
.footer a {
  color: #1a3a3a;
  text-decoration: none;
}

.divider-line {
  width: 2.5rem;
  height: 1px;
  background: #c9b99a;
  margin: 1.2rem 0;
}

/* service detail row (two-column text + image, both inside one card) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.service-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg-pattern.png') center left / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}
.service-detail::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(176, 223, 209, 0.07);
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}
.service-detail > * {
  position: relative;
  z-index: 1;
}
.service-detail__text { padding: 1rem 0; }
.service-detail__text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #1a3a3a;
  margin-bottom: 0.8rem;
}
.service-detail__text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #3a3020;
  margin-bottom: 0.8rem;
}
.service-detail__image {
  background: #fff;
  border-radius: 20px;
  padding: 0.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.service-detail__image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.service-detail--reverse .service-detail__image { order: -1; }

/* pricing card */
.pricing-card {
  padding: 2rem 2.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg-pattern.png') center left / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(176, 223, 209, 0.07);
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #1a3a3a;
  margin-bottom: 0.8rem;
}
.pricing-card .pricing-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 185, 154, 0.3);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #3a3020;
}
.pricing-card .pricing-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .header { padding: 0.8rem 1.5rem 0.4rem; }
  .header-top { flex-direction: column; gap: 0.3rem; }
  .header-nav { gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 0.3rem; }
  .header-nav a { font-size: 0.9rem; }
  .header-contact { gap: 1rem; font-size: 0.75rem; flex-wrap: wrap; justify-content: center; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 6rem 1.5rem 4rem; background-size: contain; background-repeat: no-repeat; background-color: #e8ddd0; }
  .hero h1 { font-size: 2.5rem !important; }
  .hero-top p { font-size: 1.4rem !important; }
  .hero-sidebar { position: static; transform: none; text-align: center; margin-top: 1.5rem; max-width: 100%; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .benefit-list { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .service-detail--reverse .service-detail__image { order: 0; }
  .pricing-card { padding: 1.5rem; }
}

/* reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-stars {
  color: #c9b99a;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
.review-date {
  font-size: 0.75rem;
  color: #999;
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.6rem;
}
.review-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #1a3a3a;
  margin-bottom: 0.6rem;
}
.review-card p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.review-author {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #1a3a3a;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
}

/* review form */
#write-review { padding: 4rem 5%; }
.review-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #d4cdc0;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #1a3a3a;
  background: #fff;
  box-sizing: border-box;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #4a7c59;
}
.review-form button[type="submit"] {
  align-self: flex-start;
  padding: 0.8rem 2.5rem;
  background: #4a7c59;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.review-form button[type="submit"]:hover { opacity: 0.85; }
.review-rating-select label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a3a3a;
  margin-bottom: 0.3rem;
}
.star-select {
  display: flex;
  gap: 0.3rem;
}
.star-btn {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}
.star-btn.active,
.star-btn:hover { color: #c9b99a; }
.review-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4a4a4a;
  font-family: 'Lato', sans-serif;
  line-height: 1.3;
  cursor: pointer;
}
.review-terms input { width: auto; margin-top: 2px; }
#write-review .captcha-row { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #1a3a3a; }
#write-review .captcha-row input { width: 80px; }
