/**
 * AP Makeup Studio — main stylesheet
 */

:root {
	--ams-accent: #e52d6b;
	--ams-accent-hover: #c83361;
	--ams-gold: #c9a227;
	--ams-footer-bg: #1a1a1a;
	--ams-text: #5c5c5c;
	--ams-heading: #1a1a1a;
	--ams-white: #ffffff;
	--ams-muted: #8a8a8a;
	--ams-soft: #fff5f7;
	--ams-container: 1140px;
	--ams-radius: 10px;
	--ams-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
	--ams-font: "Assistant", "Open Sans", system-ui, sans-serif;
	--ams-font-heading: "Playfair Display", Georgia, serif;
	--ams-font-ui: "Open Sans", "Assistant", system-ui, sans-serif;
	--ams-font-script: "Great Vibes", Georgia, cursive;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--ams-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ams-text);
	background: var(--ams-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ams-accent);
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
	color: var(--ams-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ams-font-heading);
	color: var(--ams-heading);
	line-height: 1.2;
	margin: 0 0 0.75em;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.ams-container {
	width: min(100% - 2rem, var(--ams-container));
	margin-inline: auto;
}

/* Buttons */
.ams-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 14px 28px;
	border-radius: 4px;
	font-family: var(--ams-font-ui);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	line-height: 1.2;
}

.ams-btn--primary {
	background: var(--ams-accent);
	color: var(--ams-white) !important;
	border-color: var(--ams-accent);
}

.ams-btn--primary:hover,
.ams-btn--primary:focus {
	background: var(--ams-accent-hover);
	border-color: var(--ams-accent-hover);
	color: var(--ams-white) !important;
}

.ams-btn--ghost {
	background: transparent;
	color: var(--ams-white) !important;
	border-color: var(--ams-white);
}

.ams-btn--ghost:hover,
.ams-btn--ghost:focus {
	background: var(--ams-white);
	color: var(--ams-accent) !important;
}

.ams-btn--outline-light {
	background: transparent;
	color: var(--ams-white) !important;
	border-color: rgba(255, 255, 255, 0.9);
}

.ams-btn--outline-light:hover {
	background: var(--ams-white);
	color: var(--ams-accent) !important;
}

/* Header — solid white bar under dark topbar */
.ams-topbar {
	background: #141414;
	color: #fff;
	font-size: 13px;
	padding: 10px 0;
}

.ams-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.ams-topbar__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.35rem;
	align-items: center;
}

.ams-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.92) !important;
	font-family: var(--ams-font-ui);
}

.ams-topbar__icon {
	opacity: 0.85;
	font-size: 12px;
}

.ams-topbar .ams-social {
	display: flex;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ams-topbar .ams-social a {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 11px;
}

.ams-site-header {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	z-index: 100;
	padding: 14px 0;
	background: var(--ams-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body:not(.ams-has-overlay-header) .ams-site-header {
	position: relative;
	background: var(--ams-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.ams-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.ams-logo-link img,
.custom-logo-link img,
.ams-logo-img {
	width: 88px;
	height: auto;
	max-height: 88px;
	object-fit: contain;
}

.ams-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.ams-nav .ams-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.25rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ams-nav a {
	color: var(--ams-heading);
	font-family: var(--ams-font-ui);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body:not(.ams-has-overlay-header) .ams-nav a {
	color: var(--ams-heading);
}

.ams-nav a:hover,
.ams-nav .current-menu-item > a,
.ams-nav .current_page_item > a {
	color: var(--ams-accent) !important;
}

.ams-header-cta {
	flex-shrink: 0;
	padding: 12px 20px;
	white-space: nowrap;
}

.ams-header-phone {
	display: none;
}

.ams-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: transparent;
	border-radius: 4px;
	cursor: pointer;
	padding: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.ams-nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: #1a1a1a;
}

body:not(.ams-has-overlay-header) .ams-nav-toggle {
	border-color: var(--ams-heading);
}

body:not(.ams-has-overlay-header) .ams-nav-toggle span {
	background: var(--ams-heading);
}

/* Page hero */
.ams-page-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: var(--ams-white);
	padding: 150px 0 110px;
	overflow: hidden;
}

.ams-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(30, 18, 24, 0.42);
}

.ams-page-hero__title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(2.75rem, 6.5vw, 4.25rem);
	color: var(--ams-accent);
	font-weight: 800;
	text-align: center;
	letter-spacing: -0.02em;
}

.ams-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: 80px;
	z-index: 2;
	pointer-events: none;
	line-height: 0;
	overflow: hidden;
}

.ams-wave svg {
	display: block;
	width: 100%;
	height: 100%;
	vertical-align: bottom;
}

/* Home hero */
.ams-home-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center top;
	padding: 110px 0 100px;
	overflow: hidden;
	margin-bottom: 0;
}

