/* ─── Custom Properties ───────────────────────────────────────────────────── */
:root {
  --brand-blue:  #8FBCE6;
  --blue-dark:   #2c6fa8;
  --blue-hover:  #a4ccf0;
  --sky-light:   #e8f4fd;
  --white:       #ffffff;
  --text:        #3a4a5a;
  --text-light:  #6a7f90;
  --border:      #d0e4f5;
  --sun:         #F7C635;
  --sun-dark:    #a07900;

  --font-display: 'Josefin Sans', sans-serif;
  --font-body:    'Noto Serif', serif;
  --font-serif:   'Noto Serif', serif;

  --max-w:       1100px;
  --radius:      12px;
  --ease:        200ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Layout Helpers ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 680px; }
.container--form   { max-width: 780px; }

/* ─── Section Title ───────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--sun);
  border-radius: 2px;
  margin: 0.5rem auto 0.6rem;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-blue);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(143, 188, 230, 0.45);
}

.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(143, 188, 230, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--brand-blue);
}

.btn--outline:hover {
  background: var(--sky-light);
  transform: translateY(-2px);
}

.btn--submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--brand-blue);
  color: var(--blue-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(143, 188, 230, 0.4);
  cursor: pointer;
}

.btn--submit:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(143, 188, 230, 0.6);
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* text / logo area — overflow: hidden here clips the decorative circles */
.hero__top {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse 80% 60% at 50% -5%,
    rgba(143, 188, 230, 0.22) 0%,
    #ffffff 65%
  );
}

/* decorative concentric rings — scoped to the top area */
.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(143, 188, 230, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__circle--1 { width: 480px;  height: 480px; }
.hero__circle--2 { width: 760px;  height: 760px; }
.hero__circle--3 { width: 1040px; height: 1040px; }

/* content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* photo band */
.hero__photo {
  position: relative;
}

.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero__initials {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.8vw, 1.5rem);
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

.hero__llc {
  color: var(--text-light);
  font-weight: 300;
}

.hero__tagline {
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.5s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.4rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.7s;
}

/* wave divider */
.hero__wave {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ─── About ───────────────────────────────────────────────────────────────── */
.about {
  background: var(--sky-light);
  padding: 0 1.5rem 5rem;
  text-align: center;
}

.about__text {
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  color: var(--text);
  max-width: 660px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}

.badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.badge__icon {
  color: var(--sun);
  font-size: 1rem;
  line-height: 1;
}

/* ─── Gallery ─────────────────────────────────────────────────────────────── */
.gallery {
  background: var(--sky-light);
  border-top: 3px solid var(--brand-blue);
  padding: 5rem 1.5rem;
}

.gallery__sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}


.gallery__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.gallery__grid::-webkit-scrollbar { display: none; }

.gallery__item {
  flex: 0 0 78vw;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}

.gallery__scroll-hint {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}


/* ─── Contact ─────────────────────────────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.contact__sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* form section headers */
.form-section-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-dark);
  padding-left: 0.75rem;
  border-left: 3px solid var(--brand-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-section-note {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: -0.65rem;
  margin-bottom: 0.85rem;
}

.required {
  color: #d94f4f;
  font-style: normal;
}

/* radio pills */
.radio-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 0.65rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease);
  user-select: none;
}

.radio-option:has(input:checked) {
  border-color: var(--brand-blue);
  background: var(--sky-light);
  color: var(--blue-dark);
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.radio-option input[type="radio"]:checked {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

/* file upload */
.file-label { display: block; cursor: pointer; }

.file-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 2rem 1rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--sky-light);
  text-align: center;
  transition: border-color var(--ease), background var(--ease);
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--brand-blue);
  background: #daeef9;
}

.file-upload-arrow {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand-blue);
  font-family: sans-serif;
}

.file-upload-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
}

.file-upload-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.65;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(143, 188, 230, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group input[type="file"] {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

input[type="date"] {
  font-family: var(--font-body);
  color: var(--text);
}

.contact__fallback {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.contact__fallback a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--sky-light);
  border-top: 3px solid var(--brand-blue);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer__location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.footer__phone {
  display: inline-block;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer__social {
  margin-top: 1rem;
}

.footer__fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877f2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition: opacity var(--ease), transform var(--ease);
}

.footer__fb:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer__fb svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__copy {
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 1.5rem;
}

/* Facebook link in About section */
.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: #1877f2;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity var(--ease);
}

.facebook-link:hover { opacity: 0.75; }

.facebook-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 580px) {
  .about { padding-top: 5rem; }

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

  .badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }



  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .gallery__item { flex: unset; scroll-snap-align: unset; }

  .gallery__scroll-hint { display: none; }
}

@media (min-width: 1024px) {
  .about,
  .gallery,
  .contact { padding: 7rem 2rem; }

  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
