/* ============================================================
   Athmos Theme — Custom Stylesheet v1.4.0
   ============================================================ */

/* --- Fonts --- */
@font-face {
	font-family: 'Athmos Busorama';
	src: url('../fonts/busorama.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'Athmos Marcellus';
	src: url('../fonts/Marcellus-llzw.ttf') format('truetype');
	font-display: swap;
}

/* --- Design Tokens --- */
:root {
	/* Colors */
	--athmos-bg: #f8f4ee;
	--athmos-bg-soft: #fdfbf7;
	--athmos-bg-sage: #edf1ea;
	--athmos-ink: #223127;
	--athmos-ink-soft: #5c6c61;
	--athmos-sage: #6f816f;
	--athmos-sage-deep: #4a5d4d;
	--athmos-sage-dark: #233225;
	--athmos-gold: #c6a14a;
	--athmos-gold-deep: #8d7231;
	--athmos-on-dark: #fff7eb;
	--athmos-on-dark-soft: rgba(255, 250, 240, 0.9);
	--athmos-on-dark-muted: rgba(255, 250, 240, 0.82);
	--athmos-on-dark-accent: #d6b76e;
	--athmos-line: rgba(34, 49, 39, 0.11);
	--athmos-line-strong: rgba(34, 49, 39, 0.18);

	/* Shadows */
	--athmos-shadow-sm: 0 8px 24px rgba(29, 42, 32, 0.07);
	--athmos-shadow-md: 0 16px 48px rgba(29, 42, 32, 0.11);
	--athmos-shadow-lg: 0 24px 64px rgba(20, 31, 24, 0.14);

	/* Radii */
	--athmos-radius-sm: 12px;
	--athmos-radius: 20px;
	--athmos-radius-lg: 28px;

	/* Layout */
	--athmos-shell: 1200px;

	/* Spacing — standardized */
	--athmos-section-py: clamp(3rem, 2rem + 2.5vw, 4.5rem);
	--athmos-section-px: clamp(1.2rem, 0.8rem + 1vw, 1.5rem);
	--athmos-card-pad: 1.5rem;
	--athmos-grid-gap: 1.25rem;
	--athmos-stack-xs: 0.4rem;
	--athmos-stack-sm: 0.65rem;
	--athmos-stack: 1rem;
	--athmos-stack-lg: 1.5rem;

	/* Transition */
	--athmos-transition: 220ms ease;
}

/* --- Reset & Base --- */
html {
	scroll-behavior: smooth;
}

body {
	background: var(--athmos-bg-soft);
	color: var(--athmos-ink);
	font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	color: var(--athmos-ink);
	font-family: 'Athmos Marcellus', Georgia, serif !important;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

p, li, td, th, input, textarea, select, button,
.wp-block-paragraph {
	font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
	font-weight: 400;
}

.wp-block-paragraph,
.entry-content p,
p,
li {
	color: var(--athmos-ink-soft);
	font-size: 0.92rem !important;
	line-height: 1.72 !important;
}

a {
	color: inherit;
	transition: color var(--athmos-transition), opacity var(--athmos-transition), border-color var(--athmos-transition), transform var(--athmos-transition);
}

a:hover {
	opacity: 0.88;
}

.entry-content a:not(.wp-block-button__link),
.wp-block-post-content a:not(.wp-block-button__link) {
	color: var(--athmos-sage-deep);
	text-decoration: none;
	border-bottom: 1px solid rgba(111, 129, 111, 0.3);
}

.entry-content a:not(.wp-block-button__link):hover,
.wp-block-post-content a:not(.wp-block-button__link):hover {
	border-bottom-color: var(--athmos-gold);
}

::selection {
	background: rgba(198, 161, 74, 0.24);
	color: var(--athmos-ink);
}

:focus-visible {
	outline: 2px solid var(--athmos-gold-deep);
	outline-offset: 3px;
}

/* --- Layout Shell --- */
.wp-site-blocks {
	padding-left: 0;
	padding-right: 0;
}

.athmos-site-header,
.athmos-site-footer,
.athmos-main {
	display: block;
}

/* Kill WordPress blockGap between template parts and sections */
.wp-site-blocks > * + * {
	margin-block-start: 0 !important;
}

.athmos-main {
	margin: 0;
	padding: 0;
}

/* --- Skip Link --- */
.athmos-skip-link {
	background: #ffffff;
	border: 1px solid rgba(34, 49, 39, 0.12);
	border-radius: 999px;
	box-shadow: var(--athmos-shadow-sm);
	color: var(--athmos-ink);
	left: 20px;
	opacity: 0;
	padding: 0.8rem 1rem;
	pointer-events: none;
	position: fixed;
	text-decoration: none;
	top: 16px;
	transform: translateY(-180%);
	transition: transform var(--athmos-transition);
	z-index: 10001;
}

.athmos-skip-link:focus-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* --- Topbar --- */
.athmos-topbar {
	background:
		linear-gradient(90deg, rgba(31, 45, 33, 0.98), rgba(58, 78, 56, 0.96)),
		radial-gradient(circle at top left, rgba(198, 161, 74, 0.16), transparent 34%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 248, 236, 0.92);
	display: flex;
	font-size: 0.78rem;
	justify-content: center;
	letter-spacing: 0.04em;
}

.athmos-topbar__inner {
	align-items: center;
	display: flex;
	gap: 0.6rem 1.4rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--athmos-shell);
	width: 100%;
}

.athmos-topbar p {
	color: inherit;
	font-size: inherit;
	font-weight: 500;
	line-height: 1.45;
	margin: 0;
}

.athmos-topbar__links {
	font-size: 0.76rem;
	white-space: nowrap;
}

.athmos-topbar a {
	color: rgba(255, 248, 236, 0.94) !important;
	text-decoration: none;
}

/* --- Header --- */
.athmos-header {
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	background: rgba(248, 243, 234, 0.92);
	border-bottom: none;
	box-shadow: 0 8px 24px rgba(26, 37, 29, 0.04);
	display: flex;
	justify-content: center;
}

.athmos-header .wp-block-group {
	align-items: center;
}

.athmos-header__inner {
	display: flex;
	gap: clamp(1.6rem, 1rem + 1vw, 2.7rem);
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--athmos-shell);
	width: 100%;
}