.ams-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.15) 100%);
}

.ams-home-hero__content {
	position: relative;
	z-index: 1;
	max-width: 620px;
	padding-bottom: 1.25rem;
	text-align: left;
}

.ams-home-hero__script,
.ams-script {
	font-family: var(--ams-font-script);
	color: var(--ams-accent);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	margin: 0 0 0.35rem;
	font-weight: 400;
}

.ams-script--center {
	text-align: center;
}

.ams-home-hero__title {
	color: #fff;
	font-family: var(--ams-font-heading);
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 1rem;
}

.ams-ornament {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1.1rem;
}

.ams-ornament span {
	display: block;
	width: 48px;
	height: 1px;
	background: var(--ams-gold);
}

.ams-ornament i {
	width: 8px;
	height: 8px;
	border: 1px solid var(--ams-gold);
	transform: rotate(45deg);
	display: block;
}

.ams-home-hero__lead {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	margin: 0 0 1.6rem;
	max-width: 28rem;
}

.ams-home-hero__location {
	display: none;
}

.ams-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
	align-items: center;
	justify-content: flex-start;
}

.ams-video-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: #fff !important;
	font-family: var(--ams-font-ui);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ams-video-link__play {
	width: 42px;
	height: 42px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Sections */
.ams-section {
	padding: 90px 0;
}

.ams-section--tight {
	padding: 70px 0;
}

.ams-section-title {
	text-align: center;
	color: var(--ams-accent);
	font-family: var(--ams-font-heading);
	font-size: clamp(1.85rem, 3.2vw, 2.5rem);
	margin-bottom: 0.55rem;
}

.ams-section-title--dark {
	color: var(--ams-heading);
}

.ams-section-eyebrow {
	text-align: center;
	color: var(--ams-muted);
	font-size: 0.95rem;
	margin: 0 0 0.35rem;
	letter-spacing: 0.02em;
}

.ams-section-subtitle {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 2.75rem;
	color: var(--ams-muted);
	line-height: 1.7;
}

/* Welcome */
.ams-welcome {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3.75rem;
	align-items: center;
}

.ams-welcome--flip {
	grid-template-columns: 0.9fr 1.1fr;
}

.ams-welcome__collage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	align-items: stretch;
}

.ams-welcome__collage img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: var(--ams-shadow);
}

.ams-welcome__collage img:nth-child(1),
.ams-welcome__collage img:nth-child(2),
.ams-welcome__collage img:nth-child(3),
.ams-welcome__collage img:nth-child(4) {
	height: 320px;
	transform: none;
}

.ams-welcome__content {
	text-align: left;
}

.ams-welcome__heading {
	color: var(--ams-accent);
	font-size: clamp(2.4rem, 4.2vw, 3.4rem);
	margin-bottom: 0.35rem;
	line-height: 1.1;
}

.ams-welcome__title {
	font-family: var(--ams-font-heading);
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	margin-bottom: 1.15rem;
	color: var(--ams-heading);
}

.ams-welcome__content p {
	color: var(--ams-muted);
	margin-bottom: 1rem;
	max-width: 34rem;
}

.ams-services-home {
	background: var(--ams-soft);
}

/* Service cards (home) */
.ams-cards-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.ams-icon-card {
	background: var(--ams-white);
	border-radius: var(--ams-radius);
	box-shadow: var(--ams-shadow);
	padding: 2.25rem 1.5rem 1.75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ams-icon-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.ams-icon-card img {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.1rem;
	object-fit: contain;
}

.ams-icon-card h3 {
	font-family: var(--ams-font-heading);
	font-size: 1.2rem;
	margin-bottom: 0.65rem;
}

.ams-icon-card p {
	color: var(--ams-muted);
	font-size: 0.95rem;
	margin: 0 0 1.15rem;
	flex: 1;
}

.ams-icon-card__link {
	display: inline-block;
	margin-top: auto;
	font-family: var(--ams-font-ui);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ams-accent);
}

.ams-icon-card__link:hover {
	color: var(--ams-accent-hover);
}

/* CTA banner */
.ams-cta {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 48px 0;
	color: var(--ams-white);
}

.ams-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: color-mix(in srgb, var(--ams-accent) 82%, #9b0d3a 18%);
	opacity: 0.92;
}

.ams-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2rem;
	align-items: center;
	width: 100%;
}

.ams-cta__badge {
	flex-shrink: 0;
}

