:root {
  --primary: #0f6c8d;
  --primary-dark: #0b526c;

  --text: #1a1a1a;
  --text-light: #555555;

  --gray: #f5f6f7;
  --white: #ffffff;

  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  color: var(--text);
  background: var(--white);

  line-height: 1.6;
}

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

a {
  color: inherit;
}



header {
  position: sticky;
  top: 0;
  z-index: 100;

  padding: 0.85rem 1.5rem;

  background: rgba(255, 255, 255, 0.94);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  width: min(1100px, 100%);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;
}



.logo a {
  color: var(--text);

  text-decoration: none;

  font-size: 1.15rem;
  font-weight: 700;

  white-space: nowrap;
}

.logo a:hover {
  color: var(--primary);
}



.nav nav {
  display: flex;
  align-items: center;

  gap: 1.2rem;
}

.nav nav a {
  position: relative;

  color: var(--text);

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 500;

  white-space: nowrap;

  transition: color 0.2s ease;
}

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

.nav nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 2px;

  background: var(--primary);

  transition: width 0.2s ease;
}

.nav nav a:hover::after {
  width: 100%;
}



.hero {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

  color: var(--white);
}



.hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center 55%;
}



.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.38) 38%,
      rgba(0, 0, 0, 0.10) 68%,
      rgba(0, 0, 0, 0) 100%
    );

  z-index: 1;

  pointer-events: none;
}



.hero-content {
  position: absolute;

  left: 50%;
  bottom: 2.3rem;

  z-index: 2;

  width: min(1100px, calc(100% - 3rem));

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-content h1 {
  width: 48%;
  max-width: 520px;

  margin: 0 0 0.6rem;

  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -0.03em;

  text-shadow:
    0 3px 15px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  width: 48%;
  max-width: 520px;

  margin: 0 0 0.45rem;

  font-size: 0.98rem;

  line-height: 1.45;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-content span {
  width: 48%;
  max-width: 520px;

  font-size: 0.88rem;

  font-weight: 500;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45);
}



.section {
  width: min(1050px, calc(100% - 3rem));

  margin: 4rem auto;
}

.section h2 {
  margin: 0 0 1.4rem;

  font-size: 2rem;

  line-height: 1.2;

  text-align: center;

  letter-spacing: -0.02em;
}



.intro {
  max-width: 800px;

  margin-top: 4rem;
  margin-bottom: 4rem;

  text-align: center;
}

.intro-text {
  max-width: 800px;

  margin: 0 auto 1rem;

  color: var(--text-light);

  font-size: 1rem;

  line-height: 1.7;
}

.intro-text:last-child {
  margin-bottom: 0;
}



.grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.card {
  padding: 1.7rem;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 14px;
}

.card h3 {
  margin: 0 0 0.7rem;

  font-size: 1.2rem;

  line-height: 1.3;
}

.card p {
  margin: 0 0 1.1rem;

  color: var(--text-light);

  font-size: 0.95rem;

  line-height: 1.6;
}

.card-link {
  color: var(--primary);

  text-decoration: none;

  font-size: 0.92rem;

  font-weight: 600;

  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--primary-dark);
}



.practice-intro {
  padding: 3rem 2rem;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 16px;

  text-align: center;
}

.practice-text {
  max-width: 720px;

  margin: 0 auto;
}

.practice-text h2 {
  margin-bottom: 1.2rem;
}

.practice-text p {
  margin: 0 auto 1rem;

  color: var(--text-light);

  font-size: 1rem;

  line-height: 1.7;
}



.button {
  display: inline-block;

  margin-top: 0.7rem;

  padding: 0.7rem 1.2rem;

  color: var(--white);

  background: var(--primary);

  border-radius: 8px;

  text-decoration: none;

  font-size: 0.92rem;

  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);

  transform: translateY(-2px);
}



.team-intro {
  text-align: center;
}