.athmos-header__brand {
	flex: 0 0 auto;
}

.athmos-brand-lockup {
	display: flex;
	align-items: center;
}

.athmos-brand-lockup a {
	align-items: center;
	display: inline-flex;
	position: relative;
	text-decoration: none;
}

.athmos-brand-lockup img {
	display: block;
	height: auto;
	width: clamp(180px, 15vw, 240px);
	height: auto;
}

.athmos-header__actions {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 1rem;
	justify-content: flex-end;
	min-width: 0;
}

.athmos-header__nav {
	flex: 0 1 auto;
	min-width: 0;
}

.athmos-header__nav .wp-block-navigation__container {
	align-items: center;
	gap: clamp(1rem, 0.7rem + 0.45vw, 1.45rem);
}

/* Active nav item highlight */
.athmos-header__nav .wp-block-navigation-item__content[aria-current="page"] {
	color: var(--athmos-gold-deep) !important;
	border-bottom: 2px solid var(--athmos-gold);
	padding-bottom: 2px;
}

/* Active item in overlay menu */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content[aria-current="page"] {
	color: var(--athmos-gold-deep) !important;
}

.athmos-header__cta {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	margin-left: 0.35rem;
	padding-left: 1rem;
	position: relative;
}

.athmos-header__cta::before {
	background: rgba(34, 49, 39, 0.11);
	border-radius: 999px;
	content: '';
	height: 2rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.athmos-header .wp-block-buttons {
	margin: 0;
}

.athmos-header-note {
	color: var(--athmos-sage-deep);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wp-block-navigation .wp-block-navigation-item__content {
	color: var(--athmos-ink) !important;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
	color: var(--athmos-sage-deep) !important;
}

/* Disable backdrop-filter when menu is open (it creates a containing block that traps position:fixed) */
.athmos-header:has(.is-menu-open) {
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--athmos-bg) !important;
	color: var(--athmos-ink) !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	z-index: 100000 !important;
	overflow-y: auto !important;
	display: flex !important;
	flex-direction: column !important;
	padding: 1.5rem !important;
}

/* Close button */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	align-self: flex-end;
	margin-bottom: 1rem;
}

/* Logo in menu overlay via ::before */
.wp-block-navigation__responsive-container.is-menu-open::before {
	content: '';
	display: block;
	width: 160px;
	height: 36px;
	margin: 0 auto 2rem;
	background: url('/wp-content/themes/athmos/assets/images/logo-horizontal.svg') no-repeat center / contain;
	opacity: 0.85;
}

/* Nav links */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 0;
	width: 100%;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	max-width: 260px;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	display: block;
	padding: 1rem 0;
	font-size: 1.15rem;
	font-family: 'Athmos Marcellus', Georgia, serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-align: center;
	border-bottom: 1px solid var(--athmos-line);
}

/* Menu footer: brand identity + CTA */
.wp-block-navigation__responsive-container.is-menu-open::after {
	content: 'Odontologia Premium em Salvador';
	display: block;
	margin-top: auto;
	padding-top: 2rem;
	font-size: 0.72rem;
	color: var(--athmos-ink-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}

/* --- Buttons --- */
.wp-element-button,
.wp-block-button__link {
	border: 1px solid transparent;
	border-radius: 999px !important;
	box-shadow: none;
	font-size: 0.88rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em;
	padding: 0.9rem 1.5rem !important;
	text-transform: uppercase;
	transition: transform var(--athmos-transition), box-shadow var(--athmos-transition), background var(--athmos-transition);
}

.wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: var(--athmos-shadow-sm);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	border-color: rgba(34, 49, 39, 0.16) !important;
	color: var(--athmos-ink) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(111, 129, 111, 0.07) !important;
	border-color: rgba(34, 49, 39, 0.24) !important;
}

