/*
Theme Name: ACN Logistics
Theme URI: https://acn-logistics.net/
Author: ACN
Description: Custom theme for America's Carrier Network. A 1:1, ACF-managed clone of the live acn-logistics.net (GoDaddy) design.
Version: 2.5.5
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: acn-logistics
*/

/* ============================================================
   Fonts — exactly as the live site loads them.
   Headings: Crimson Text. Body/UI: Open Sans.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* ============================================================
   Design tokens (exact values pulled from live CSS)
   ============================================================ */
:root {
	--acn-gold:        rgb(255, 215, 0);   /* promo + contact section + buttons */
	--acn-gold-cookie: rgb(212, 183, 23);  /* cookie banner */
	--acn-gold-text:   rgb(171, 148, 19);  /* welcome heading */
	--acn-gold-deep:   rgb(133, 112, 0);
	--acn-gold-deep2:  rgb(138, 116, 0);
	--acn-dark:        rgb(22, 22, 22);
	--acn-gray:        rgb(122, 121, 119);  /* about + footer bg */
	--acn-body:        rgb(94, 94, 94);
	--acn-light:       rgb(246, 246, 246);
	--acn-line:        #f0f0f0;
	--acn-white:       #ffffff;
	--acn-serif: 'Crimson Text', Georgia, 'Times New Roman', serif;
	--acn-sans:  'Open Sans', arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--acn-maxw: 1080px;
}

/* ============================================================
   Reset / base — body is Open Sans 18px (matches live)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--acn-sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.7;
	color: var(--acn-body);
	background: var(--acn-white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--acn-gold-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--acn-gold-text); }
h1, h2, h3 { font-family: var(--acn-serif); font-weight: 700; line-height: 1.18; margin: 0 0 .5em; color: var(--acn-dark); }
h4 { font-family: var(--acn-serif); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: var(--acn-dark); }
p { margin: 0 0 1.2em; }

.acn-container { max-width: var(--acn-maxw); margin: 0 auto; padding: 0 22px; }
.acn-section { padding: 90px 0; position: relative; }

/* ============================================================
   Buttons (gold, dark text, uppercase Open Sans)
   ============================================================ */
.acn-btn {
	display: inline-block;
	font-family: var(--acn-sans);
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 15px 40px;
	border-radius: 3px;
	border: 0;
	background: var(--acn-gold);
	color: var(--acn-dark);
	cursor: pointer;
	transition: filter .2s ease, transform .15s ease;
}
.acn-btn:hover { filter: brightness(.9); color: var(--acn-dark); }
.acn-btn:active { transform: translateY(1px); }
.acn-btn--ghost { background: transparent; color: var(--acn-dark); border: 2px solid var(--acn-dark); padding: 13px 38px; }
.acn-btn--ghost:hover { background: var(--acn-dark); color: var(--acn-gold); filter: none; }

/* Decorative gold corner triangle */
.acn-tri { position: absolute; width: 0; height: 0; border-style: solid; z-index: 1; pointer-events: none; }

/* ============================================================
   Promo bar (gold)
   ============================================================ */
.acn-promo {
	background: var(--acn-gold);
	color: var(--acn-dark);
	text-align: center;
	padding: 10px 16px;
}
.acn-promo p {
	margin: 0;
	font-family: 'Open Sans', arial, sans-serif;
	font-size: 16px;
	line-height: 1.33;
	letter-spacing: 0.083em;
	font-weight: 400;
}

/* ============================================================
   Header (white, logo left, hamburger -> right drawer)
   ============================================================ */