.team-intro p {
  margin: -0.3rem 0 1rem;

  color: var(--text-light);
}



.contact-teaser {
  padding: 3rem 2rem;

  background: var(--gray);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  text-align: center;
}

.contact-teaser h2 {
  margin-bottom: 1rem;
}

.contact-teaser p {
  color: var(--text-light);
}

.contact-teaser a:not(.button) {
  color: var(--primary);

  text-decoration: none;
}

.contact-teaser a:not(.button):hover {
  color: var(--primary-dark);
}



footer {
  padding: 2rem 1rem;

  border-top: 1px solid var(--border);

  text-align: center;

  color: var(--text-light);

  font-size: 0.88rem;
}

footer p {
  margin: 0.3rem 0;
}

footer a {
  color: var(--primary);

  text-decoration: none;
}

footer a:hover {
  color: var(--primary-dark);
}



.page-header {
  padding: 4.2rem 1.5rem 3.8rem;

  text-align: center;

  background: var(--gray);

  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin: 0 0 0.8rem;

  font-size: clamp(2.1rem, 4vw, 3.1rem);

  line-height: 1.15;
}

.page-header p {
  max-width: 650px;

  margin: 0 auto;

  color: var(--text-light);

  font-size: 1.05rem;
}



.service-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 1.5rem;
}

.service-section-gray {
  background: var(--gray);
}

.service-content {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-text {
  max-width: 520px;
}

.service-text h2 {
  margin: 0 0 1.3rem;
  text-align: left;
  font-size: 2rem;
  line-height: 1.2;
}

.service-text p {
  margin: 0 0 1rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

.service-text ul {
  margin: 1.5rem 0 0;
  padding-left: 1.3rem;
  color: var(--text-light);
}

.service-text li {
  margin-bottom: 0.55rem;
  padding-left: 0.3rem;
}

.service-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 14px;
}

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



.service-note {
  max-width: 750px;
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-align: center;
}

.service-note h2 {
  margin-bottom: 1rem;
}

.service-note p {
  color: var(--text-light);
  line-height: 1.7;
}



@media (max-width: 900px) {

  .service-section {
    padding: 4rem 1.5rem;
  }

  .service-layout {
    gap: 2.5rem;
  }

  .service-image {
    height: 320px;
  }

}



@media (max-width: 650px) {

  .service-section {
    padding: 3.2rem 1rem;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-text {
    max-width: none;
  }

  .service-text h2 {
    font-size: 1.7rem;
  }

  .service-text p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .service-text ul {
    font-size: 0.95rem;
  }

  .service-image {
    height: 260px;
    order: 2;
  }

  .service-text {
    order: 1;
  }

}



.team-page {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.team-page .team-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;
}

.team-page .team-card {
  overflow: hidden;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 14px;

  text-align: center;
}

.team-page .team-card img {
  width: 100%;
  height: 300px;

  object-fit: cover;
}

.team-card-content {
  padding: 1.2rem 1rem 1.4rem;
}

.team-card-content h3 {
  margin: 0 0 0.35rem;

  font-size: 1.15rem;
}

.team-card-content p {
  margin: 0.3rem 0;

  color: var(--text-light);

  font-size: 0.9rem;

  line-height: 1.45;
}

.team-card-content .team-role {
  color: var(--text);

  font-weight: 500;
}



.team-note {
  max-width: 700px;

  text-align: center;
}

.team-note p {
  color: var(--text-light);

  line-height: 1.7;
}



.patient-info-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.5rem;

  margin-top: 4rem;
}

.patient-info-card {
  padding: 2rem;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 14px;
}

.patient-info-card h2 {
  margin: 0 0 1rem;

  text-align: left;

  font-size: 1.35rem;

  line-height: 1.3;
}

.patient-info-card p {
  margin: 0 0 1rem;

  color: var(--text-light);

  font-size: 0.97rem;

  line-height: 1.7;
}

.patient-info-card p:last-child {
  margin-bottom: 0;
}



.info-highlight {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;

  margin: 1.3rem 0;

  padding: 1rem 1.2rem;

  background: var(--white);

  border-left: 4px solid var(--primary);

  border-radius: 6px;
}

.info-highlight strong {
  font-size: 0.95rem;
}

.info-highlight span {
  color: var(--primary);

  font-size: 1.15rem;

  font-weight: 600;
}



.patient-note {
  max-width: 700px;

  padding-top: 3rem;
  padding-bottom: 5rem;

  text-align: center;
}

.patient-note p {
  margin-bottom: 1rem;

  color: var(--text-light);

  line-height: 1.7;
}



.contact-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.5rem;

  margin-top: 4rem;
}