.ams-cta__badge img {
	width: 118px;
	height: auto;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.ams-cta__seal {
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #ff6b9a, var(--ams-accent) 55%, #9b0d3a);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--ams-font-heading);
	font-weight: 700;
	font-size: 1.35rem;
	line-height: 1.15;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	border: 4px dashed rgba(255, 255, 255, 0.55);
}

.ams-cta__copy {
	min-width: 0;
}

.ams-cta__title {
	color: var(--ams-white);
	font-size: clamp(1.45rem, 2.6vw, 2rem);
	margin: 0 0 0.4rem;
	font-weight: 800;
}

.ams-cta__subtitle {
	margin: 0;
	opacity: 0.95;
	font-size: 0.98rem;
}

.ams-cta__action {
	justify-self: end;
}

/* Pricing */
.ams-pricing {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 90px 0;
}

.ams-pricing::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
}

.ams-pricing > .ams-container {
	position: relative;
	z-index: 1;
}

.ams-pricing .ams-section-title,
.ams-pricing .ams-section-subtitle {
	color: var(--ams-white);
}

.ams-pricing .ams-section-subtitle {
	opacity: 0.9;
}

.ams-price-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}

.ams-price-card {
	background: var(--ams-white);
	border-radius: var(--ams-radius);
	box-shadow: var(--ams-shadow);
	padding: 1.85rem 1.55rem;
}

.ams-price-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.ams-price-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px dashed #e5e5e5;
	font-size: 0.95rem;
	color: #5c5c5c;
}

.ams-price-item:last-child {
	border-bottom: 0;
}

.ams-price-item strong {
	color: var(--ams-accent);
	font-weight: 700;
	white-space: nowrap;
}

/* Testimonial */
.ams-review-section .ams-section-title {
	margin-bottom: 0.25rem;
}

.ams-testimonial {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}

.ams-testimonial__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ams-testimonial__q {
	font-size: 4rem;
	line-height: 1;
	color: var(--ams-accent);
	font-family: Georgia, serif;
}

.ams-testimonial__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0;
	box-shadow: var(--ams-shadow);
	border: 4px solid #fff;
}

.ams-testimonial__quote-mark {
	display: none;
}

.ams-testimonial__quote {
	font-style: italic;
	color: var(--ams-muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.ams-testimonial__author {
	color: var(--ams-accent);
	font-weight: 700;
	margin-top: 1rem;
}

.ams-review-dots {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1.5rem;
}

.ams-review-dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ddd;
	display: inline-block;
}

.ams-review-dots span.is-active {
	background: var(--ams-accent);
}

.ams-review-social {
	display: none;
}

/* Image service cards */
.ams-image-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ams-image-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	min-height: 360px;
	box-shadow: var(--ams-shadow);
	background-size: cover;
	background-position: center;
	color: var(--ams-white);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ams-image-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.ams-image-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.78) 100%);
}

.ams-image-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.75rem 1.5rem;
	z-index: 1;
}

.ams-image-card h3 {
	color: var(--ams-white);
	margin: 0 0 0.45rem;
	font-size: 1.3rem;
}

.ams-image-card p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	opacity: 0.95;
	max-width: 28ch;
}

/* About story */
.ams-about-story {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 4rem;
	align-items: center;
}

.ams-about-story__image {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--ams-shadow);
}

.ams-about-story__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ams-about-story__heading {
	color: var(--ams-accent);
	font-size: clamp(1.9rem, 3.2vw, 2.55rem);
	margin-bottom: 0.65rem;
}

.ams-about-story__sub {
	font-size: 1.2rem;
	margin-bottom: 1.15rem;
	font-weight: 700;
}

.ams-signature {
	font-family: var(--ams-font-script);
	font-style: normal;
	color: var(--ams-accent);
	font-size: 2.4rem;
	line-height: 1.2;
	margin: 1.4rem 0 1.1rem;
}

.ams-contact-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	color: var(--ams-heading);
	font-weight: 600;
}

.ams-contact-inline a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--ams-heading);
}

.ams-contact-inline a::before {
	content: "";
	width: 16px;
	height: 16px;
	background: var(--ams-accent);
	mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
}

.ams-contact-inline a[href^="tel"]::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .7-.3 1L6.6 10.8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .7-.3 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.ams-contact-inline a[href^="mailto"]::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.ams-contact-inline a:hover {
	color: var(--ams-accent);
}

/* Team */
.ams-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.ams-team-card {
	background: var(--ams-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--ams-shadow);
	text-align: center;
}

.ams-team-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.ams-team-card__body {
	padding: 1.35rem 1rem 1.6rem;
}

.ams-team-card h3 {
	color: var(--ams-accent);
	margin: 0 0 0.3rem;
	font-size: 1.15rem;
}

.ams-team-card p {
	margin: 0;
	color: var(--ams-muted);
}

.ams-team-cta {
	background: var(--ams-accent);
	color: var(--ams-white);
	border-radius: 12px;
	padding: 2.25rem 1.6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100%;
	box-shadow: var(--ams-shadow);
}