.acn-header { position: sticky; top: 0; z-index: 120; background: var(--acn-white); }
/* hamburger left | logo centered | spacer right (full-width, 48px gutters — matches live header) */
.acn-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 24px 48px; width: 100%; position: relative; }
.acn-brand { grid-column: 2; justify-self: center; display: flex; align-items: center; }
.acn-brand img { height: 108px; max-height: 108px; width: auto; max-width: none; object-fit: contain; }
.acn-nav-toggle { grid-column: 1; justify-self: start; display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; background: none; border: 0; cursor: pointer; padding: 0; font-size: 16px; font-family: 'Open Sans', arial, sans-serif; color: rgb(138, 116, 0); }
/* triangle notch is rendered on the hero top edge (see .acn-hero::after) */
.acn-nav-toggle span { display: block; width: 24px; height: 2px; background: rgb(138, 116, 0); transition: transform .25s ease, opacity .2s ease; }
.acn-nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.acn-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.acn-nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.acn-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 400px; max-width: 90vw; background: rgb(246, 246, 246); box-shadow: none; transform: translateX(-100%); transition: transform .3s ease; z-index: 125; padding: 72px 0 40px; overflow-y: auto; }
.acn-drawer.is-open { transform: translateX(0); box-shadow: 12px 0 40px rgba(0,0,0,.18); }
.acn-drawer__close { position: absolute; top: 70px; right: 36px; background: none; border: 0; padding: 0; line-height: 1; font-size: 30px; font-weight: 300; color: rgb(60, 60, 60); cursor: pointer; }
.acn-drawer ul { list-style: none; margin: 0; padding: 0; }
.acn-drawer li { margin: 0; }
.acn-drawer a { display: block; font-family: 'Open Sans', arial, sans-serif; font-weight: 400; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: rgb(133, 112, 0); padding: 12px 24px 12px 48px; cursor: pointer; }
.acn-drawer .current-menu-item > a, .acn-drawer .current_page_item > a, .acn-drawer a.active { font-weight: 700; }
.acn-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 124; }
.acn-overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   Hero — full-bleed image, dark overlay, LEFT copy, 74px H1
   ============================================================ */
.acn-hero { position: relative; margin: 0 48px 48px; border-radius: 18px; min-height: 78vh; display: flex; align-items: center; text-align: left; color: var(--acn-white); background-size: cover; background-position: center; overflow: hidden; }
.acn-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.3) 42%, rgba(0,0,0,.18) 70%, rgba(0,0,0,.12) 100%); z-index: 1; }
/* white downward notch cut into the top-center of the hero card */
.acn-hero::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-style: solid; border-width: 22px 25px 0 25px; border-color: var(--acn-white) transparent transparent transparent; z-index: 3; }
.acn-hero__inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; width: 100%; padding: 100px 56px; }
.acn-hero__box { max-width: 900px; margin-left: clamp(0px, 12vw, 175px); }
.acn-hero h1 {
	color: rgb(247, 247, 247);
	font-family: 'Crimson Text', serif;
	font-weight: 700;
	font-size: 72px;
	line-height: 1.42;
	letter-spacing: normal;
	margin: 0;
}
.acn-hero__sub {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.45;
	letter-spacing: 1px;
	color: #f0f0f0 !important;
}

/* ============================================================
   About section — grayish, centered title, image card on top
   ============================================================ */
.acn-about { background: var(--acn-gray); color: var(--acn-white); text-align: center; padding: 100px 0; }
.acn-about__title {
	color: rgb(255, 255, 255);
	font-family: var(--acn-serif);
	font-weight: 700;
	font-size: clamp(1.9rem, 4vw, 2.25rem); /* 36px */
	line-height: 1.27;
	margin-bottom: 1.1em;
}
/* paragraph + image share the same width so their edges run parallel */
.acn-about__card { max-width: 100%; margin: 0 auto; }
.acn-about__card img { width: 100%; margin: 0 auto; border-radius: 2px; }
.acn-about__cardtitle {
	font-family: var(--acn-sans);  /* "About Us" is Open Sans on the live site */
	font-weight: 400;
	font-size: 22px;
	line-height: 1.45;
	letter-spacing: 1px;
	color: rgb(255, 255, 255);
	text-transform: none;
	margin: 24px 0 24px;
}
.acn-about__text { color: rgb(255, 255, 255); }
.acn-about__text p {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: rgb(255, 255, 255);
	font-weight: 400;
	font-family: var(--acn-sans);
	text-wrap: pretty;
	text-align: center;
}

/* ============================================================
   Welcome section — white, image left + text right, gold heading
   ============================================================ */
/* full-bleed image flush to the left edge, centered copy on the right */
.acn-welcome { padding: 0; }
.acn-welcome .acn-container { max-width: none; margin: 0; padding: 0; }
.acn-welcome__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.acn-welcome__media { display: flex; }
.acn-welcome__media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; box-shadow: none; }
.acn-welcome__body { align-self: center; text-align: center; padding: 64px 56px; }
.acn-welcome h2 {
	font-family: var(--acn-serif);
	font-weight: 700;
	color: rgb(171, 148, 19);
	font-size: 32px;
	line-height: 1.27;
	margin-bottom: .7em;
}
.acn-welcome__text { color: rgb(94, 94, 94); }
.acn-welcome__text p { margin: 0; font-size: 19px; line-height: 1.7; font-weight: 400; font-family: var(--acn-sans); color: rgb(94, 94, 94); text-wrap: pretty; }
.acn-welcome__text p:last-child { margin-bottom: 0; }