.contact-card {
  padding: 2rem;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 14px;
}

.contact-card h2 {
  margin: 0 0 1.5rem;

  text-align: left;

  font-size: 1.5rem;

  line-height: 1.3;
}



.contact-item {
  padding: 1rem 0;

  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  display: block;

  margin-bottom: 0.25rem;

  font-size: 0.9rem;
}

.contact-item p {
  margin: 0;

  color: var(--text-light);

  line-height: 1.6;
}

.contact-item a {
  color: var(--primary);

  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-dark);
}



.opening-hours {
  border-top: 1px solid var(--border);
}

.opening-hours div {
  display: flex;

  justify-content: space-between;

  gap: 1rem;

  padding: 0.85rem 0;

  border-bottom: 1px solid var(--border);
}

.opening-hours span {
  color: var(--text-light);
}

.opening-hours strong {
  text-align: right;

  font-weight: 500;
}

.opening-note {
  margin: 1.2rem 0 0;

  color: var(--text-light);

  font-size: 0.9rem;

  line-height: 1.6;
}



.opening-card {
  position: relative;
}



.opening-status {
  display: flex;

  align-items: center;

  gap: 0.65rem;

  margin-bottom: 0.5rem;

  font-size: 1rem;
}

.status-dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #999999;
}



.opening-status.open .status-dot {
  background: #2e9b5b;

  box-shadow:
    0 0 0 4px rgba(46, 155, 91, 0.12);
}

.opening-status.open strong {
  color: #287d4b;
}



.opening-status.closed .status-dot {
  background: #c85a5a;

  box-shadow:
    0 0 0 4px rgba(200, 90, 90, 0.10);
}

.opening-status.closed strong {
  color: #a64a4a;
}



.opening-message {
  margin: 0 0 1.4rem;

  padding: 0.9rem 1rem;

  background: var(--white);

  border-left: 3px solid var(--primary);

  border-radius: 6px;

  color: var(--text-light);

  font-size: 0.9rem;

  line-height: 1.5;
}



.opening-week {
  margin-top: 1.2rem;

  border-top: 1px solid var(--border);
}

.opening-day {
  display: grid;

  grid-template-columns: 120px 1fr;

  gap: 1rem;

  align-items: center;

  min-height: 46px;

  padding: 0.65rem 0;

  border-bottom: 1px solid var(--border);

  font-size: 0.9rem;
}

.opening-day span {
  color: var(--text-light);
}

.opening-day strong {
  font-weight: 500;

  text-align: right;
}



.opening-day.today {
  margin-left: -0.7rem;
  margin-right: -0.7rem;

  padding-left: 0.7rem;
  padding-right: 0.7rem;

  background: var(--white);

  border-radius: 6px;
}

.opening-day.today span {
  color: var(--text);

  font-weight: 600;
}

.opening-day.today strong {
  color: var(--primary);

  font-weight: 600;
}



.opening-day.closed-day strong {
  color: #888888;

  font-weight: 400;
}



.opening-loading {
  color: var(--text-light);

  font-size: 0.9rem;
}



.opening-next {
  margin: 0.8rem 0 1.2rem;

  color: var(--text-light);

  font-size: 0.9rem;
}