.ams-team-cta h3 {
	color: var(--ams-white);
	font-size: 1.45rem;
	margin-bottom: 0.75rem;
}

.ams-team-cta p {
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 1.25rem;
}

/* Bridal */
.ams-bridal {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 3.5rem;
	align-items: center;
}

.ams-bridal-slider {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--ams-shadow);
	aspect-ratio: 3 / 4;
	background: #111;
	max-width: 460px;
}

.ams-bridal-slider__track {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
}

.ams-bridal-slider__slide {
	min-width: 100%;
	height: 100%;
}

.ams-bridal-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ams-bridal-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	background: var(--ams-accent);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	z-index: 2;
}

.ams-bridal-slider__nav--prev { left: 12px; }
.ams-bridal-slider__nav--next { right: 12px; }

.ams-bridal__title {
	color: var(--ams-accent);
	font-size: clamp(1.8rem, 3.1vw, 2.4rem);
	margin-bottom: 0.85rem;
}

.ams-bridal__item {
	margin-top: 1.4rem;
}

.ams-bridal__item h3 {
	font-size: 1.12rem;
	margin-bottom: 0.4rem;
}

/* Portfolio */
.ams-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.ams-portfolio-grid a,
.ams-portfolio-grid figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--ams-shadow);
	aspect-ratio: 1;
}

.ams-portfolio-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ams-portfolio-grid a:hover img {
	transform: scale(1.05);
}

.ams-before-after {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
}

.ams-ba-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.ams-ba-item {
	text-align: center;
}

.ams-ba-item img {
	width: 100%;
	border-radius: 12px;
	box-shadow: var(--ams-shadow);
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ams-ba-item span {
	display: inline-block;
	margin-top: 0.75rem;
	font-weight: 700;
	color: var(--ams-heading);
}

/* Contact */
.ams-contact-card {
	position: relative;
	z-index: 3;
	margin-top: -110px;
	background: var(--ams-white);
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	min-height: 520px;
}

.ams-contact-card__form {
	padding: 2.5rem 2.25rem;
}

.ams-contact-card__map {
	padding: 0;
}

.ams-contact-card__map iframe {
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
}

.ams-contact-wrap {
	padding: 0 0 100px;
	background: #fff;
	position: relative;
}

.ams-contact-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 120px;
	background: #fff;
}

/* Certificate / generic content */
.ams-content-panel {
	max-width: 900px;
	margin: 40px auto 80px;
	background: var(--ams-white);
	border-radius: 12px;
	box-shadow: var(--ams-shadow);
	padding: 2.5rem 2rem;
}

.ams-content-panel .entry-title {
	text-align: center;
	margin-bottom: 1.5rem;
}

body.page-slug-verify,
body.page-id-7 {
	background: #f5f6f8;
}

/* Footer — luxury reference */
.ams-site-footer {
	position: relative;
	background:
		radial-gradient(ellipse at 8% 100%, rgba(229, 45, 107, 0.12), transparent 42%),
		radial-gradient(ellipse at 92% 0%, rgba(201, 162, 39, 0.08), transparent 40%),
		#0e0e0e;
	color: rgba(255, 255, 255, 0.88);
	padding-top: 72px;
	overflow: hidden;
}

.ams-site-footer::before,
.ams-site-footer::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	pointer-events: none;
	opacity: 0.18;
	background:
		radial-gradient(circle at 30% 30%, rgba(229, 45, 107, 0.55), transparent 55%),
		radial-gradient(circle at 70% 70%, rgba(201, 162, 39, 0.35), transparent 50%);
	border-radius: 50%;
	filter: blur(2px);
}

.ams-site-footer::before { left: -60px; bottom: -40px; }
.ams-site-footer::after { right: -50px; top: 20px; }

.ams-footer-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr 1fr 1.15fr 0.9fr;
	gap: 0;
	padding-bottom: 48px;
}

.ams-footer-grid > * { padding: 0 1.75rem; }
.ams-footer-grid > *:first-child { padding-left: 0; }
.ams-footer-grid > *:last-child { padding-right: 0; }
.ams-footer-grid > * + * { border-left: 1px solid rgba(255, 255, 255, 0.1); }

.ams-footer-brand .custom-logo-link,
.ams-footer-brand .ams-logo-link,
.ams-footer-brand .ams-footer-brand__logo-link { display: inline-block; }

.ams-footer-brand .custom-logo-link img,
.ams-footer-brand .ams-logo-img {
	width: 110px;
	max-width: 130px;
	height: auto;
	max-height: 110px;
	object-fit: contain;
	margin-bottom: 1rem;
}

.ams-footer-brand__text {
	margin: 0 0 1.1rem;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
	max-width: 280px;
}

