/* ===== Utility ===== */
.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;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #3d4f7c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 200;
  font-size: 0.95rem;
  text-decoration: underline;
}

.skip-link:focus {
  top: 0;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  scroll-padding-top: 6.5rem;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

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

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

ul {
  list-style: none;
}

.hidden {
  display: none;
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-title em {
  font-style: italic;
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #8b6f5e;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 500px;
}

.hero-welcome {
  background: #dcc8a8;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-welcome p {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-center {
  background: linear-gradient(180deg, #c9a55a 0%, #b89445 50%, #c28070 80%, #a080a0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
}

.profile-photo {
  width: clamp(140px, 15vw, 200px);
  height: clamp(140px, 15vw, 200px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.25rem;
  background: #ddd;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-info {
  color: #222;
}

.hero-email, .hero-phone {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hero-fees {
  margin-top: 1rem;
}

.hero-fees p {
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.hero-form {
  background: #edf0ee;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form > p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Honeypot (spam protection) ===== */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ===== Contact Form ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8b6f5e;
  outline: 2px solid #8b6f5e;
  outline-offset: 1px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: #666;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #555;
}

.form-success,
.form-error {
  padding: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.form-success {
  color: #2e6b4a;
}

.form-error {
  color: #8b3a3a;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #2c2c2c;
  color: #eee;
  z-index: 1000;
  padding: 0.75rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.cookie-content a {
  color: #9db8d4;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-accept {
  background: #3d7c5e;
  color: #fff;
}

.cookie-btn-reject {
  background: #666;
  color: #fff;
}

.cookie-btn-manage {
  background: #444;
  color: #fff;
}

.cookie-preferences {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #555;
}

.cookie-pref-item {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.cookie-pref-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-pref-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.cookie-pref-buttons {
  margin-top: 0.75rem;
}

.form-consent {
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-consent a {
  color: #3d4f7c;
  text-decoration: underline;
}

.footer-copyright a,
.footer-copyright .link-button {
  color: inherit;
  text-decoration: underline;
}

.footer-copyright a:hover,
.footer-copyright .link-button:hover {
  color: #fff;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ===== About Section ===== */
.about-section {
  padding: 1.5rem 5%;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f0e8f4 50%, #d6e4f0 100%);
}

.about-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.about-content {
  text-align: left;
  max-width: 50%;
  margin: 0 auto;
}

.about-content .btn-cta {
  display: block;
  text-align: center;
}

.about-content p {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.9rem 3.75rem;
  background: #3d4f7c;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #2e3d63;
}

/* ===== Services Section ===== */
.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #f0e0ea 0%, #d6e4f0 50%, #e8dff0 100%);
}

.services-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3rem 2.5rem;
  gap: 2rem;
  background: #fce4e4;
}

.offerings h3,
.specialities h3 {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  font-weight: 400;
}

.offerings ul,
.specialities ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.offerings li,
.specialities li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.modalities {
  margin-top: 0.4rem;
  padding-left: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.services-right {
  position: relative;
  overflow: hidden;
}

.services-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-overlay {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.services-overlay p {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== What to Expect Section ===== */
.expect-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.expect-image {
  position: relative;
  overflow: hidden;
}

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

.expect-content {
  background: #6b6b6b;
  color: #fff;
  padding: 3.75rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expect-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.expect-content p {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Fees & Contact Section ===== */
.fees-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fees-info {
  background: #fce4e4;
  padding: 3.75rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fees-info h3,
.fees-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.fees-info p {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.fees-details {
  margin-top: 1.8rem;
}

.fees-form {
  padding: 3.75rem 3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fees-form > p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Footer ===== */
.site-footer {
  background: #4a4a4a;
  color: #fff;
  padding: 2.5rem 3rem 1.25rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 1.25rem;
}

.footer-bacp img {
  max-width: 180px;
  background: #fff;
  padding: 0.5rem;
  border-radius: 4px;
}

.footer-info h4,
.footer-info .footer-heading {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-info p {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.footer-copyright {
  font-size: 0.8rem;
  margin-top: 1.25rem;
  color: #c0c0c0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .about-content {
    max-width: 75%;
  }

  .services-section {
    grid-template-columns: 1fr;
  }

  .services-left {
    grid-template-columns: 1fr 1fr;
  }

  .services-right {
    min-height: 400px;
  }

  .expect-section {
    grid-template-columns: 1fr;
  }

  .expect-image {
    min-height: 350px;
  }

  .fees-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
  }

  .site-title {
    text-align: center;
  }

  .mobile-menu-btn {
    margin-top: 0.3rem;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding-top: 0.6rem;
  }

  .main-nav a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
  }

  .header-contact {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-welcome,
  .hero-center,
  .hero-form {
    padding: 2rem 1.5rem;
  }

  .about-content {
    max-width: 100%;
  }

  .services-left {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .services-right {
    display: none;
  }

  .expect-content {
    padding: 2.5rem 1.5rem;
  }

  .fees-info,
  .fees-form {
    padding: 2.5rem 1.5rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1.8rem;
  }
}

/* ===== Focus Visible ===== */
a:focus-visible,
button:focus-visible,
input[type="checkbox"]:focus-visible {
  outline: 2px solid #3d4f7c;
  outline-offset: 2px;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== Touch Targets ===== */
@media (pointer: coarse) {
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .cookie-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .btn-submit {
    min-height: 44px;
  }

  .form-consent label {
    min-height: 44px;
  }

  .cookie-pref-item label {
    min-height: 44px;
  }
}
