/* ========================================
   SEANMARTIN.LIFE — Styles
   Adapted from Kento Kawazoe reference
   ======================================== */

/* --- Custom Fonts --- */
@font-face {
  font-family: 'Qurova';
  src: url('QurovaDEMO-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --bg: #0F0F0F;
  --text: #F0EBE3;
  --muted: #F0EBE3AA;
  --border: #F0EBE330;
  --surface: #1A1A1A;
  --font: 'Josefin Sans', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
}

[data-theme="light"] {
  --bg: #FFFFFF;
  --text: #0D0D0D;
  --muted: #0D0D0DAA;
  --border: #0D0D0D30;
  --surface: #F5F5F5;
}

[data-theme="light"] .dropdown-menu::before {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0) 80%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  transition: background-color 0.6s ease, color 0.6s ease;
  overflow-x: hidden;
}


/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 2px;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/* --- Fixed Top Navigation Bar --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: var(--bg);
  transition: background-color 0.6s ease;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-family: 'Teko', sans-serif;
  font-size: clamp(20px, 1.9vw, 30px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 2px 0;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  display: inline-block;
  transform-origin: center;
}

.nav-name {
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-left: 1vw;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 0.5px;
  background-color: var(--text);
  transition: width 0.18s ease;
}

.nav-link:hover {
  color: var(--text);
  opacity: 1;
  transform: scale(1.13);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  width: 100%;
}

/* Contact wiggle */
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(4deg); }
  30% { transform: rotate(-3.5deg); }
  45% { transform: rotate(2.5deg); }
  55% { transform: rotate(-1.5deg); }
  65% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.nav-contact {
  animation: wiggle 1.4s ease-in-out infinite;
}

.nav-contact:hover {
  animation: none;
  transform: scale(1.13);
  transition: transform 0.18s ease, color 0.18s ease;
}

.nav-contact:not(:hover) {
  animation-delay: 0.5s;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px 40px 12px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  background: none;
  border: none;
  z-index: 10;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  inset: -20px -30px;
  background: radial-gradient(ellipse at center, rgba(15, 15, 15, 0.2) 30%, rgba(15, 15, 15, 0) 80%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  z-index: -1;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-link {
  font-family: 'Teko', sans-serif;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.3s ease;
  text-decoration: none;
}

.dropdown-link:hover {
  color: var(--text);
  opacity: 1;
}

.dropdown-link.active {
  color: var(--text);
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 110;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Dark/Light Mode Toggle (sliding pill) --- */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}

.toggle-track {
  position: relative;
  display: block;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  border: 1.5px solid var(--text);
  transition: border-color 0.3s ease;
}

.toggle-dot {
  position: absolute;
  top: 50%;
  left: 2.5px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--text);
  transition: transform 0.25s ease;
}

[data-theme="light"] .toggle-dot {
  transform: translateX(0);
}

[data-theme="dark"] .toggle-dot {
  transform: translateX(24px);
}

/* --- Pages --- */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* --- Page Content (inner pages) --- */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  text-align: center;
}

/* --- Section Inner --- */
.section-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Homepage: Single-screen typography --- */
#page-home {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.home-typography {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

.home-pp {
  font-family: 'Teko', 'Roboto Condensed', sans-serif;
  font-size: clamp(1.5rem, 5.1vw, 6.8rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.8vw;
  margin-left: 1vw;
}

.coaching-wrap {
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 0.82;
  margin-bottom: -3vw;
  margin-right: 0.3vw;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.18s ease;
}

.coaching-wrap:hover {
  opacity: 1;
}

.coaching-base,
.coaching-reveal {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3.5rem, 17.5vw, 30rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.82;
  display: block;
  white-space: nowrap;
}

.coaching-base {
  color: var(--text);
}

.coaching-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('coaching-reveal.jpg');
  background-size: cover;
  background-position: center 40%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  user-select: none;
}

.coaching-wrap:hover .coaching-reveal {
  opacity: 1;
}

.home-sub {
  display: flex;
  gap: 2vw;
  justify-content: flex-end;
  padding-right: 1vw;
  position: relative;
  z-index: 10;
}

.sub-word {
  font-family: 'Teko', 'Roboto Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.18s ease;
  position: relative;
  z-index: 11;
  transform-origin: center;
}

.sub-text {
  position: relative;
}

.sub-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background-color: var(--text);
  transition: width 0.18s ease;
}

.sub-icon {
  height: 0.9em;
  width: auto;
  vertical-align: -0.05em;
  margin-right: 0.25em;
  display: inline-block;
}

.sub-word:hover {
  transform: scale(1.13);
  opacity: 1;
}

.sub-word:hover .sub-text::after {
  width: calc(100% - 0.12em);
}

.home-inquiry {
  position: absolute;
  bottom: 30px;
  left: calc(30px + 1vw);
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.home-inquiry a {
  font-family: 'Teko', sans-serif;
  font-size: clamp(20px, 1.9vw, 30px);
  color: var(--muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.18s ease;
}

.home-inquiry a:hover {
  color: var(--text);
  opacity: 1;
}

/* --- CTA Button --- */
.cta-button {
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 16px 40px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  margin-top: 32px;
}

.cta-button:hover {
  opacity: 0.6;
}

/* --- Text Link --- */
.text-link {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  display: inline-block;
  margin-top: 24px;
}

/* --- Eyebrow Label --- */
.eyebrow {
  font-family: 'Teko', sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.eyebrow-icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.15em;
  margin-right: 0.4em;
}

.eyebrow-rule {
  width: 32px;
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 16px auto 44px;
}

/* --- Service Tags --- */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  justify-content: center;
}

.service-tag {
  font-family: 'Teko', sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 24px 8px;
}

/* --- Accordion --- */
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 6px;
  text-align: center;
}