.ams-footer-flourish {
	display: block;
	width: 54px;
	height: 10px;
	margin-top: 0.25rem;
	background:
		radial-gradient(circle at 50% 50%, var(--ams-gold), transparent 70%),
		linear-gradient(90deg, transparent, var(--ams-gold), transparent);
	opacity: 0.85;
}

.ams-footer-heading {
	position: relative;
	color: var(--ams-white);
	font-family: var(--ams-font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 1.35rem;
	padding-bottom: 0.65rem;
}

.ams-footer-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 2px;
	background: var(--ams-accent);
}

.ams-site-footer a { color: rgba(255, 255, 255, 0.88); }
.ams-site-footer a:hover { color: var(--ams-accent); }

.ams-footer-menu { margin: 0; padding: 0; list-style: none; }
.ams-footer-menu li + li { margin-top: 0.7rem; }
.ams-footer-menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--ams-font-ui);
	font-size: 0.95rem;
}
.ams-footer-menu a::before {
	content: "›";
	color: var(--ams-accent);
	font-size: 1.05rem;
	line-height: 1;
	font-weight: 700;
}

.ams-footer-contact { margin: 0; padding: 0; list-style: none; }
.ams-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0 0 0.95rem;
	font-size: 0.95rem;
	line-height: 1.45;
}

.ams-footer-ico {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--ams-accent);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ams-accent);
	background: rgba(229, 45, 107, 0.08);
}

.ams-footer-follow .ams-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ams-footer-follow .ams-social a {
	width: 38px;
	height: 38px;
	background: var(--ams-accent);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(229, 45, 107, 0.28);
}
.ams-footer-follow .ams-social a:hover { background: var(--ams-accent-hover); }
.ams-footer-follow .ams-social-icon { background: #fff; }

.ams-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.75rem;
}
.ams-social a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--ams-accent);
	border-radius: 4px;
	color: #fff !important;
}
.ams-social a:hover { background: var(--ams-accent-hover); }
.ams-social-icon {
	display: block;
	width: 16px;
	height: 16px;
	background: currentColor;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}