/* --- Section Backgrounds --- */
.athmos-section--cream {
	background: linear-gradient(180deg, #f8f3ea 0%, #f2ebdf 100%);
	position: relative;
	overflow: hidden;
}

.athmos-section--sage {
	background:
		linear-gradient(180deg, rgba(238, 243, 236, 0.98), rgba(231, 237, 229, 0.98)),
		radial-gradient(circle at top left, rgba(198, 161, 74, 0.06), transparent 26%);
	position: relative;
	overflow: hidden;
}

.athmos-section--white {
	background: linear-gradient(180deg, #fcfaf6 0%, #faf7f1 100%);
}

.athmos-section--deep {
	background:
		linear-gradient(180deg, #eef3ec 0%, #e3e9e0 100%),
		radial-gradient(circle at top left, rgba(198, 161, 74, 0.08), transparent 28%);
	color: var(--athmos-ink);
	position: relative;
	overflow: hidden;
}

.athmos-page-hero {
	background:
		linear-gradient(180deg, #f5f0e6 0%, #e9efe5 100%),
		radial-gradient(circle at top right, rgba(198, 161, 74, 0.12), transparent 32%);
	color: var(--athmos-ink);
	position: relative;
	overflow: hidden;
}

/* Subtle radial accents */
.athmos-page-hero::before,
.athmos-section--deep::before,
.athmos-section--cream::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle at 12% 18%, rgba(198, 161, 74, 0.04), transparent 24%),
		radial-gradient(circle at 88% 0%, rgba(111, 129, 111, 0.06), transparent 28%);
}

/* --- Flower of Life Watermark --- */
.athmos-section--sage::after,
.athmos-section--deep::after {
	content: '';
	position: absolute;
	aspect-ratio: 1;
	background: url('/wp-content/themes/athmos/assets/images/flower-of-life-watermark.svg') no-repeat center / contain;
	pointer-events: none;
	z-index: 0;
}

/* Sage: off-center seal behind the specialty grid, cropped at top */
.athmos-section--sage::after {
	width: clamp(480px, 52vw, 720px);
	left: 57%;
	top: -8%;
	transform: translateX(-50%);
	opacity: 0.08;
}

/* Deep/CTA: partial flower emerging from left edge */
.athmos-section--deep::after {
	width: clamp(280px, 30vw, 420px);
	left: -12%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.05;
}

/* Page hero: subtle flower at right edge — brand stamp on every internal page */
.athmos-page-hero::after {
	content: '';
	position: absolute;
	width: clamp(180px, 20vw, 280px);
	aspect-ratio: 1;
	right: -6%;
	top: 50%;
	transform: translateY(-50%);
	background: url('/wp-content/themes/athmos/assets/images/flower-of-life-watermark.svg') no-repeat center / contain;
	pointer-events: none;
	z-index: 0;
	opacity: 0.05;
}

/* Dark sections text */
.athmos-page-hero h1, .athmos-page-hero h2, .athmos-page-hero h3,
.athmos-section--deep h1, .athmos-section--deep h2, .athmos-section--deep h3,
.athmos-cta-card h1, .athmos-cta-card h2, .athmos-cta-card h3 {
	color: var(--athmos-ink) !important;
}

.athmos-page-hero .wp-block-heading,
.athmos-section--deep .wp-block-heading,
.athmos-cta-card .wp-block-heading {
	color: var(--athmos-ink) !important;
}

.athmos-page-hero p,
.athmos-section--deep p {
	color: var(--athmos-ink-soft);
}

.athmos-page-hero .athmos-kicker,
.athmos-section--deep .athmos-kicker,
.athmos-cta-card .athmos-kicker {
	color: var(--athmos-gold-deep) !important;
}

/* --- Typography Classes --- */
.athmos-kicker {
	color: var(--athmos-gold-deep) !important;
	font-family: "Aptos", "Segoe UI", sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
}

.athmos-lead {
	font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
	line-height: 1.82;
	max-width: 38rem;
}

.athmos-display {
	font-size: clamp(2.2rem, 1.6rem + 1.8vw, 3.4rem);
	line-height: 1.02;
	max-width: 14ch;
}

/* --- Section Layout --- */
.athmos-page-hero > section,
:is(.athmos-section--white, .athmos-section--cream, .athmos-section--sage, .athmos-section--deep) > section:not(.athmos-hero-grid):not(.athmos-content-grid):not(.athmos-map-card):not(.athmos-cta-card) {
	display: grid;
	align-content: start;
	gap: var(--athmos-stack);
	position: relative;
	z-index: 1;
}

.athmos-page-hero > section > *,
:is(.athmos-section--white, .athmos-section--cream, .athmos-section--sage, .athmos-section--deep) > section:not(.athmos-hero-grid):not(.athmos-content-grid):not(.athmos-map-card):not(.athmos-cta-card) > * {
	margin: 0 !important;
}

/* Section H2 — harmonized scale */
:is(.athmos-section--white, .athmos-section--cream, .athmos-section--sage, .athmos-section--deep) > section h2 {
	font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem);
	line-height: 1.08;
	max-width: 18ch;
}

.athmos-page-hero > section {
	max-width: 780px;
}

.athmos-page-hero > section > h1,
.athmos-page-hero > section > h2 {
	font-size: clamp(2rem, 1.5rem + 1.6vw, 3.2rem);
	line-height: 1.05;
	max-width: 15ch;
}

/* Reset margin on grids inside sections */
:is(.athmos-section--white, .athmos-section--cream, .athmos-section--sage, .athmos-section--deep) > section:not(.athmos-hero-grid):not(.athmos-content-grid):not(.athmos-map-card):not(.athmos-cta-card) > :is(.athmos-trust-strip, .athmos-specialty-grid, .athmos-team-grid, .athmos-value-grid, .athmos-process-grid, .athmos-contact-grid, .athmos-faq-grid, .athmos-gallery-grid, .athmos-cases-grid, .athmos-review-grid, .athmos-badge-row, .athmos-map-card, .athmos-note, .athmos-empty-state, .wp-block-buttons, .athmos-review-header) {
	margin-top: 0 !important;
}

/* --- Hero Section (content-fitted) --- */
.athmos-section--hero {
	overflow: hidden;
	padding-top: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) !important;
	padding-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.athmos-hero-grid {
	display: grid;
	gap: clamp(1.2rem, 0.8rem + 0.8vw, 1.8rem);
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	align-items: stretch;
	width: 100%;
	max-width: var(--athmos-shell);
}

.athmos-hero-panel {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--athmos-line);
	border-radius: var(--athmos-radius);
	box-shadow: var(--athmos-shadow-sm);
	display: grid;
	align-content: center;
	gap: clamp(1rem, 0.7rem + 0.5vw, 1.4rem);
	padding: clamp(1.8rem, 1.4rem + 0.8vw, 2.5rem);
	overflow: hidden;
}

