:root {
  --bg: #f6f0e8;
  --bg-soft: #efe3d2;
  --card: #fffaf5;
  --panel: #f1e6dc;
  --text: #221b1a;
  --muted: #5d4a43;
  --sage: #a8b8a3;
  --sage-deep: #6f8a6d;
  --terracotta: #b86d52;
  --terracotta-deep: #8c4d3c;
  --line: rgba(34, 27, 26, 0.12);
  --shadow: 0 24px 65px rgba(64, 41, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

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

.section-shell {
  padding: 6rem 0;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--terracotta-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.3rem, 5vw, 5.2rem);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

h3 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(246, 240, 232, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand small {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  background: var(--text);
  color: white;
  padding: 0.8rem 1.3rem;
}

.button {
  padding: 1rem 1.65rem;
  border: 1px solid transparent;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: #fff;
  box-shadow: 0 18px 32px rgba(184, 109, 82, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(34, 27, 26, 0.12);
  color: var(--text);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.lead {
  max-width: 36rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.1rem;
}

.hero-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 140px;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-metrics strong {
  font-size: 1.2rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-card-large {
  inset: 0 5.5rem 4rem 0;
}

.image-card-small {
  right: 0;
  bottom: 0;
  width: 52%;
  border: 8px solid rgba(255, 255, 255, 0.55);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 1.4rem;
  background: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 0.95rem 1.15rem;
  max-width: 210px;
}

.badge {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(168, 184, 163, 0.2);
  color: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-note p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.logo-strip {
  background: #efe3d2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
  text-align: center;
}

.logo-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.3rem;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 12px 32px rgba(50, 35, 28, 0.04);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(184, 109, 82, 0.12);
  color: var(--terracotta-deep);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.approach-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage-deep);
  font-weight: 800;
}

.approach-panels {
  display: grid;
  gap: 1rem;
}

.panel {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}

.panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(168, 184, 163, 0.14);
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel h3 {
  margin-top: 1rem;
  font-size: 2.1rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--terracotta-deep);
}

blockquote {
  margin: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

blockquote footer {
  margin-top: 1.25rem;
  font-weight: 800;
  color: var(--muted);
}

.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(168, 184, 163, 0.26), rgba(184, 109, 82, 0.18));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  background: #1f1817;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  color: #fff;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.booking-form {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.2rem 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 109, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: "Manrope", sans-serif;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235d4a43' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.form-group.checkbox input[type="checkbox"] {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--terracotta);
}

.form-group.checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
}

.error-message {
  color: #d32f2f;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-actions button {
  border: none;
  cursor: pointer;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: #2e7d32;
  margin-top: 1rem;
  font-weight: 600;
}

.success-message p {
  margin: 0;
  color: #2e7d32;
}

.booking-info {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.booking-info h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.booking-info p {
  margin-bottom: 1.2rem;
}

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-methods li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-methods li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-methods strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-methods a,
.contact-methods span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-methods a {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-methods a:hover {
  color: var(--terracotta-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .approach-grid,
  .about-grid,
  .footer-grid,
  .service-grid,
  .testimonial-grid,
  .booking-form-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-info {
    position: relative;
    top: auto;
    margin-top: 2rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 250, 245, 0.95);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-wrap {
    position: relative;
  }

  .hero {
    padding-top: 4rem;
  }

  .section-shell {
    padding: 4.25rem 0;
  }

  .image-card-large {
    inset: 0 2rem 3rem 0;
  }

  .image-card-small {
    width: 48%;
  }

  .booking-form {
    padding: 1.5rem 1rem;
  }

  .booking-info {
    padding: 1.5rem 1rem;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions button {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1rem);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .booking-form-wrapper {
    gap: 1.5rem;
  }

  .section-shell {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-metrics {
    gap: 1rem;
    flex-direction: column;
  }

  .hero-metrics li {
    min-width: auto;
  }
}

@media (max-width: 520px) {
  .image-card-large {
    inset: 0 1rem 2.5rem 0;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

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