.opening-next strong {
  color: var(--primary);

  font-weight: 600;
}



.arrival {
  width: 100%;
  max-width: none;

  margin-top: 0;
  margin-bottom: 0;

  padding-top: 5rem;
  padding-bottom: 5rem;

  background: var(--gray);
}

.arrival-content {
  width: min(1050px, calc(100% - 3rem));

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;
}

.arrival-text h2 {
  margin: 0 0 1.2rem;

  font-size: 2rem;

  line-height: 1.2;
}

.arrival-text > p {
  margin: 0 0 1rem;

  color: var(--text-light);

  line-height: 1.7;
}

.arrival-details {
  margin-top: 1.5rem;
}

.arrival-details p {
  margin: 0 0 1rem;

  color: var(--text-light);

  font-size: 0.95rem;

  line-height: 1.65;
}



.map-placeholder {
  min-height: 360px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 2rem;

  background:
    linear-gradient(
      135deg,
      #e9edef,
      #f7f8f8
    );

  border: 1px solid var(--border);

  border-radius: 14px;

  text-align: center;
}

.map-placeholder-content strong {
  display: block;

  margin-bottom: 0.5rem;

  font-size: 1.2rem;
}

.map-placeholder-content p {
  margin: 0 0 1rem;

  color: var(--text-light);

  font-size: 0.95rem;
}



.contact-final {
  max-width: 700px;

  padding-top: 4rem;
  padding-bottom: 5rem;

  text-align: center;
}

.contact-final p {
  margin-bottom: 1rem;

  color: var(--text-light);

  line-height: 1.7;
}