.athmos-hero-panel > * {
	margin: 0 !important;
}

.athmos-hero-panel .athmos-lead {
	max-width: 30rem;
}

.athmos-hero-panel .wp-block-buttons,
.athmos-cta-card .wp-block-buttons {
	margin-top: 0 !important;
}

.athmos-hero-media {
	min-width: 0;
}

.athmos-hero-media img {
	border-radius: var(--athmos-radius);
	display: block;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center 20%;
	width: 100%;
}

/* Hero Badges */
.athmos-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.athmos-badge {
	align-items: center;
	background: rgba(198, 161, 74, 0.1);
	border: 1px solid rgba(198, 161, 74, 0.2);
	border-radius: 999px;
	display: inline-flex;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
}

.athmos-badge strong {
	color: var(--athmos-gold-deep);
	font-family: 'Athmos Marcellus', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1;
}

.athmos-badge,
.athmos-badge span {
	color: var(--athmos-ink-soft);
	font-size: 0.78rem !important;
	font-weight: 500;
}

/* Chips */
.athmos-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.athmos-chip {
	background: rgba(111, 129, 111, 0.07);
	border: 1px solid rgba(111, 129, 111, 0.13);
	border-radius: 999px;
	color: var(--athmos-ink);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.5rem 0.82rem;
}

/* --- Trust Strip (compact bar with icons) --- */
.athmos-trust-strip {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, 1fr);
}

.athmos-trust-item {
	align-items: center;
	border-right: 1px solid var(--athmos-line);
	display: flex;
	gap: 0.75rem;
	padding: 1.2rem 1.25rem;
}

.athmos-trust-item:last-child {
	border-right: none;
}

.athmos-trust-item__icon {
	align-items: center;
	color: var(--athmos-gold);
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}

.athmos-trust-item__icon svg {
	height: 28px;
	width: 28px;
}

.athmos-trust-item__text {
	display: grid;
	gap: 0.15rem;
}

.athmos-trust-item__text strong {
	color: var(--athmos-ink);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
}

.athmos-trust-item__text span {
	color: var(--athmos-ink-soft);
	font-size: 0.78rem;
	line-height: 1.35;
}

/* --- Card Base --- */
.athmos-card,
.athmos-info-card,
.athmos-team-card,
.athmos-value-card,
.athmos-contact-card,
.athmos-faq-item,
.athmos-process-card,
.athmos-specialty-card,
.athmos-case-card,
.athmos-review-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--athmos-line);
	border-radius: var(--athmos-radius);
	box-shadow: var(--athmos-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover (all interactive cards) */
.athmos-specialty-card:hover,
.athmos-value-card:hover,
.athmos-process-card:hover,
.athmos-faq-item:hover,
.athmos-case-card:hover,
.athmos-review-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--athmos-shadow-md);
}

/* --- Grids --- */
.athmos-specialty-grid,
.athmos-value-grid,
.athmos-process-grid,
.athmos-contact-grid {
	display: grid;
	gap: var(--athmos-grid-gap);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.athmos-team-grid {
	display: grid;
	gap: var(--athmos-grid-gap);
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.athmos-faq-grid {
	display: grid;
	gap: var(--athmos-grid-gap);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* --- Specialty Cards --- */
.athmos-specialty-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.92));
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
	padding: var(--athmos-card-pad);
}

.athmos-specialty-card > * {
	margin: 0 !important;
}

.athmos-specialty-card__icon {
	align-items: center;
	background: rgba(198, 161, 74, 0.12);
	border-radius: 50%;
	color: var(--athmos-gold-deep);
	display: inline-flex;
	height: 2.8rem;
	justify-content: center;
	margin-bottom: 0.5rem;
	width: 2.8rem;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.athmos-specialty-card__icon svg {
	height: 20px;
	width: 20px;
}

.athmos-specialty-card:hover .athmos-specialty-card__icon {
	transform: scale(1.1) rotate(3deg);
}

/* Specialty title icon (inline with h1 on single specialty pages) */
.athmos-specialty-title-icon {
	align-items: center;
	background: rgba(198, 161, 74, 0.12);
	border-radius: 50%;
	color: var(--athmos-gold-deep);
	display: inline-flex;
	height: 1.1em;
	justify-content: center;
	margin-right: 0.3em;
	vertical-align: -0.1em;
	width: 1.1em;
}

.athmos-specialty-title-icon svg {
	height: 0.55em;
	width: 0.55em;
}

/* Unified h3 — single size across ALL h3 elements */
h3,
.wp-block-heading:where(h3) {
	font-size: 1.15rem !important;
	font-weight: 400;
	line-height: 1.2;
}

/* Card body text color (size inherited from global p rule above) */
.athmos-specialty-card p,
.athmos-value-card p,
.athmos-process-card p,
.athmos-contact-card p,
.athmos-faq-item p,
.athmos-case-card__body p,
.athmos-team-card__note,
.athmos-review-card p {
	color: var(--athmos-ink-soft);
}

/* --- Trust Card (legacy compat) --- */
.athmos-trust-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--athmos-line);
	border-radius: var(--athmos-radius);
	box-shadow: var(--athmos-shadow-sm);
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
	padding: var(--athmos-card-pad);
}

.athmos-trust-card > * {
	margin: 0 !important;
}

.athmos-trust-card strong {
	color: var(--athmos-ink);
	font-family: 'Athmos Marcellus', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.16;
}