.ams-social-icon--facebook {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 8h3V4h-3c-2.2 0-4 1.8-4 4v2H7v4h3v8h4v-8h3l1-4h-4V8c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 8h3V4h-3c-2.2 0-4 1.8-4 4v2H7v4h3v8h4v-8h3l1-4h-4V8c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}
.ams-social-icon--twitter {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M22 5.8c-.7.3-1.5.5-2.3.6.8-.5 1.5-1.3 1.8-2.2-.8.5-1.7.8-2.6 1A4 4 0 0 0 12 8.8c0 .3 0 .6.1.9-3.3-.2-6.3-1.8-8.3-4.2-.3.6-.5 1.3-.5 2 0 1.4.7 2.6 1.8 3.3-.6 0-1.2-.2-1.8-.5v.1c0 1.9 1.4 3.5 3.2 3.9-.3.1-.7.1-1 .1-.2 0-.5 0-.7-.1.5 1.6 2 2.7 3.7 2.8A8 8 0 0 1 2 18.4 11.3 11.3 0 0 0 8.1 20c7.3 0 11.3-6.1 11.3-11.3v-.5c.8-.5 1.5-1.2 2-2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M22 5.8c-.7.3-1.5.5-2.3.6.8-.5 1.5-1.3 1.8-2.2-.8.5-1.7.8-2.6 1A4 4 0 0 0 12 8.8c0 .3 0 .6.1.9-3.3-.2-6.3-1.8-8.3-4.2-.3.6-.5 1.3-.5 2 0 1.4.7 2.6 1.8 3.3-.6 0-1.2-.2-1.8-.5v.1c0 1.9 1.4 3.5 3.2 3.9-.3.1-.7.1-1 .1-.2 0-.5 0-.7-.1.5 1.6 2 2.7 3.7 2.8A8 8 0 0 1 2 18.4 11.3 11.3 0 0 0 8.1 20c7.3 0 11.3-6.1 11.3-11.3v-.5c.8-.5 1.5-1.2 2-2z'/%3E%3C/svg%3E");
}
.ams-social-icon--instagram {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.9a1.1 1.1 0 1 0 0 2.2 1.1 1.1 0 0 0 0-2.2zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.9a1.1 1.1 0 1 0 0 2.2 1.1 1.1 0 0 0 0-2.2zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z'/%3E%3C/svg%3E");
}
.ams-social-icon--youtube {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M23 7.5s-.2-1.6-.9-2.3c-.9-.9-1.9-.9-2.4-1C16.2 4 12 4 12 4h0s-4.2 0-7.7.2c-.5.1-1.5.1-2.4 1C1.2 5.9 1 7.5 1 7.5S.8 9.4.8 11.3v1.4c0 1.9.2 3.8.2 3.8s.2 1.6.9 2.3c.9.9 2.1.9 2.6 1 1.9.2 7.5.2 7.5.2s4.2 0 7.7-.2c.5-.1 1.5-.1 2.4-1 .7-.7.9-2.3.9-2.3s.2-1.9.2-3.8v-1.4c0-1.9-.2-3.8-.2-3.8zM9.8 14.8V8.7l6.2 3.1-6.2 3z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M23 7.5s-.2-1.6-.9-2.3c-.9-.9-1.9-.9-2.4-1C16.2 4 12 4 12 4h0s-4.2 0-7.7.2c-.5.1-1.5.1-2.4 1C1.2 5.9 1 7.5 1 7.5S.8 9.4.8 11.3v1.4c0 1.9.2 3.8.2 3.8s.2 1.6.9 2.3c.9.9 2.1.9 2.6 1 1.9.2 7.5.2 7.5.2s4.2 0 7.7-.2c.5-.1 1.5-.1 2.4-1 .7-.7.9-2.3.9-2.3s.2-1.9.2-3.8v-1.4c0-1.9-.2-3.8-.2-3.8zM9.8 14.8V8.7l6.2 3.1-6.2 3z'/%3E%3C/svg%3E");
}
.ams-social-icon--pinterest {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.5 2 2 6.5 2 12c0 4.2 2.6 7.8 6.3 9.2-.1-.8-.2-2 0-2.9.2-.8 1.3-5.4 1.3-5.4s-.3-.7-.3-1.6c0-1.5.9-2.6 2-2.6.9 0 1.4.7 1.4 1.5 0 .9-.6 2.3-.9 3.5-.3 1.1.5 1.9 1.5 1.9 1.8 0 3.2-1.9 3.2-4.7 0-2.4-1.8-4.2-4.3-4.2-2.9 0-4.6 2.2-4.6 4.4 0 .9.3 1.8.8 2.3.1.1.1.2.1.3l-.3 1.2c0 .2-.1.2-.3.1-1.2-.6-2-2.4-2-3.9 0-3.2 2.3-6.1 6.7-6.1 3.5 0 6.2 2.5 6.2 5.8 0 3.5-2.2 6.2-5.2 6.2-1 0-2-.5-2.3-1.2l-.6 2.4c-.2.9-.8 2-1.2 2.7 1 .3 2 .5 3.1.5 5.5 0 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.5 2 2 6.5 2 12c0 4.2 2.6 7.8 6.3 9.2-.1-.8-.2-2 0-2.9.2-.8 1.3-5.4 1.3-5.4s-.3-.7-.3-1.6c0-1.5.9-2.6 2-2.6.9 0 1.4.7 1.4 1.5 0 .9-.6 2.3-.9 3.5-.3 1.1.5 1.9 1.5 1.9 1.8 0 3.2-1.9 3.2-4.7 0-2.4-1.8-4.2-4.3-4.2-2.9 0-4.6 2.2-4.6 4.4 0 .9.3 1.8.8 2.3.1.1.1.2.1.3l-.3 1.2c0 .2-.1.2-.3.1-1.2-.6-2-2.4-2-3.9 0-3.2 2.3-6.1 6.7-6.1 3.5 0 6.2 2.5 6.2 5.8 0 3.5-2.2 6.2-5.2 6.2-1 0-2-.5-2.3-1.2l-.6 2.4c-.2.9-.8 2-1.2 2.7 1 .3 2 .5 3.1.5 5.5 0 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E");
}

.ams-footer-bottom { position: relative; z-index: 1; padding: 0; border-top: 0; }
.ams-footer-bottom::before {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(229, 45, 107, 0.25), var(--ams-accent), rgba(229, 45, 107, 0.25), transparent);
	box-shadow: 0 0 12px rgba(229, 45, 107, 0.55);
}
.ams-footer-bottom__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 0 1.35rem;
	font-size: 0.9rem;
}
.ams-footer-bottom__copy { margin: 0; justify-self: start; }
.ams-footer-bottom__credit { margin: 0; justify-self: end; text-align: right; }
.ams-footer-bottom__ornament { color: var(--ams-accent); display: inline-flex; justify-content: center; }
.ams-accent-text { color: var(--ams-accent); }

/* Blog */
.ams-blog-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2rem;
	padding: 60px 0;
}