@media (max-width: 900px) {


  header {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .nav {
    gap: 1rem;
  }

  .nav nav {
    gap: 0.9rem;
  }



  .hero {
    height: 350px;
  }

  .hero-content {
    bottom: 2rem;

    width: calc(100% - 2.5rem);

    align-items: flex-start;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content span {
    width: 60%;
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }



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



  .team-page .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .patient-info-grid {
    grid-template-columns: 1fr;
  }



  .contact-grid {
    grid-template-columns: 1fr;
  }



  .arrival-content {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .map-placeholder {
    min-height: 300px;
  }
}



@media (max-width: 650px) {


  header {
    position: relative;

    padding: 0.8rem 1rem;
  }

  .nav {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.6rem;
  }

  .logo a {
    font-size: 1.05rem;
  }

  .nav nav {
    width: 100%;

    display: flex;

    flex-wrap: wrap;

    gap: 0.35rem 0.9rem;
  }

  .nav nav a {
    font-size: 0.82rem;
  }



  .hero {
    height: 285px;
  }

  .hero-image {
    object-position: center 55%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.74) 0%,
        rgba(0, 0, 0, 0.40) 42%,
        rgba(0, 0, 0, 0) 78%
      );
  }

  .hero-content {
    left: 0;
    bottom: 1.15rem;

    width: 100%;

    padding: 0 1rem;

    transform: none;

    align-items: flex-start;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content span {
    width: 100%;
    max-width: none;
  }

  .hero-content h1 {
    margin-bottom: 0.4rem;

    font-size: 1.75rem;

    line-height: 1.08;
  }

  .hero-content p {
    margin-bottom: 0.3rem;

    font-size: 0.82rem;

    line-height: 1.35;
  }

  .hero-content span {
    font-size: 0.74rem;
  }


  
  .section {
    width: calc(100% - 2rem);

    margin: 3rem auto;
  }

  .section h2 {
    font-size: 1.65rem;

    line-height: 1.2;
  }


  
  .intro {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .intro-text {
    font-size: 0.94rem;

    line-height: 1.65;
  }


  
  .grid {
    gap: 1.1rem;
  }

  .card {
    padding: 1.35rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.92rem;

    line-height: 1.55;
  }


  
  .practice-intro {
    padding: 2.2rem 1.2rem;

    border-radius: 14px;
  }

  .practice-text h2 {
    font-size: 1.6rem;
  }

  .practice-text p {
    font-size: 0.94rem;

    line-height: 1.65;
  }


  
  .button {
    padding: 0.65rem 1rem;

    font-size: 0.88rem;
  }


  
  .page-header {
    padding: 3rem 1rem 2.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }


  
  .service-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .service-section-gray {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-text h2 {
    font-size: 1.7rem;
  }

  .service-text p {
    font-size: 0.95rem;

    line-height: 1.65;
  }

  .service-text ul {
    font-size: 0.95rem;
  }

  .service-note {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }


  
  .team-page {
    margin-top: 2.5rem;
  }

  .team-page .team-grid {
    grid-template-columns: 1fr;

    gap: 1.3rem;
  }

  .team-page .team-card img {
    height: 330px;
  }

  .team-card-content {
    padding: 1.1rem 1rem 1.3rem;
  }


  
  .patient-info-grid {
    margin-top: 2.5rem;

    gap: 1.2rem;
  }

  .patient-info-card {
    padding: 1.4rem;
  }

  .patient-info-card h2 {
    font-size: 1.25rem;
  }

  .patient-info-card p {
    font-size: 0.94rem;

    line-height: 1.65;
  }

  .patient-note {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }


  
  .contact-grid {
    margin-top: 2.5rem;

    gap: 1.2rem;
  }

  .contact-card {
    padding: 1.4rem;
  }

  .contact-card h2 {
    font-size: 1.3rem;
  }

  .contact-item p {
    font-size: 0.94rem;
  }


  
  .opening-hours div {
    flex-direction: column;

    gap: 0.1rem;
  }

  .opening-hours strong {
    text-align: left;
  }

  .opening-day {
    grid-template-columns: 95px 1fr;

    gap: 0.7rem;

    font-size: 0.86rem;
  }

  .opening-day strong {
    line-height: 1.4;
  }

  .opening-day.today {
    margin-left: -0.5rem;
    margin-right: -0.5rem;

    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }


  
  .arrival {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .arrival-content {
    width: calc(100% - 2rem);
  }

  .arrival-text h2 {
    font-size: 1.7rem;
  }

  .arrival-text > p {
    font-size: 0.94rem;
  }

  .arrival-details p {
    font-size: 0.92rem;
  }

  .map-placeholder {
    min-height: 260px;

    padding: 1.5rem;
  }


  
  .contact-final {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }


  
  footer {
    padding: 1.6rem 1rem;

    font-size: 0.82rem;
  }
}



@media (max-width: 380px) {

  .nav nav {
    gap: 0.3rem 0.7rem;
  }

  .nav nav a {
    font-size: 0.78rem;
  }

  .hero {
    height: 270px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.78rem;
  }

  .hero-content span {
    font-size: 0.7rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }
}


.contact-form-section {
  max-width: 850px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.contact-form-wrapper {
  padding: 3rem;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-form-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form-intro h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.contact-form-intro p {
  max-width: 700px;
  margin: 0 auto 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.form-hint {
  padding: 0.9rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  font-size: 0.9rem;
}



.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;

  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);

  background: var(--white);

  border: 1px solid #d8d8d8;
  border-radius: 7px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input {
  min-height: 44px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 3px rgba(15, 108, 141, 0.1);
}



.form-options {
  margin: 0 0 1.5rem;
  padding: 1.2rem;

  border: 1px solid var(--border);
  border-radius: 8px;

  background: var(--white);
}

.form-options legend {
  padding: 0 0.4rem;

  font-size: 0.92rem;
  font-weight: 600;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;

  gap: 0.6rem;

  margin-bottom: 0.7rem;

  color: var(--text-light);

  font-size: 0.9rem;
  line-height: 1.5;

  cursor: pointer;
}

.checkbox-label:last-child {
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  margin-top: 0.15rem;

  accent-color: var(--primary);

  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}



.form-consent {
  margin-bottom: 1.5rem;
}

.form-consent .checkbox-label {
  padding: 0.9rem 1rem;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 7px;
}



.form-submit {
  border: none;

  font-family: inherit;

  cursor: pointer;
}



@media (max-width: 650px) {

  .contact-form-section {
    width: calc(100% - 2rem);

    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1.1rem;

    border-radius: 14px;
  }

  .contact-form-intro h2 {
    font-size: 1.7rem;
  }

  .contact-form-intro p {
    font-size: 0.94rem;
  }

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

  .form-group input,
  .form-group textarea {
    font-size: 0.94rem;
  }

  .form-options {
    padding: 1rem;
  }

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

}


.form-honeypot {
  position: absolute;

  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


.subpage-image {
  width: 100%;
  height: 280px;

  overflow: hidden;

  background: var(--gray);
}

.subpage-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center 55%;
}



@media (max-width: 650px) {

  .subpage-image {
    height: 180px;
  }

  .subpage-image img {
    object-position: center 55%;
  }

}


.legal-page {
  max-width: 850px;
}

.legal-content {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 2.5rem 0 0.9rem;

  color: var(--text);

  font-size: 1.4rem;
  line-height: 1.3;

  text-align: left;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1.2rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--primary-dark);
}



@media (max-width: 650px) {

  .legal-page {
    width: calc(100% - 2rem);
  }

  .legal-content {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .legal-content h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
  }

}

.emergency-notice {
  margin: 20px 0;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.emergency-notice p {
  margin: 0;
}

.emergency-notice strong {
  font-size: inherit;
}

.emergency-notice a {
  font-size: inherit;
  font-weight: 600;
}



.hours-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2rem;

  margin-top: 1.5rem;

}

.hours-column {

  min-width: 0;

}

.hours-column .opening-heading {

  margin: 0 0 0.8rem;

  font-size: 1rem;

  line-height: 1.4;

  text-align: left;

}

.hours-column .opening-week {

  margin-top: 0;

}

.hours-column .opening-day {

  grid-template-columns: 90px 1fr;

  gap: 0.6rem;

  font-size: 0.82rem;

}

.hours-column .opening-day strong {

  line-height: 1.35;

}



@media (max-width: 650px) {

  .hours-grid {

    grid-template-columns: 1fr;

    gap: 2rem;

  }

  .hours-column .opening-day {

    grid-template-columns: 95px 1fr;

    font-size: 0.86rem;

  }

}

.logo img {
  display: block;
  width: auto;
  height: 70px;
}

@media (max-width: 650px) {

  .logo img {
    height: 55px;
  }

}

.opening-preview-section {

  margin-top: 4rem;

  margin-bottom: 4rem;

}


.opening-preview {

  padding: 2.5rem 2rem;

  background: var(--gray);

  border: 1px solid var(--border);

  border-radius: 16px;

  text-align: center;

}


.opening-preview-content {

  max-width: 650px;

  margin: 0 auto;

}


.opening-preview-content h2 {

  margin-bottom: 1.5rem;

}


.opening-preview .opening-status {

  justify-content: center;

}


.opening-preview .opening-next {

  margin-bottom: 1.2rem;

}


.opening-preview-message {

  margin: 0.5rem 0 1rem;

  color: var(--text-light);

}


.opening-preview-hours {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  margin: 1.5rem auto 0;

  padding: 1rem 0;

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

  font-size: 0.95rem;

}


.opening-preview-hours span {

  color: var(--text-light);

}


.opening-preview-hours strong {

  color: var(--primary);

  font-weight: 600;

}


@media (max-width: 650px) {

  .opening-preview-section {

    margin-top: 3rem;

    margin-bottom: 3rem;

  }


  .opening-preview {

    padding: 2rem 1.2rem;

  }


  .opening-preview-hours {

    flex-direction: column;

    gap: 0.3rem;

    text-align: center;

  }

}