/* ============================================================
   Contact section — GOLD info panel left, full-height map right
   ============================================================ */
.acn-contact { background: var(--acn-gold); color: var(--acn-dark); padding: 0; }
.acn-contact .acn-container { max-width: none; margin: 0; padding: 0; }
.acn-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.acn-contact__info { background: var(--acn-gold); padding: 80px 64px 80px 120px; }
.acn-contact__title {
	text-align: left;
	color: rgb(0, 0, 0);
	font-family: var(--acn-serif);
	font-weight: 700;
	font-size: 62px;
	line-height: 1.42;
	margin: 0 0 16px;
}
.acn-contact__intro > p {
	margin: 0;
	color: rgb(0, 0, 0);
	font-family: var(--acn-sans);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75;
	text-align: justify;
}
.acn-contact__cardtitle {
	font-family: var(--acn-serif);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.27;
	color: rgb(22, 22, 22);
	margin: 40px 0 24px;
}
.acn-contact__info .acn-contact__address { margin-bottom: 24px; }
.acn-contact__info .acn-contact__lines { white-space: pre-line; }
.acn-contact__info .acn-contact__lines a { color: rgb(0, 0, 0); }
.acn-contact__info .acn-contact__lines a:hover { color: var(--acn-gold-deep); }
.acn-contact__info .acn-contact__feedback { margin: 48px 0; }