.ams-post-card {
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.ams-post-card h2 {
	margin-bottom: 0.5rem;
}

.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.ams-cards-4,
	.ams-price-grid,
	.ams-team-grid,
	.ams-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ams-image-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.ams-welcome,
	.ams-about-story,
	.ams-bridal,
	.ams-contact-card,
	.ams-footer-grid,
	.ams-blog-layout {
		grid-template-columns: 1fr;
	}

	.ams-footer-grid > * {
		padding: 0 0 1.75rem;
		border-left: 0;
	}

	.ams-cta__inner {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}

	.ams-welcome__collage {
		grid-template-columns: repeat(2, 1fr);
	}

	.ams-welcome__collage img,
	.ams-welcome__collage img:nth-child(odd) {
		height: 220px;
	}
}

/* Elementor compatibility — only constrain legacy boxed sections.
   Do NOT set max-width on all .e-con (that left-aligns full-width rows). */
.ams-elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.ams-elementor-page .e-con.e-con-full {
	max-width: none;
	width: 100%;
}

.ams-elementor-page .elementor-widget-button .elementor-button {
	font-family: var(--ams-font-heading);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 4px;
}

.ams-elementor-page .ams-home-hero,
.ams-elementor-page .ams-page-hero,
.ams-elementor-page .ams-cta,
.ams-elementor-page .ams-pricing,
.ams-elementor-page .ams-section,
.ams-elementor-page .ams-contact-wrap {
	position: relative;
}

/* Let Elementor HTML widgets keep theme section styles */
.elementor-widget-html .ams-container {
	width: min(100% - 2rem, var(--ams-container));
	margin-inline: auto;
}

/* Kill Elementor gaps between stacked full-width homepage sections */
.ams-elementor-page .e-con-full.e-parent {
	margin: 0 !important;
	padding: 0 !important;
}

.ams-elementor-page .elementor-widget-html,
.ams-elementor-page .elementor-widget-html > .elementor-widget-container,
.ams-elementor-page .elementor-widget-shortcode,
.ams-elementor-page .elementor-widget-shortcode > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.ams-elementor-page .ams-home-hero + *,
.ams-elementor-page .ams-section,
.ams-elementor-page .ams-welcome-section {
	margin-top: 0;
}

/* Native Elementor homepage helpers */
.ams-el-home-hero .elementor-widget-button {
	margin-right: 0;
}

.ams-el-welcome-inner > .e-con-inner,
.ams-el-cta-inner > .e-con-inner,
.ams-el-services-row > .e-con-inner,
.ams-el-price-row-wrap > .e-con-inner,
.ams-el-welcome-collage > .e-con-inner {
	display: flex !important;
	width: 100% !important;
	align-items: center;
}

.ams-el-welcome-inner > .e-con-inner,
.ams-el-cta-inner > .e-con-inner,
.ams-el-services-row > .e-con-inner,
.ams-el-price-row-wrap > .e-con-inner {
	flex-wrap: nowrap !important;
}

.ams-el-welcome-inner > .e-con-inner > .e-con,
.ams-el-cta-inner > .e-con-inner > .e-con,
.ams-el-services-row > .e-con-inner > .e-con,
.ams-el-price-row-wrap > .e-con-inner > .e-con {
	flex: 1 1 0 !important;
	max-width: none !important;
	min-width: 0 !important;
}

.ams-el-cta-inner > .e-con-inner > .e-con:first-child {
	flex: 0 0 120px !important;
}

.ams-el-cta-inner > .e-con-inner > .e-con:last-child {
	flex: 0 0 auto !important;
}

.ams-el-welcome-collage > .e-con-inner {
	align-items: flex-end !important;
	gap: 12px;
}

.ams-el-welcome-collage .elementor-widget-image img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: var(--ams-shadow);
}

.ams-el-welcome-collage > .e-con-inner > .e-con:nth-child(odd) .elementor-widget-image img {
	height: 340px;
}

.ams-el-services-row > .e-con-inner {
	gap: 20px !important;
	align-items: stretch !important;
}

.ams-el-service-card .elementor-image-box-img {
	width: 64px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.ams-el-service-card .elementor-image-box-img img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin: 0 auto;
}

.ams-el-service-card .elementor-image-box-wrapper {
	text-align: center !important;
}

.ams-el-price-row-wrap > .e-con-inner {
	gap: 16px !important;
	align-items: stretch !important;
}

.ams-el-price-list .ams-el-price-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px dashed #ececec;
	font-size: 0.95rem;
	color: #5c5c5c;
}

.ams-el-price-list .ams-el-price-row:last-child {
	border-bottom: 0;
}

.ams-el-price-list .ams-el-price-row strong {
	color: var(--ams-accent);
	font-weight: 700;
	white-space: nowrap;
}

/* Native forms */
.ams-form {
	width: 100%;
}

.ams-form-row {
	margin: 0 0 1rem;
}

.ams-form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	color: var(--ams-heading);
	font-size: 0.92rem;
}

.ams-form-row label span {
	color: var(--ams-accent);
}

