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

:root {
  --color-bg: #faf6f1;
  --color-bg-soft: #f3ece4;
  --color-surface: #ffffff;
  --color-surface-soft: #f9f4ee;

  --color-primary: #335c4f;
  --color-primary-soft: rgba(51, 92, 79, 0.12);
  --color-primary-strong: #264338;
  --color-highlight: #f6b37a;

  --color-text: #171717;
  --color-muted: #757782;
  --color-border: #e3ddd2;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 35px rgba(23, 23, 23, 0.12);

  --container-width: 1080px;
  --gutter: 1.5rem;

  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #ffffff 0, #faf6f1 55%, #e8dfd5 100%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 221, 210, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
}

.nav__logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 92, 79, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 25% 0, #f7e1c4 0, #335c4f 45%, #1c2f28 100%);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fdfaf5;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-main {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav__logo-sub {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: none;
  padding-bottom: 0.15rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transition: width 160ms ease-out;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 70%;
}

.nav__link--cta {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-primary);
  color: #fffdf7;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  box-shadow: 0 10px 25px rgba(51, 92, 79, 0.25);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  filter: brightness(1.04);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle-line {
  width: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: #171717;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary-strong);
  margin-bottom: 0.7rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero__title span {
  color: var(--color-primary-strong);
}

.hero__subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.hero__quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chip {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fffdf7;
  color: var(--color-muted);
}

/* Hero image */
.hero__image-wrap {
  display: flex;
  justify-content: center;
}

.hero__image {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero__badge--overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(23, 23, 23, 0.85);
  color: #fdfaf5;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(218, 213, 199, 0.8);
}

/* Sections */
.section {
  padding: 3.8rem 0;
}

.section--light {
  background: var(--color-bg-soft);
}

.section--soft {
  background: #fffdf7;
}

.section__inner {
  display: grid;
  gap: 2.5rem;
}

.section__inner--split {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  align-items: start;
}

.section__header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.4rem;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

.section__lead {
  font-size: 1.02rem;
  color: #333335;
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.section__footer {
  margin-top: 2.3rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Cards & Info Blocks */
.info-card,
.story-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
}

.info-card h3,
.story-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

/* Lists */
.bullet-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.bullet-list li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0.4rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  top: 0;
  color: var(--color-primary);
}

.bullet-list--tight li {
  margin-bottom: 0.25rem;
}

/* Services */
.grid {
  display: grid;
  gap: 1.7rem;
}

.grid--services {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--contact {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.09);
}

.service-card__image {
  width: 100%;
  height: auto;              /* keep full image visible */
  display: block;
  border-radius: 0.9rem;
  margin-bottom: 0.9rem;
  background: transparent;   /* remove letterbox wrapper */
}


.service-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.service-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

.service-card__tagline {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--color-primary-strong);
}

.service-card__body {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Story */
.story-highlight {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--color-primary-strong);
}

.story-highlight__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-highlight);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--color-text);
  transition: transform 130ms ease-out, box-shadow 130ms ease-out, background 130ms ease-out,
    border-color 130ms ease-out;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #fffdf7;
  border-color: rgba(51, 92, 79, 0.9);
  box-shadow: 0 12px 26px rgba(51, 92, 79, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(51, 92, 79, 0.4);
}

.btn--ghost {
  border-color: var(--color-border);
  background: #fffdf7;
  color: var(--color-muted);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-strong);
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary-strong);
  background: #fffdf7;
}

.btn--outline:hover {
  background: var(--color-primary-soft);
}

.btn--full {
  width: 100%;
}

/* Contact */
.contact-panel {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.4rem 1.4rem 1.3rem;
}