.accordion-label {
  font-family: 'Teko', sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accordion-arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: arrowBounce 1.6s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.accordion-toggle.open .accordion-arrow {
  animation: none;
  transform: rotate(-135deg);
  opacity: 0.4;
}

@keyframes arrowBounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 5px; }
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body.open {
  max-height: 2000px;
}

/* --- Section Divider --- */
.section-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 20px auto;
  max-width: 200px;
}

/* --- Body Text --- */
.body-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}

.body-italic {
  font-style: italic;
}

/* --- Page Headline --- */
.page-headline {
  font-family: 'Teko', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 44px;
}

/* --- Content Section --- */
.content-section {
  padding: 28px 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  border: 0.5px solid var(--border);
  padding: 36px 24px;
  background: transparent;
  text-align: center;
}

.card-label {
  font-family: 'Teko', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}

.card-headline {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* --- How It Works Steps --- */
.hiw-steps,
.process-steps {
  margin-top: 48px;
}

.hiw-step,
.process-step {
  margin-bottom: 52px;
}

.step-number {
  font-family: 'Teko', sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hiw-intro {
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-top: 0.5px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0.5px solid var(--border);
}

.faq-question {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 32px 20px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
  line-height: 1.5;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-question:hover {
  opacity: 0.6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 0 20px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 32px;
}

.testimonial-block {
  padding: 28px;
  border: 0.5px solid var(--border);
  text-align: center;
}

.testimonial-quote {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: 'Teko', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
}

.testimonial-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}

/* --- Focus List (niche pages) --- */
.focus-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
}

.focus-item {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.85;
  color: var(--text);
  opacity: 1;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 0;
}

/* --- About Photos --- */
.photo-editorial {
  margin: 48px 0;
}

.about-photo {
  width: 60%;
  max-height: 420px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.photo-row {
  display: flex;
  gap: 16px;
}

.photo-row .about-photo {
  width: 50%;
  max-height: 450px;
  aspect-ratio: 3 / 4;
}

/* --- Contact Form --- */
.contact-form {
  margin-top: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form .cta-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--text);
}

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

/* --- Footer --- */
.site-footer {
  width: 100%;
  padding: 60px 30px 40px;
  border-top: 0.5px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 1vw;
}

.footer-name {
  font-family: 'Teko', sans-serif;
  font-size: clamp(20px, 1.9vw, 30px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}

.footer-col-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-family: 'Teko', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
  opacity: 1;
}

.footer-col-right {
  text-align: right;
}

.footer-label {
  font-family: 'Teko', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-detail {
  font-family: 'Teko', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0;
}

.footer-separator {
  opacity: 0.3;
  cursor: default;
}

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 20px 1vw 0;
}

.footer-bottom p {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
}


/* ========================================
   RESPONSIVE -- MOBILE (<768px)
   ======================================== */
@media (max-width: 767px) {

  /* Nav becomes slide-out on mobile */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
    z-index: 100;
    transition: background-color 0.6s ease;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    padding: 56px 24px 24px;
    gap: 14px;
    align-items: flex-end;
  }

  .sidebar.open .nav-links {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .theme-toggle {
    margin-left: 0;
    margin-top: 8px;
  }

  /* Dropdown on mobile */
  .nav-dropdown:hover .dropdown-menu,
  .dropdown-menu {
    display: none;
    padding-left: 14px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }

  /* Homepage on mobile */
  .home-scroll-container {
    height: auto;
    overflow-y: visible;
  }

  .home-section {
    min-height: auto;
    padding: 60px 24px;
    padding-left: 24px;
  }

  /* Homepage typography on mobile */
  .home-typography {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-pp {
    margin-bottom: 3vw;
  }

  .coaching-wrap {
    margin-bottom: 5vw;
  }

  .home-sub {
    gap: 4vw;
  }

  /* Inner page content */
  .page-content {
    padding: 80px 20px 60px;
  }

  .page-headline {
    font-size: 24px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 20px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-col-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-col-right {
    text-align: center;
  }

  /* Service tags on mobile */
  .service-tags {
    gap: 8px;
  }

  .service-tag {
    font-size: 15px;
    padding: 8px 14px 6px;
  }

  /* Accordion on mobile */
  .accordion-label {
    font-size: 24px;
  }

  /* About photos on mobile */
  .about-photo {
    width: 100%;
    max-height: 350px;
  }

  .photo-row {
    flex-direction: column;
    gap: 12px;
  }

  .photo-row .about-photo {
    width: 100%;
    aspect-ratio: auto;
    max-height: 400px;
  }

  .photo-editorial {
    margin: 32px 0;
  }

  /* Body text on mobile */
  .body-text {
    font-size: 17px;
  }

  /* Sub-words on mobile */
  .home-sub {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sub-word {
    font-size: clamp(1rem, 5vw, 1.6rem);
  }

  /* Home inquiry on mobile */
  .home-inquiry {
    font-size: 14px;
  }

  /* Dropdown on mobile -- no glass effect */
  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    padding: 0 0 0 14px;
    min-width: 0;
  }

  /* CTA button on mobile */
  .cta-button {
    font-size: 16px;
    padding: 14px 28px;
  }

  /* Contact form on mobile */
  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }
}

/* Tablet tweaks */
@media (min-width: 768px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