.ams-form-row input,
.ams-form-row textarea,
.ams-form-inline input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font: inherit;
	color: var(--ams-heading);
	background: #fff;
}

.ams-form-row input:focus,
.ams-form-row textarea:focus,
.ams-form-inline input:focus {
	outline: 2px solid color-mix(in srgb, var(--ams-accent) 35%, transparent);
	border-color: var(--ams-accent);
}

.ams-form-inline {
	display: flex;
	gap: 0.5rem;
	margin: 0;
}

.ams-form-inline input {
	flex: 1 1 auto;
	min-width: 0;
}

.ams-form-inline .ams-btn {
	flex: 0 0 auto;
	padding: 12px 18px;
	font-size: 13px;
}

.ams-form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	height: 0 !important;
	overflow: hidden !important;
}

.ams-form-notice {
	padding: 0.75rem 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.ams-form-notice--success {
	background: #e8f8ef;
	color: #146c43;
}

.ams-form-notice--error {
	background: #fde8ee;
	color: #b02a37;
}

.ams-site-footer .ams-form-inline input {
	background: #111;
	border-color: #333;
	color: #fff;
}

.ams-site-footer .ams-form-notice {
	font-size: 0.85rem;
}

@media (max-width: 1024px) {
	.ams-el-welcome-inner > .e-con-inner,
	.ams-el-cta-inner > .e-con-inner,
	.ams-el-services-row > .e-con-inner,
	.ams-el-price-row-wrap > .e-con-inner {
		flex-wrap: wrap !important;
	}

	.ams-el-welcome-inner > .e-con-inner > .e-con,
	.ams-el-services-row > .e-con-inner > .e-con,
	.ams-el-price-row-wrap > .e-con-inner > .e-con {
		flex: 1 1 calc(50% - 12px) !important;
	}

	.ams-el-cta-inner > .e-con-inner > .e-con,
	.ams-el-cta-inner > .e-con-inner > .e-con:first-child,
	.ams-el-cta-inner > .e-con-inner > .e-con:last-child {
		flex: 1 1 100% !important;
		text-align: center;
	}

	.ams-el-welcome-collage .elementor-widget-image img,
	.ams-el-welcome-collage > .e-con-inner > .e-con:nth-child(odd) .elementor-widget-image img {
		height: 220px;
	}
}

@media (max-width: 767px) {
	.ams-el-welcome-inner > .e-con-inner > .e-con,
	.ams-el-services-row > .e-con-inner > .e-con,
	.ams-el-price-row-wrap > .e-con-inner > .e-con,
	.ams-el-welcome-collage > .e-con-inner > .e-con {
		flex: 1 1 100% !important;
	}

	.ams-el-welcome-collage > .e-con-inner {
		flex-wrap: wrap !important;
	}

	.ams-el-welcome-collage > .e-con-inner > .e-con {
		flex: 1 1 calc(50% - 8px) !important;
	}
}

@media (max-width: 768px) {
	.ams-topbar__meta {
		font-size: 12px;
		gap: 0.35rem 0.85rem;
	}

	.ams-header-cta {
		display: none;
	}

	.ams-nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.ams-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(20, 20, 20, 0.96);
		padding: 1rem;
		display: none;
		justify-content: stretch;
	}

	.ams-nav.is-open {
		display: flex;
	}

	.ams-nav .ams-menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0;
	}

	.ams-nav .ams-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.ams-nav a {
		display: block;
		padding: 0.85rem 0.5rem;
		color: #fff !important;
	}

	.ams-header-phone {
		display: none;
	}

	.ams-home-hero {
		min-height: 70vh;
		align-items: center;
		padding: 70px 0 100px;
	}

	.ams-welcome,
	.ams-welcome--flip {
		grid-template-columns: 1fr;
	}

	.ams-welcome__collage {
		grid-template-columns: repeat(2, 1fr);
	}

	.ams-welcome__collage img,
	.ams-welcome__collage img:nth-child(1),
	.ams-welcome__collage img:nth-child(2),
	.ams-welcome__collage img:nth-child(3),
	.ams-welcome__collage img:nth-child(4) {
		height: 220px;
	}

	.ams-image-cards,
	.ams-cards-4,
	.ams-price-grid,
	.ams-team-grid,
	.ams-portfolio-grid,
	.ams-before-after,
	.ams-ba-pair,
	.ams-footer-grid {
		grid-template-columns: 1fr;
	}

	.ams-cta__inner {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}

	.ams-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.ams-footer-bottom__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ams-footer-bottom__copy,
	.ams-footer-bottom__credit {
		justify-self: center;
		text-align: center;
	}

	.ams-footer-grid > * {
		padding: 0;
		border-left: 0 !important;
		padding-bottom: 1.75rem;
	}

	.ams-contact-card {
		margin-top: -40px;
	}
}