.contact-panel h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.7rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.contact-list a {
  color: var(--color-primary-strong);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.field input,
.field select,
.field textarea {
  border-radius: 0.7rem;
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(51, 92, 79, 0.35);
}

.field textarea {
  resize: vertical;
}

.form-disclaimer {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  background: #fffdf7;
  border-top: 1px solid #e3ddd2;
  padding: 1.1rem 0 1.4rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__name {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dot {
  opacity: 0.4;
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner,
  .section__inner--split,
  .grid--contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__inner {
    gap: 2.5rem;
  }

  .hero__image-wrap {
    order: -1;
  }

  .contact-form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    inset: calc(100% + 0.2rem) 0 auto;
    max-height: 0;
    overflow: hidden;
    background: #fffdf7;
    border-bottom: 1px solid #e3ddd2;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0 1.5rem 0.2rem;
    transition: max-height 180ms ease-out, padding-bottom 160ms ease-out;
  }
  .nav__links li {
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
  }

  .nav__link--cta {
    width: 100%;
    text-align: center;
    margin-top: 0.2rem;
  }


  .nav.nav--open .nav__links {
    max-height: calc(100vh - 72px);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .hero {
    padding-top: 4.2rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
/* Clean bullets and footer dot - no special characters */

/* Bullet lists */
.bullet-list,
.bullet-list--tight {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullet-list li,
.bullet-list--tight li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.45;
  color: #374151;
  font-size: 0.98rem;
}

.bullet-list--tight li {
  margin-bottom: 0.4rem;
}

/* Draw simple circular bullets with pure CSS */
.bullet-list li::before,
.bullet-list--tight li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #2f6f5f;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

/* Footer separator */
.dot-separator {
  margin: 0 0.5rem;
}
/* ============ MOBILE CLEANUP ============ */

@media (max-width: 640px) {
  .section {
    padding-block: 3rem;
  }

  .hero {
    padding-block: 3rem;
  }

  .hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero__title span {
    font-size: 1.1rem;
  }

  .hero__subtitle {
    font-size: 0.98rem;
  }

  .hero__quick-stats {
    display: none;
  }

  .section__subtitle {
    font-size: 0.98rem;
  }

  .service-card__body {
    font-size: 0.95rem;
  }

  .section__content p {
    font-size: 0.95rem;
  }
}
/* ============================================
   MOBILE CENTERING & CLEAN FRAMING IMPROVEMENTS
   ============================================ */

@media (max-width: 640px) {

  /* Container spacing */
  .container {
    padding-inline: 1.25rem;
  }

  /* HERO SECTION */
  .hero__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero__content {
    max-width: 380px;
    margin-inline: auto;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__title span {
    font-size: 1.15rem;
  }

  .hero__subtitle {
    margin-inline: auto;
    max-width: 360px;
    font-size: 1rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }

  /* ABOUT SECTION */
  .section__inner--split {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .section__content,
  .section__side {
    max-width: 420px;
    margin-inline: auto;
  }

  /* SERVICES */
  .grid--services {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    max-width: 380px;
    margin-inline: auto;
  }

  .service-card__body,
  .service-card__tagline,
  .service-card__label {
    text-align: center;
  }

  /* STORY SECTION */
  .story-card,
  .section__content {
    text-align: center;
  }

  .story-highlight {
    justify-content: center;
  }

  /* CONTACT SECTION */
  .grid--contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-panel,
  .contact-form {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =====================
   GALLERY (3-up slider)
   ===================== */

.gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.gallery-feature__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.gallery-feature__text {
  margin: 0 0 1rem;
  color: var(--color-muted);
  max-width: 38rem;
}

.gallery-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-feature__images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.gallery-feature__img {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 221, 210, 0.9);
  background: #ffffff;
}

.gallery-feature__img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-feature__img--tall img {
  min-height: 360px;
}

.gallery-slider-wrap {
  position: relative;
}

.gallery-slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(227, 221, 210, 0.9);
  background: rgba(255, 253, 247, 0.55);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.08);
}

.slider-track {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  will-change: transform;
  transition: transform 280ms ease;
}

.slider-item {
  margin: 0;
  flex: 0 0 calc((100% - 2rem) / 3);
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(227, 221, 210, 0.9);
}

.slider-item img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 92, 79, 0.35);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.14);
}

.slider-btn span {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-primary-strong);
}

.slider-btn--prev {
  left: -0.6rem;
}

.slider-btn--next {
  right: -0.6rem;
}

.slider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gallery-hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .gallery-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .slider-item {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .slider-btn--prev {
    left: 0.35rem;
  }

  .slider-btn--next {
    right: 0.35rem;
  }
}

@media (max-width: 640px) {
  .slider-item {
    flex-basis: 100%;
  }

  .slider-item img {
    height: 240px;
  }
}

/* =====================
   Logo + Gallery Add-ons
   ===================== */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav__brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav__brand-logo {
    height: 44px;
  }
}

/* In Motion */
.motion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.motion-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.motion-card img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* Gallery slider */
.gallery {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (1rem * 2)) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0.3rem 0;
  scrollbar-width: none;
}

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

.gallery__item {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.08);
  /* Match service photos */
  aspect-ratio: 3 / 4;
}


.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fffdf7;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(23, 23, 23, 0.1);
}

.gallery__btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.gallery__hint {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .gallery__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 600px) {
  .motion-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery__btn {
    display: none;
  }

  .gallery__track {
    grid-auto-columns: 85%;
  }
}


/* Mobile readability: keep headings centered, but make body + bullets easier to read */
@media (max-width: 640px) {
  .service-card__body {
    text-align: left;
  }

  .bullet-list,
  .bullet-list--tight {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .bullet-list li,
  .bullet-list--tight li {
    text-align: left;
  }
}


/* Contact form polish on mobile */
@media (max-width: 640px) {
  .contact-panel,
  .contact-form {
    padding: 1.15rem 1rem 1rem;
    border-radius: 1.1rem;
  }

  .contact-panel h3 {
    margin-bottom: 0.65rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .field {
    margin-bottom: 0.85rem;
  }

  .field label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-align: left;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
    padding: 0.7rem 0.85rem;
  }

  .btn--full {
    padding: 0.95rem 1rem;
    border-radius: 999px;
  }

  .form-disclaimer {
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Render the brand mark as an image when used in the footer */
img.nav__logo-mark {
  display: block;
  object-fit: cover;
  background: none;
}


/* Header logo: mark + readable text */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  min-width: 0;
}

.nav__logo-mark-img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.nav__logo-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink, #1a1a1a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__logo-tag {
  margin-top: 0.18rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  color: var(--ink, #1a1a1a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .nav__logo-mark-img {
    width: 38px;
    height: 38px;
  }
  .nav__logo-name {
    font-size: 0.9rem;
    letter-spacing: 0.07em;
  }
  .nav__logo-tag {
    display: none;
  }
}


/* Header logo: text-only */
.nav__logo-mark-img { display: none !important; }
.nav__logo { gap: 0.25rem; }

/* Thank-you page (scoped) */
body.thankyou {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
}
.thankyou__wrap { width: 100%; max-width: 720px; }
.thankyou__card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 28px 22px;
  text-align: center;
}
.thankyou__card h1 { margin: 0 0 10px; }
.thankyou__card p { margin: 0 0 18px; }