/* --- Value / Process / Contact Cards --- */
.athmos-value-card,
.athmos-process-card,
.athmos-contact-card {
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
	height: 100%;
	padding: var(--athmos-card-pad);
}

.athmos-value-card > *,
.athmos-process-card > *,
.athmos-contact-card > *,
.athmos-faq-item > *,
.athmos-cta-card > *,
.athmos-team-card__body > *,
.athmos-map-card__body > div > *,
.athmos-specialty-card > * {
	margin: 0 !important;
}

.athmos-contact-card strong,
.athmos-contact-card a {
	color: var(--athmos-ink);
	font-size: 0.92rem !important;
	font-weight: 600;
}

/* --- Team Cards --- */
.athmos-team-card {
	display: flex;
	flex-direction: column;
	grid-column: span 2;
	overflow: hidden;
	height: 100%;
}

.athmos-team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--athmos-shadow-md);
}

.athmos-team-card img {
	aspect-ratio: 4 / 5;
	block-size: clamp(300px, 28vw, 400px);
	display: block;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.athmos-team-card__body {
	display: grid;
	align-content: start;
	flex: 1 1 auto;
	gap: 0.45rem;
	padding: var(--athmos-card-pad);
}

/* team card title size unified above in card h3 block */

.athmos-team-card__role {
	color: var(--athmos-sage-deep);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* team card note size unified above in card body text block */

.athmos-team-card__meta {
	color: var(--athmos-gold-deep);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* --- Clinical Cases --- */
.athmos-cases-grid {
	display: grid;
	gap: var(--athmos-grid-gap);
	grid-template-columns: repeat(2, 1fr);
}

.athmos-case-card {
	display: grid;
	gap: var(--athmos-stack);
	overflow: hidden;
	padding: 0;
}

.athmos-case-card__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.athmos-case-card__before,
.athmos-case-card__after {
	overflow: hidden;
	position: relative;
}

.athmos-case-card__before img,
.athmos-case-card__after img {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.athmos-case-card__label {
	background: rgba(34, 49, 39, 0.72);
	backdrop-filter: blur(4px);
	border-radius: 999px;
	bottom: 0.65rem;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	left: 0.65rem;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.65rem;
	position: absolute;
	text-transform: uppercase;
}

.athmos-case-card__body {
	padding: var(--athmos-card-pad);
}

.athmos-case-card__body h3 {
	margin: 0;
}

/* case card h3 and p sizes unified above in card h3/body blocks */

/* --- Google Reviews --- */
.athmos-review-header {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.athmos-review-score {
	color: var(--athmos-gold-deep);
	font-family: 'Athmos Marcellus', Georgia, serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1;
}

.athmos-review-stars {
	color: var(--athmos-gold);
	font-size: 1.3rem;
	letter-spacing: 0.08em;
}

.athmos-review-count {
	color: var(--athmos-ink-soft);
	font-size: 0.88rem;
}

.athmos-review-grid {
	display: grid;
	gap: var(--athmos-grid-gap);
	grid-template-columns: repeat(3, 1fr);
}

.athmos-review-card {
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
	padding: var(--athmos-card-pad);
}

.athmos-review-card > * {
	margin: 0 !important;
}

.athmos-review-card__stars {
	color: var(--athmos-gold);
	font-size: 0.95rem;
	letter-spacing: 0.06em;
}

.athmos-review-card blockquote,
.athmos-review-card .athmos-review-card__text {
	border: 0;
	color: var(--athmos-ink-soft);
	font-size: 0.92rem;
	font-style: normal;
	line-height: 1.72;
	margin: 0;
	padding: 0;
}

.athmos-review-card footer {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.athmos-review-card footer strong {
	color: var(--athmos-ink);
	font-size: 0.85rem;
	font-weight: 600;
}

.athmos-review-card footer img {
	border-radius: 0;
	height: 16px;
	width: 16px;
}

/* --- Gallery Grid --- */
.athmos-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-auto-rows: minmax(220px, 1fr);
	grid-template-areas:
		'wide card-2 card-3'
		'wide card-4 card-5';
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(0, 1fr);
}

.athmos-gallery-grid > * {
	min-width: 0;
}

.athmos-gallery-grid > :nth-child(2) { grid-area: card-2; }
.athmos-gallery-grid > :nth-child(3) { grid-area: card-3; }
.athmos-gallery-grid > :nth-child(4) { grid-area: card-4; }
.athmos-gallery-grid > :nth-child(5) { grid-area: card-5; }

.athmos-gallery-grid .athmos-gallery-grid__wide {
	grid-area: wide;
	grid-row: span 2;
}

.athmos-gallery-grid img,
.athmos-map-card iframe {
	border-radius: calc(var(--athmos-radius) - 4px);
}

.athmos-gallery-grid img {
	aspect-ratio: auto;
	block-size: 100%;
	box-shadow: var(--athmos-shadow-sm);
	display: block;
	min-height: 100%;
	object-fit: cover;
	width: 100%;
}

.athmos-gallery-grid .athmos-gallery-grid__wide img {
	aspect-ratio: 4 / 5.3;
}

/* --- Map Card --- */
.athmos-map-card {
	background: #f4efe6;
	border: 1px solid var(--athmos-line);
	border-radius: var(--athmos-radius-lg);
	overflow: hidden;
}

.athmos-map-card iframe {
	aspect-ratio: 16 / 8;
	border: 0;
	display: block;
	filter: saturate(0.9) contrast(1.02);
	width: 100%;
}

.athmos-map-card__body {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1.5fr 1fr;
	padding: 1.2rem var(--athmos-card-pad) var(--athmos-card-pad);
}

.athmos-map-card__body > div {
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
}

.athmos-map-card__links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.athmos-map-card__links a {
	color: var(--athmos-sage-deep);
	font-size: 0.88rem !important;
	font-weight: 600;
	text-decoration: none;
}

/* --- Note --- */
.athmos-note {
	background: rgba(111, 129, 111, 0.08);
	border: 1px solid rgba(111, 129, 111, 0.14);
	border-radius: var(--athmos-radius-sm);
	color: var(--athmos-ink-soft);
	font-size: 0.9rem;
	padding: 1rem 1.1rem;
}

/* --- FAQ --- */
.athmos-faq-item {
	display: grid;
	align-content: start;
	gap: var(--athmos-stack-sm);
	padding: var(--athmos-card-pad);
}

/* faq h3 size unified above in card h3 block */

/* --- Language Banner --- */
.athmos-language-banner {
	background:
		linear-gradient(135deg, rgba(198, 161, 74, 0.16), rgba(111, 129, 111, 0.14));
	border: 1px solid rgba(141, 114, 49, 0.18);
	border-radius: var(--athmos-radius);
	padding: var(--athmos-card-pad);
}

.athmos-language-banner strong {
	color: var(--athmos-ink);
	display: block;
	font-size: 1.05rem;
	margin-bottom: 0.3rem;
}

/* --- CTA Card --- */
.athmos-cta-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 238, 228, 0.84)),
		radial-gradient(circle at top right, rgba(198, 161, 74, 0.08), transparent 28%);
	border: 1px solid rgba(74, 93, 77, 0.12);
	border-radius: var(--athmos-radius-lg);
	box-shadow: 0 20px 56px rgba(29, 42, 32, 0.1);
	color: var(--athmos-ink);
	display: grid;
	align-content: center;
	justify-items: center;
	gap: var(--athmos-stack-lg);
	padding: clamp(2.5rem, 2rem + 1.5vw, 4rem) clamp(2rem, 1.8rem + 1vw, 3rem);
	text-align: center;
}

.athmos-cta-card .athmos-kicker::before {
	display: none;
}

.athmos-cta-card p {
	color: var(--athmos-ink-soft);
	max-width: 32rem;
}

/* --- Empty State --- */
.athmos-empty-state {
	background: rgba(255, 255, 255, 0.7);
	border: 1px dashed rgba(111, 129, 111, 0.28);
	border-radius: var(--athmos-radius);
	padding: 2rem;
	text-align: center;
}

/* --- Content Grid (internal pages) --- */
.athmos-content-grid {
	display: grid;
	gap: clamp(1.5rem, 1rem + 1vw, 2.2rem);
	grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.7fr);
}

.athmos-content-grid__main {
	min-width: 0;
}

.athmos-content-grid__side {
	display: grid;
	gap: 1rem;
	height: fit-content;
}

.athmos-portrait {
	min-width: 0;
}

.athmos-portrait img {
	aspect-ratio: 4 / 5;
	block-size: clamp(360px, 44vw, 580px);
	border-radius: var(--athmos-radius);
	box-shadow: var(--athmos-shadow-md);
	display: block;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.athmos-mini-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

/* --- Footer --- */
.athmos-footer-main {
	background:
		linear-gradient(180deg, rgba(71, 92, 76, 0.96) 0%, rgba(33, 48, 37, 0.98) 18%, rgba(24, 35, 27, 0.98) 100%),
		radial-gradient(circle at top left, rgba(198, 161, 74, 0.14), transparent 26%);
	color: rgba(250, 244, 232, 0.9);
	position: relative;
	overflow: hidden;
}

/* Footer: subtle flower watermark at right edge — bookend with specialties */
.athmos-footer-main::after {
	content: '';
	position: absolute;
	width: clamp(200px, 22vw, 320px);
	aspect-ratio: 1;
	right: -6%;
	top: 50%;
	transform: translateY(-50%);
	background: url('/wp-content/themes/athmos/assets/images/flower-of-life-watermark.svg') no-repeat center / contain;
	pointer-events: none;
	opacity: 0.03;
	filter: brightness(2);
}

.athmos-footer-main .wp-block-heading,
.athmos-footer-main strong,
.athmos-footer-main p strong {
	color: var(--athmos-on-dark) !important;
}

.athmos-footer-main a {
	color: rgba(250, 244, 232, 0.9) !important;
	text-decoration: none;
}

.athmos-footer-bottom {
	background: #18231b;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	color: rgba(250, 244, 232, 0.72);
}

.athmos-footer-logo img {
	display: block;
	filter: brightness(1.06) saturate(0.94);
	opacity: 0.92;
	width: clamp(112px, 10vw, 136px);
	height: auto;
}

.athmos-footer-main a:hover,
.athmos-footer-bottom a:hover {
	color: var(--athmos-on-dark) !important;
}

.athmos-footer-bottom a {
	color: rgba(250, 244, 232, 0.72) !important;
	text-decoration: underline;
	text-decoration-color: rgba(250, 244, 232, 0.34);
	text-underline-offset: 0.16em;
}

/* --- Misc --- */
.wp-block-image img {
	border-radius: var(--athmos-radius);
}

.wp-block-site-logo,
.wp-block-site-title {
	display: none;
}

.athmos-floating-actions {
	display: block;
}

/* ============================================================
   Premium Visual Enhancements
   ============================================================ */

/* --- Section breathing (enforce consistent vertical padding via token) --- */
/* Hero is content-fitted via .athmos-section--hero */
/* All other sections use --athmos-section-py regardless of inline styles */
.athmos-section--white:not(.athmos-section--trust),
.athmos-section--cream:not(.athmos-section--hero),
.athmos-section--sage,
.athmos-section--deep {
	padding-top: var(--athmos-section-py) !important;
	padding-bottom: var(--athmos-section-py) !important;
}

/* Page hero: tighter than standard sections, consistent across all internal pages */
.athmos-page-hero {
	padding-top: clamp(2rem, 1.5rem + 1.5vw, 3rem) !important;
	padding-bottom: clamp(2.5rem, 2rem + 1.5vw, 3.5rem) !important;
}

/* --- Trust bar: compact bridge between hero and content --- */
.athmos-section--trust {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

/* Remove gap between hero and trust bar */
.athmos-section--hero + .athmos-section--trust {
	margin-top: -1px;
}

/* --- Subtle gold accent line on section kickers --- */
.athmos-kicker::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 2px;
	background: var(--athmos-gold);
	margin-right: 0.6rem;
	vertical-align: middle;
	border-radius: 2px;
}

/* --- Enhanced card hover depth --- */
.athmos-specialty-card,
.athmos-process-card,
.athmos-faq-item,
.athmos-contact-card {
	position: relative;
	overflow: hidden;
}

.athmos-specialty-card::before,
.athmos-process-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--athmos-gold), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.athmos-specialty-card:hover::before,
.athmos-process-card:hover::before {
	opacity: 1;
}

/* --- Image hover zoom (gallery, cases) --- */
.athmos-gallery-grid img,
.athmos-case-card__before img,
.athmos-case-card__after img {
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.athmos-gallery-grid > *:hover img,
.athmos-case-card:hover .athmos-case-card__before img,
.athmos-case-card:hover .athmos-case-card__after img {
	transform: scale(1.03);
}

/* --- Smooth hero panel glass effect --- */
.athmos-hero-panel {
	backdrop-filter: blur(8px) saturate(120%);
	-webkit-backdrop-filter: blur(8px) saturate(120%);
}

/* --- CTA card glow on hover --- */
.athmos-cta-card:hover {
	box-shadow: 0 24px 80px rgba(198, 161, 74, 0.12), 0 20px 56px rgba(29, 42, 32, 0.1);
}

/* --- Trust strip item hover --- */
.athmos-trust-item {
	transition: background 0.3s ease;
}

.athmos-trust-item:hover {
	background: rgba(198, 161, 74, 0.04);
}

/* --- Trustindex widget spacing --- */
[data-src*="trustindex"],
.ti-widget {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

/* ============================================================
   Scroll Reveal Animations
   ============================================================ */
.athmos-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.athmos-reveal.athmos-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger delays */
.athmos-reveal-delay-1 { transition-delay: 0.06s; }
.athmos-reveal-delay-2 { transition-delay: 0.12s; }
.athmos-reveal-delay-3 { transition-delay: 0.18s; }
.athmos-reveal-delay-4 { transition-delay: 0.24s; }
.athmos-reveal-delay-5 { transition-delay: 0.30s; }
.athmos-reveal-delay-6 { transition-delay: 0.36s; }

/* Parallax target */
.athmos-parallax {
	will-change: transform;
}

/* Counter */
.athmos-counter {
	font-variant-numeric: tabular-nums;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Desktop (1081px+) */
@media (min-width: 1081px) {
	.athmos-hero-media {
		position: relative;
		overflow: hidden;
		border-radius: var(--athmos-radius);
	}

	.athmos-hero-media img {
		position: absolute;
		top: -2.5%;
		left: 0;
		width: 100%;
		height: 105%;
	}

	.athmos-team-grid > .athmos-team-card:nth-child(4):nth-last-child(2) {
		grid-column: 2 / span 2;
	}

	.athmos-team-grid > .athmos-team-card:nth-child(5):last-child {
		grid-column: 4 / span 2;
	}
}

/* Tablet landscape (max 1080px) */
@media (max-width: 1080px) {
	.athmos-hero-grid,
	.athmos-content-grid {
		grid-template-columns: 1fr;
	}

	.athmos-hero-media img {
		height: auto;
		max-height: 500px;
		aspect-ratio: 4 / 5;
	}

	.athmos-trust-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.athmos-trust-item:nth-child(2) {
		border-right: none;
	}

	.athmos-trust-item:nth-child(3),
	.athmos-trust-item:nth-child(4) {
		border-top: 1px solid var(--athmos-line);
	}

	.athmos-specialty-grid,
	.athmos-team-grid,
	.athmos-value-grid,
	.athmos-process-grid,
	.athmos-contact-grid,
	.athmos-faq-grid,
	.athmos-review-grid,
	.athmos-cases-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.athmos-gallery-grid,
	.athmos-map-card__body {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.athmos-gallery-grid .athmos-gallery-grid__wide {
		grid-area: wide;
		grid-column: span 2;
		grid-row: span 1;
	}

	.athmos-gallery-grid {
		grid-auto-rows: minmax(240px, auto);
		grid-template-areas:
			'wide wide'
			'card-2 card-3'
			'card-4 card-5';
	}

	.athmos-brand-lockup img {
		width: 190px;
	}

	.athmos-header__nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content {
		display: none;
	}

	.athmos-header__nav .wp-block-navigation__responsive-container-open {
		align-items: center;
		background: transparent;
		border: 1px solid rgba(34, 49, 39, 0.12);
		border-radius: 999px;
		color: var(--athmos-ink);
		display: inline-flex;
		height: 2.85rem;
		justify-content: center;
		min-width: 2.85rem;
		padding: 0;
	}

	.athmos-topbar__inner,
	.athmos-header__inner {
		gap: 0.9rem 1.15rem;
	}

	.athmos-header__cta {
		margin-left: 0;
		padding-left: 0.85rem;
	}
}

/* Tablet portrait (max 782px) */
@media (max-width: 782px) {
	:root {
		--athmos-grid-gap: 1rem;
	}

	body {
		font-size: 15px;
	}


	.athmos-topbar {
		font-size: 0.69rem;
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.athmos-topbar__inner {
		align-items: flex-start;
		gap: 0.3rem;
	}

	.athmos-topbar__links {
		display: none;
	}

	.athmos-brand-lockup img {
		width: 150px;
	}

	.athmos-header__inner {
		gap: 0.8rem;
	}

	.athmos-header__actions {
		gap: 0.7rem;
	}

	.athmos-header__cta {
		padding-left: 0;
	}

	.athmos-header__cta::before {
		display: none;
	}

	.athmos-header__nav .wp-block-navigation__responsive-container-open svg,
	.athmos-header__nav .wp-block-navigation__responsive-container-close svg {
		height: 1.05rem;
		width: 1.05rem;
	}

	.athmos-header .wp-block-button__link {
		font-size: 0.78rem !important;
		letter-spacing: 0.05em;
		padding: 0.8rem 1.08rem !important;
		white-space: nowrap;
	}

	.athmos-display {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.athmos-hero-media img,
	.athmos-portrait img {
		block-size: clamp(340px, 85vw, 480px);
	}

	.athmos-team-card img {
		block-size: 320px;
	}

	.athmos-gallery-grid img {
		block-size: 240px;
	}

	.athmos-gallery-grid .athmos-gallery-grid__wide img {
		block-size: 300px;
	}

	.athmos-trust-strip,
	.athmos-specialty-grid,
	.athmos-team-grid,
	.athmos-value-grid,
	.athmos-process-grid,
	.athmos-contact-grid,
	.athmos-faq-grid,
	.athmos-review-grid,
	.athmos-cases-grid,
	.athmos-map-card__body,
	.athmos-content-grid,
	.athmos-hero-grid {
		grid-template-columns: 1fr;
	}

	.athmos-trust-item {
		border-right: none;
		border-bottom: 1px solid var(--athmos-line);
	}

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

	.athmos-trust-item:nth-child(3),
	.athmos-trust-item:nth-child(4) {
		border-top: none;
	}

	/* Gallery stays at 2 columns from tablet breakpoint (1080px);
	   collapses to 1 column at 560px */

	.athmos-page-hero,
	.athmos-section--deep,
	.athmos-section--cream,
	.athmos-section--sage,
	.athmos-section--white {
		padding-left: 1.1rem !important;
		padding-right: 1.1rem !important;
	}

	.athmos-footer-main a,
	.athmos-footer-bottom a,
	.athmos-topbar a {
		display: inline-block;
		min-height: 44px;
		line-height: 44px;
	}

	.athmos-hero-panel,
	.athmos-cta-card {
		padding: 1.5rem;
	}

	.athmos-cta-card {
		min-height: auto;
	}

	.athmos-footer-main,
	.athmos-footer-bottom {
		padding-left: 1.1rem !important;
		padding-right: 1.1rem !important;
	}

	.athmos-review-score {
		font-size: 2.2rem;
	}
}

/* Mobile (max 560px) */
@media (max-width: 560px) {

	.athmos-gallery-grid {
		grid-template-columns: 1fr;
		grid-template-areas: none;
		grid-auto-rows: auto;
	}

	.athmos-gallery-grid > :nth-child(n) {
		grid-area: auto;
	}

	.athmos-gallery-grid .athmos-gallery-grid__wide {
		grid-area: auto;
		grid-column: auto;
		grid-row: auto;
	}

	.athmos-gallery-grid img {
		block-size: auto;
		min-height: 240px;
	}

	.athmos-chip-row {
		gap: 0.45rem;
	}

	.athmos-chip {
		font-size: 0.72rem;
		padding: 0.45rem 0.72rem;
	}

	.wp-block-buttons:not(.athmos-header__cta) {
		display: flex !important;
		flex-direction: column;
		gap: 0.75rem;
	}

	.wp-element-button,
	.wp-block-button__link {
		border-radius: var(--athmos-radius) !important;
		width: 100%;
	}

	.athmos-header .wp-block-button__link {
		border-radius: 999px !important;
		width: auto;
	}

	.athmos-topbar {
		font-size: 0.68rem;
	}

	.athmos-brand-lockup a {
		padding: 0;
	}

	.athmos-brand-lockup img {
		width: 130px;
	}

	.athmos-header .wp-block-button__link {
		padding: 0.76rem 1rem !important;
	}

	.athmos-header__actions {
		gap: 0.55rem;
	}

	.athmos-badge-row {
		gap: 0.5rem;
	}

	.athmos-badge {
		padding: 0.38rem 0.7rem;
	}

	.athmos-badge strong {
		font-size: 1rem;
	}

	.athmos-case-card__images {
		grid-template-columns: 1fr;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.athmos-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.athmos-parallax {
		transform: none !important;
	}

	.athmos-specialty-card:hover .athmos-specialty-card__icon,
	.athmos-specialty-card:hover,
	.athmos-value-card:hover,
	.athmos-process-card:hover,
	.athmos-faq-item:hover,
	.athmos-case-card:hover,
	.athmos-review-card:hover,
	.athmos-team-card:hover {
		transform: none;
	}
}

/* Print */
@media print {
	.athmos-topbar,
	.athmos-header,
	.athmos-whatsapp-float,
	.athmos-footer-main,
	.athmos-footer-bottom {
		display: none !important;
	}
}