/* outlined "GET AN ACCURATE QUOTE" button with flanking dashes */
.acn-contact .acn-quote .acn-quote__reveal {
	background: transparent;
	color: var(--acn-dark);
	border: 1px solid var(--acn-dark);
	border-radius: 0;
	padding: 18px 26px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.acn-contact .acn-quote .acn-quote__reveal::before,
.acn-contact .acn-quote .acn-quote__reveal::after {
	content: "";
	width: 18px; height: 1px; background: currentColor;
}
.acn-contact .acn-quote .acn-quote__reveal:hover { background: var(--acn-dark); color: var(--acn-gold); filter: none; }

/* map fills the right column at full section height */
.acn-contact__map { position: relative; min-height: 600px; }
.acn-contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.acn-contact__directions {
	position: absolute; top: 18px; left: 64px;
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--acn-gold); color: var(--acn-dark);
	font-family: var(--acn-sans); font-weight: 700; font-size: .78rem;
	text-transform: uppercase; letter-spacing: .06em;
	padding: 12px 20px; border-radius: 3px; box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.acn-contact__directions::before { content: "\27A4"; font-size: .82em; }
.acn-contact__directions:hover { background: var(--acn-dark); color: var(--acn-gold); }

/* ============================================================
   Quote form — Open Sans heading, float labels, Submit + Cancel
   ============================================================ */
.acn-quote { margin-top: 28px; }
.acn-quote h4 { font-family: var(--acn-sans); font-weight: 700; font-size: 1.5rem; color: var(--acn-dark); margin: 0 0 .9em; }
.acn-quote { margin-top: 28px; scroll-margin-top: 130px; }
.acn-quote.is-open .acn-quote__reveal { display: none; }
.acn-contact__info.is-quote-open .acn-quote { margin-top: 0; }
.acn-contact__info { scroll-margin-top: 130px; }
.acn-quote__panel { display: none; margin-top: 24px; }
.acn-quote.is-open .acn-quote__panel { display: block; }

/* smooth cross-slide (JS only): info content slides out, form slides in */
.acn-js .acn-contact__intro { transition: opacity .35s ease, transform .35s ease; }
.acn-js .acn-contact__intro.is-anim-out { opacity: 0; transform: translateX(-40px); pointer-events: none; }
.acn-js .acn-quote__panel { opacity: 0; transform: translateX(-40px); transition: opacity .35s ease, transform .35s ease; }
.acn-js .acn-quote.is-open .acn-quote__panel.is-anim-in { opacity: 1; transform: translateX(0); }

/* 2-column field layout (Name/Email/Phone/Pickup | Delivery/Date/Bedrooms) */
.acn-quote__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

/* inline required-field validation */
.acn-field__error { display: none; margin-top: 6px; font-family: var(--acn-sans); font-size: .8rem; line-height: 1.4; color: #c0182b; }
.acn-field.has-error input { border-bottom-color: #c0182b; }
.acn-field.has-error .acn-field__error { display: block; }

/* Submit -> SENDING state */
.acn-quote__submit.is-sending { opacity: .7; pointer-events: none; cursor: default; }
.acn-field { position: relative; margin-bottom: 22px; }
.acn-field input, .acn-field select, .acn-field textarea {
	width: 100%; padding: 18px 2px 6px;
	font-family: var(--acn-sans); font-size: .95rem; color: #000;
	border: 0; border-bottom: 2px solid rgba(22,22,22,.4); border-radius: 0;
	background: transparent; transition: border-color .2s ease;
}
.acn-field textarea { min-height: 90px; resize: vertical; }
.acn-field input:focus, .acn-field select:focus, .acn-field textarea:focus { outline: none; border-bottom-color: var(--acn-dark); }
.acn-field label {
	position: absolute; left: 2px; top: 18px;
	font-family: var(--acn-sans); font-size: .95rem; color: #000;
	pointer-events: none; transition: all .18s ease;
}
.acn-field input:focus + label,
.acn-field input:not(:placeholder-shown) + label,
.acn-field textarea:focus + label,
.acn-field textarea:not(:placeholder-shown) + label,
.acn-field select:focus + label,
.acn-field select.has-value + label {
	top: 0; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: #000;
}
.acn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* SMS consent checkbox */
.acn-consent {
	display: flex; align-items: flex-start; gap: 10px;
	margin: 6px 0 22px;
	font-family: var(--acn-sans); font-size: 14px; line-height: 1.5; color: #000;
	cursor: pointer;
}
.acn-consent input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--acn-dark); cursor: pointer; }
.acn-consent a { color: #000; text-decoration: underline; }
.acn-consent a:hover { color: var(--acn-gold-deep); }
.acn-hp { position: absolute; left: -9999px; opacity: 0; }
.acn-form-note { font-size: .72rem; color: rgba(22,22,22,.6); margin: 8px 0 18px; line-height: 1.5; }
.acn-form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.acn-quote .acn-btn { background: var(--acn-dark); color: var(--acn-gold); }
.acn-quote .acn-btn:hover { filter: brightness(1.25); }
.acn-quote .acn-btn--cancel { background: transparent; color: var(--acn-dark); border: 2px solid var(--acn-dark); padding: 13px 32px; }
.acn-quote .acn-btn--cancel:hover { background: var(--acn-dark); color: var(--acn-gold); filter: none; }

.acn-alert { padding: 14px 18px; border-radius: 4px; margin-bottom: 22px; font-weight: 600; font-family: var(--acn-sans); }
.acn-alert--ok { background: #e7f6e7; color: #1d6b1d; border: 1px solid #b6e0b6; }
.acn-alert--err { background: #fdeaea; color: #a12626; border: 1px solid #f1bcbc; }

/* ============================================================
   Footer — grayish, social, nav, rotated gold triangle
   ============================================================ */
.acn-footer { background: var(--acn-gray); color: var(--acn-white); padding: 64px 0 28px; position: relative; overflow: visible; }
.acn-footer a { color: var(--acn-white); }
.acn-footer a:hover { color: var(--acn-dark); }
.acn-footer__inner { position: relative; z-index: 2; max-width: var(--acn-maxw); margin: 0 auto; padding: 0 22px; text-align: center; }
.acn-footer__brand img { width: auto; height: 90px; max-height: 90px; margin: 0 auto 16px; object-fit: contain; }
.acn-footer__name { font-family: var(--acn-serif); font-size: 1.4rem; color: var(--acn-white); margin-bottom: 8px; }
.acn-footer__addr { font-size: .95rem; color: var(--acn-white); margin-bottom: 10px; }
.acn-footer__contact { font-size: .95rem; margin-bottom: 6px; }
.acn-footer__contact a { color: var(--acn-white); }
.acn-footer__feedback { font-size: .95rem; margin-bottom: 18px; }
.acn-footer__social { display: flex; justify-content: center; gap: 14px; margin-bottom: 22px; }
.acn-footer__social a { display: inline-flex; align-items: center; justify-content: center; color: var(--acn-white); }
.acn-footer__social a:hover { color: rgba(255,255,255,.7); }
.acn-footer__social svg { width: 30px; height: 30px; fill: currentColor; }
.acn-footer__nav { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin: 0 0 22px; padding: 0; }
.acn-footer__nav a { font-family: var(--acn-sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.acn-footer__bottom { border-top: 1px solid rgba(255,255,255,.3); padding-top: 20px; font-size: .8rem; color: rgba(255,255,255,.85); }
/* gray "peak" notch at the top-center of the footer (points up into the section above) */
.acn-footer .acn-tri {
	display: block;
	top: 0; left: 50%;
	transform: translate(-50%, -100%);
	border-width: 0 28px 26px 28px;
	border-color: transparent transparent var(--acn-gray) transparent;
	z-index: 3;
}

/* ============================================================
   Inner pages
   ============================================================ */
.acn-page-head { background: var(--acn-gray); color: #fff; text-align: center; padding: 90px 22px; }
.acn-page-head h1 { color: #fff; font-family: var(--acn-serif); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 0; }
.acn-prose { max-width: 820px; margin: 0 auto; color: var(--acn-body); }
.acn-prose h2 { margin-top: 1.6em; }

/* Contact page: single centered column, white background (1:1 with live) */
.acn-contactp { background: #fff; padding: 100px 0; }
.acn-contactp__inner { max-width: 66.66%; margin: 0 auto; text-align: center; }
.acn-contactp__title { font-family: var(--acn-serif); font-weight: 700; color: var(--acn-gold-text); font-size: clamp(30px, 3.2vw, 36px); line-height: 1.27; margin: 0 0 72px; }

/* inline form: centered heading, left-aligned stacked fields */
.acn-contactp__form { max-width: 480px; margin: 0 auto; text-align: left; }
.acn-contactp__form .acn-quote { margin-top: 0; }
.acn-contactp .acn-quote h4 { font-family: var(--acn-serif); font-weight: 400; font-size: clamp(22px, 2.2vw, 24px); line-height: 1.3; letter-spacing: 1px; color: rgb(27,27,27); margin: 0 0 1.1em; text-align: center; }

/* form fields — thin gray underline, 14px gray text, gold focus (match live) */
.acn-contactp .acn-field input,
.acn-contactp .acn-field textarea {
	padding: 18px 8px 6px;
	font-size: 14px; line-height: 1.71; color: rgb(71,71,71);
	border-bottom: 1px solid rgb(226,226,226);
}
.acn-contactp .acn-field input:focus,
.acn-contactp .acn-field textarea:focus { border-bottom-color: rgb(138,117,6); }
.acn-contactp .acn-field label { left: 8px; font-size: 14px; color: rgb(71,71,71); }
.acn-contactp .acn-field input:focus + label,
.acn-contactp .acn-field input:not(:placeholder-shown) + label,
.acn-contactp .acn-field textarea:focus + label,
.acn-contactp .acn-field textarea:not(:placeholder-shown) + label {
	top: 0; font-size: 12px; letter-spacing: 0; text-transform: none; color: rgb(138,117,6);
}

/* SMS consent — smaller print on the contact page */
.acn-contactp .acn-consent { font-size: 12px; }

/* ghost "lines" submit button — transparent, gold border, flanking dashes */
.acn-contactp .acn-form-actions { justify-content: center; }
.acn-contactp .acn-quote .acn-btn,
.acn-contactp .acn-quote__submit {
	display: inline-flex; align-items: center; gap: 14px;
	background: transparent; color: rgb(138,117,6);
	border: 2px solid rgb(138,117,6); padding: 14px 26px;
	font-family: var(--acn-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.acn-contactp .acn-quote__submit::before,
.acn-contactp .acn-quote__submit::after {
	content: ""; display: inline-block; width: 18px; height: 2px; background: currentColor;
}
.acn-contactp .acn-quote .acn-btn:hover,
.acn-contactp .acn-quote__submit:hover { background: var(--acn-gold-cookie); color: #000; filter: none; }

/* see-us-in-person details */
.acn-contactp__info { padding-top: 40px; }
.acn-contactp__info h4 { font-family: var(--acn-sans); font-weight: 400; font-size: 22px; line-height: 1.45; letter-spacing: 1px; color: rgb(27,27,27); margin: 1.6em 0 24px; }
.acn-contactp__info h4:first-child { margin-top: 0; }
.acn-contactp__info p { font-family: var(--acn-sans); font-weight: 400; font-size: 16px; line-height: 1.75; color: rgb(27,27,27); margin: 0 0 .3em; }
.acn-contactp__info a { font-size: 16px; line-height: 1.5; color: rgb(138,117,6); }
.acn-contactp__info a:hover { color: var(--acn-gold-deep); }

/* Connect With Us — separate centered social section */
.acn-contactp__connect { font-family: var(--acn-serif); font-weight: 700; color: var(--acn-gold-text); font-size: clamp(30px, 3.2vw, 36px); line-height: 1.27; margin: 1.6em 0 .7em; }
.acn-contactp__social { display: flex; justify-content: center; gap: 14px; }
.acn-contactp__social a { display: inline-flex; align-items: center; justify-content: center; }
.acn-contactp__social svg { width: 44px; height: 44px; display: block; }

/* Privacy / Terms page — centered gold serif title, download link, flipbook */
.acn-privacy { background: #fff; padding: 100px 0 80px; }
.acn-privacy__inner { max-width: 66.66%; margin: 0 auto; text-align: center; }
.acn-privacy__title { font-family: var(--acn-serif); font-weight: 700; color: var(--acn-gold-text); font-size: clamp(30px, 3.2vw, 36px); line-height: 1.27; margin: 0 0 48px; }
.acn-privacy__download { margin: 0 0 40px; }
.acn-privacy__download a { font-family: var(--acn-sans); font-size: 16px; color: var(--acn-gold-text); }
.acn-privacy__download a:hover { color: var(--acn-gold-deep); text-decoration: underline; }
.acn-privacy__viewer { margin: 0 auto; }

/* ============================================================
   Cookie banner — gold card, bottom-left, ~400px
   ============================================================ */
.acn-cookie { position: fixed; bottom: 22px; left: 22px; width: 400px; max-width: calc(100vw - 44px); background: var(--acn-gold-cookie); color: var(--acn-dark); padding: 24px 24px 22px; border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,.28); z-index: 200; display: none; }
.acn-cookie.is-visible { display: block; }
.acn-cookie h4 { color: var(--acn-dark); margin: 0 0 8px; font-size: 1.15rem; font-family: var(--acn-serif); }
.acn-cookie p { margin: 0 0 16px; font-size: .85rem; color: rgba(22,22,22,.88); font-family: var(--acn-sans); line-height: 1.55; }
.acn-cookie .acn-btn { background: var(--acn-dark); color: var(--acn-gold); width: 100%; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
	.acn-welcome__grid, .acn-contact__grid { grid-template-columns: 1fr; gap: 36px; }
	.acn-contactp { padding: 56px 0; }
	.acn-contactp__inner { max-width: 100%; }
	.acn-contactp__title { margin-bottom: 40px; }
	.acn-privacy { padding: 56px 0; }
	.acn-privacy__inner { max-width: 100%; }
	.acn-welcome__media { order: -1; }
	.acn-welcome__body { padding: 40px 22px; }
	.acn-contact__grid { gap: 0; }
	.acn-contact__info { padding: 56px 22px; }
	.acn-contact__title { font-size: 40px; }
	.acn-contact__intro > p { font-size: 19px; }
	.acn-contact__map { min-height: 420px; }
	.acn-contact__directions { left: 22px; }
	.acn-form-row, .acn-quote__fields { grid-template-columns: 1fr; }
	.acn-section { padding: 60px 0; }
	.acn-brand__name { font-size: 1rem; max-width: 170px; }
	.acn-header__inner { padding: 16px 20px; }
	.acn-brand img { height: 84px; max-height: 84px; }
	.acn-hero { min-height: 72vh; margin: 0 16px 16px; }
	.acn-hero__inner { padding: 70px 26px; }
	.acn-hero__box { margin-left: 0; }
	.acn-hero h1 { font-size: 46px; line-height: 1.3; }
	.acn-hero__sub { font-size: 19px; }
}
@media (max-width: 1399px) and (min-width: 861px) {
	/* up to 1399px keep the full 72px but narrow the box so the heading wraps to 3 lines */
	.acn-hero__box { max-width: 620px; }
	.acn-hero h1 { font-size: 72px; }
}
@media (max-width: 480px) {
	.acn-hero h1 { font-size: 34px; line-height: 1.28; }
	.acn-hero__sub { font-size: 17px; }
	.acn-cookie { left: 12px; bottom: 12px; }
}
