/*
Theme Name: Herringbone Hill
Theme URI: https://herringbonehill.com.au
Author: Herringbone Hill
Description: Custom theme for Herringbone Hill - bespoke timber flooring across Geelong, the Bellarine Peninsula, Surf Coast and Great Ocean Road.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: herringbone-hill
*/

:root {
	--hh-black: #16130f;
	--hh-black-soft: #211c17;
	--hh-cream: #f6f1e8;
	--hh-cream-dark: #efe7d8;
	--hh-white: #ffffff;
	--hh-gold: #b6874f;
	--hh-gold-light: #c9a06a;
	--hh-tan: #c9a679;
	--hh-text-dark: #2b2620;
	--hh-text-muted: #6b6255;
	--hh-text-on-dark: #f3ede1;
	--hh-text-on-dark-muted: #b7ac98;
	--hh-border: #e3d9c4;
	--hh-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--hh-font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
	--hh-container: 1240px;
	--hh-radius: 2px;
	--hh-transition: 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--hh-cream); color: var(--hh-text-dark); font-family: var(--hh-font-sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--hh-font-serif); font-weight: 500; line-height: 1.2; margin: 0 0 0.5em; color: var(--hh-text-dark); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.screen-reader-text { position: absolute; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }
.eyebrow { font-family: var(--hh-font-sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hh-gold); margin: 0 0 0.75em; font-weight: 500; }
.btn { display: inline-block; padding: 14px 32px; font-family: var(--hh-font-sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid transparent; border-radius: var(--hh-radius); transition: background var(--hh-transition), color var(--hh-transition), border-color var(--hh-transition); cursor: pointer; }
.btn-dark { background: var(--hh-black); color: var(--hh-white); border-color: var(--hh-black); }
.btn-dark:hover { background: var(--hh-black-soft); }
.btn-outline { background: transparent; color: var(--hh-text-dark); border-color: var(--hh-text-dark); }
.btn-outline:hover { background: var(--hh-text-dark); color: var(--hh-white); }
.btn-outline-light { color: var(--hh-text-on-dark); border-color: var(--hh-text-on-dark-muted); }
.btn-outline-light:hover { background: var(--hh-text-on-dark); color: var(--hh-black); }
.section-heading { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.section-heading-light .eyebrow { color: var(--hh-gold-light); }
.section-heading-light h2 { color: var(--hh-text-on-dark); }
.section-cta { text-align: center; margin-top: 40px; }
.hh-placeholder { position: relative; width: 100%; background-color: var(--hh-tan); background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.14) 10px, transparent 10px, transparent 20px), repeating-linear-gradient(-45deg, rgba(22,19,15,0.12) 0, rgba(22,19,15,0.12) 10px, transparent 10px, transparent 20px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; border-radius: var(--hh-radius); }
.hh-placeholder span { background: rgba(22,19,15,0.55); color: #fff; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; max-width: 80%; }
.hh-placeholder.is-filled { background: none; display: block; }
.hh-placeholder.is-filled img, .hh-placeholder.is-filled svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.ratio-hero { aspect-ratio: 16 / 9; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-square { aspect-ratio: 1 / 1; }
.site-header { background: var(--hh-black); position: sticky; top: 0; z-index: 999; transition: box-shadow var(--hh-transition); }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.25); }
.site-header-inner { max-width: var(--hh-container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; position: relative; }
.header-nav { flex: 1; display: flex; }
.header-nav-left { justify-content: flex-start; }
.header-nav-right { justify-content: flex-end; }
.nav-list { display: flex; gap: 32px; }
.nav-list a { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hh-text-on-dark); padding: 6px 0; position: relative; }
.nav-list a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--hh-gold-light); transition: width var(--hh-transition); }
.nav-list a:hover::after, .nav-list li.current-menu-item a::after { width: 100%; }
.site-branding { text-align: center; flex: 0 0 auto; padding: 0 24px; }
.site-logo-link, .footer-logo-link { display: inline-flex; align-items: center; gap: 12px; justify-content: center; }
.site-logo-mark { font-family: var(--hh-font-serif); font-size: 1.5rem; font-weight: 700; color: var(--hh-gold-light); border: 1px solid var(--hh-gold-light); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.site-logo-mark-img { width: auto; height: 44px; object-fit: contain; flex-shrink: 0; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.site-title { font-family: var(--hh-font-serif); font-size: 1.15rem; letter-spacing: 0.08em; color: var(--hh-text-on-dark); text-transform: uppercase; }
.site-tagline { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hh-gold-light); margin-top: 2px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: transparent; border: 0; width: 32px; height: 32px; padding: 0; z-index: 20; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--hh-text-on-dark); transition: transform var(--hh-transition), opacity var(--hh-transition); }
.mobile-menu { display: none; }
.hero { position: relative; color: var(--hh-white); padding: 0; }
.hero-media { position: relative; }
.hero-media .hh-placeholder, .hero-media .hero-image { border-radius: 0; min-height: 480px; }
.hero-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; background: linear-gradient(180deg, rgba(22,19,15,0.15) 0%, rgba(22,19,15,0.35) 100%); }
.hero-content h1 { color: var(--hh-white); font-size: clamp(2rem, 5vw, 3.25rem); max-width: 780px; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; margin-bottom: 28px; color: var(--hh-cream); }
.features-bar { background: var(--hh-black); color: var(--hh-text-on-dark); padding: 56px 32px; }
.features-bar-inner { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.feature-icon { display: inline-flex; width: 40px; height: 40px; color: var(--hh-gold-light); margin-bottom: 16px; }
.feature-icon svg { width: 100%; height: 100%; }
.feature h3 { color: var(--hh-text-on-dark); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.feature p { font-size: 0.85rem; color: var(--hh-text-on-dark-muted); margin: 0; }
section { padding: 88px 32px; }
.about-teaser-inner, .split-section-inner { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-section-reverse .split-section-inner { direction: rtl; }
.split-section-reverse .split-section-inner > * { direction: ltr; }
.about-teaser-content h2, .split-content h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.about-teaser-content p, .split-content p { color: var(--hh-text-muted); max-width: 46ch; }
.about-teaser-text-only { max-width: 680px; margin: 0 auto; text-align: center; }
.about-teaser-text-only p { margin-left: auto; margin-right: auto; }
.collections { background: var(--hh-cream); }
.collections-grid { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.collection-card { display: block; position: relative; }
.collection-card .hh-placeholder { margin-bottom: 16px; }
.collection-name { display: block; font-family: var(--hh-font-serif); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--hh-gold); text-align: center; }
.collection-link { display: block; text-align: center; font-size: 0.75rem; color: var(--hh-text-muted); margin-top: 4px; transition: color var(--hh-transition); }
.collection-card:hover .collection-link { color: var(--hh-text-dark); }
.process-teaser { background: var(--hh-black); color: var(--hh-text-on-dark); text-align: center; }
.process-timeline { position: relative; max-width: var(--hh-container); margin: 0 auto; display: flex; align-items: flex-start; gap: 12px; }
.process-timeline::before { content: ""; position: absolute; top: 22px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.18); }
.process-timeline-step { position: relative; flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.process-timeline-step p { max-width: 22ch; }
.process-timeline-dot { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--hh-black); border: 1px solid var(--hh-gold-light); color: var(--hh-gold-light); font-family: var(--hh-font-serif); font-size: 1rem; margin-bottom: 16px; flex-shrink: 0; }
.process-timeline-step h3 { color: var(--hh-text-on-dark); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.process-timeline-step p { font-size: 0.85rem; color: var(--hh-text-on-dark-muted); margin: 0 auto; }
.process-detail { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; padding-top: 0; }
.process-detail-row { display: grid; grid-template-columns: 100px 1fr; gap: 32px; align-items: start; border-bottom: 1px solid var(--hh-border); padding-bottom: 48px; }
.process-detail-row:last-child { border-bottom: none; }
.process-number { display: block; font-family: var(--hh-font-serif); color: var(--hh-gold-light); margin-bottom: 12px; }
.process-number-large { font-size: 2.75rem; color: var(--hh-gold); }
.process-detail-content h2 { font-size: 1.5rem; }
.process-detail-content p { color: var(--hh-text-muted); max-width: 60ch; }
.gallery-teaser-inner { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.gallery-teaser-content p { color: var(--hh-text-muted); max-width: 42ch; }
.gallery-teaser-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cta-banner { background: linear-gradient(135deg, var(--hh-tan), var(--hh-gold-light)); padding: 56px 32px; }
.cta-banner-inner { max-width: var(--hh-container); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-banner h2 { color: var(--hh-black); margin: 0; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.cta-inline { text-align: center; background: var(--hh-cream-dark); }
.cta-inline h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 24px; }
.site-footer { background: var(--hh-black); color: var(--hh-text-on-dark-muted); padding: 72px 32px 0; }
.site-footer-main { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 56px; }
.footer-col-brand .site-tagline { color: var(--hh-text-on-dark-muted); }
.footer-heading { color: var(--hh-text-on-dark); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav-list, .footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a, .footer-contact-list a, .footer-contact-list li { font-size: 0.85rem; color: var(--hh-text-on-dark-muted); transition: color var(--hh-transition); }
.footer-nav-list a:hover, .footer-contact-list a:hover { color: var(--hh-gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; border: 1px solid var(--hh-text-on-dark-muted); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; border-radius: 50%; }
.footer-newsletter-form { display: flex; border-bottom: 1px solid var(--hh-text-on-dark-muted); padding-bottom: 8px; }
.footer-newsletter-form input { flex: 1; background: transparent; border: 0; color: var(--hh-text-on-dark); font-size: 0.85rem; padding: 6px 0; }
.footer-newsletter-form input::placeholder { color: var(--hh-text-on-dark-muted); }
.footer-newsletter-form button { background: transparent; border: 0; color: var(--hh-gold-light); font-size: 1.1rem; }
.footer-newsletter-note { font-size: 0.7rem; margin-top: 10px; color: var(--hh-text-on-dark-muted); opacity: 0.75; }
.site-footer-bottom { max-width: var(--hh-container); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 0.75rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--hh-gold-light); }
.page-header { background: var(--hh-black); color: var(--hh-text-on-dark); text-align: center; padding: 80px 32px 64px; }
.page-header-inner { max-width: 720px; margin: 0 auto; }
.page-header h1 { color: var(--hh-text-on-dark); font-size: clamp(1.9rem, 4vw, 2.75rem); }
.page-header-intro { color: var(--hh-text-on-dark-muted); max-width: 56ch; margin: 16px auto 0; }
.values-grid, .services-grid { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.value-card, .service-card { background: var(--hh-white); border: 1px solid var(--hh-border); padding: 32px 24px; border-radius: var(--hh-radius); }
.service-number { display: block; font-family: var(--hh-font-serif); color: var(--hh-gold); font-size: 1.4rem; margin-bottom: 12px; }
.value-card h3, .service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p, .service-card p { color: var(--hh-text-muted); font-size: 0.9rem; margin: 0; }
.contact-section-inner { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-detail-item { margin-bottom: 24px; }
.contact-detail-item h3 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hh-gold); margin-bottom: 6px; }
.contact-detail-item p { margin: 0; color: var(--hh-text-muted); }
.contact-map { margin-top: 32px; }
.contact-form-wrap { background: var(--hh-white); border: 1px solid var(--hh-border); padding: 40px; border-radius: var(--hh-radius); }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-wrap form p { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.contact-form-wrap form label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hh-text-muted); display: block; margin-bottom: 6px; }
.contact-form-wrap form input[type="text"], .contact-form-wrap form input[type="email"], .contact-form-wrap form input[type="tel"], .contact-form-wrap form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--hh-border); border-radius: var(--hh-radius); font-family: var(--hh-font-sans); font-size: 0.9rem; background: var(--hh-cream); }
.contact-form-wrap form input[type="submit"] { align-self: flex-start; background: var(--hh-black); color: var(--hh-white); border: 1px solid var(--hh-black); padding: 14px 32px; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: var(--hh-radius); font-family: var(--hh-font-sans); cursor: pointer; }
.contact-form-wrap form input[type="submit"]:hover { background: var(--hh-black-soft); }
.contact-form-wrap .contact-form-submit-success, .contact-form-wrap .contact-form-submit-error { font-size: 0.9rem; margin-top: 12px; }
[hidden] { display: none !important; }

@media (max-width: 1024px) {
	.about-teaser-inner, .split-section-inner, .gallery-teaser-inner, .contact-section-inner { grid-template-columns: 1fr; }
	.split-section-reverse .split-section-inner { direction: ltr; }
	.collections-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.process-timeline-step p { max-width: 18ch; }
	.features-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
	.gallery-teaser-media { grid-template-columns: repeat(3, 1fr); }
	section { padding: 64px 28px; }
}
@media (max-width: 860px) {
	.header-nav { display: none; }
	.nav-toggle { display: flex; }
	.site-header-inner { justify-content: center; padding: 16px 20px; }
	.site-branding { padding: 0; }
	.mobile-menu { display: block; max-height: 0; overflow: hidden; background: var(--hh-black-soft); transition: max-height var(--hh-transition); }
	.site-header.menu-open .mobile-menu { max-height: 500px; }
	.mobile-nav-list { display: flex; flex-direction: column; padding: 8px 24px 24px; }
	.mobile-nav-list a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--hh-text-on-dark); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
	.mobile-nav-list li:last-child a { border-bottom: none; }
	.nav-toggle { position: absolute; left: 20px; }
	.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
	.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 720px) {
	.values-grid, .services-grid { grid-template-columns: 1fr; }
	.collections-grid { display: flex; grid-template-columns: unset; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; margin: 0 -20px; padding: 0 20px 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.collections-grid::-webkit-scrollbar { display: none; }
	.collections-grid .collection-card { flex: 0 0 68%; scroll-snap-align: start; }
	.process-timeline { flex-direction: column; gap: 28px; }
	.process-timeline::before { top: 0; bottom: 0; left: 21px; right: auto; width: 1px; height: auto; }
	.process-timeline-step { display: grid; grid-template-columns: 44px 1fr; column-gap: 20px; row-gap: 4px; align-items: start; text-align: left; width: 100%; padding: 0; }
	.process-timeline-step .process-timeline-dot { grid-row: 1 / span 2; grid-column: 1; margin-bottom: 0; }
	.process-timeline-step h3 { grid-column: 2; margin: 4px 0 2px; }
	.process-timeline-step p { grid-column: 2; max-width: 40ch; margin: 0; }
	.features-bar { padding: 40px 20px; }
	.features-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 28px; column-gap: 18px; text-align: center; }
	.feature { text-align: center; }
	.feature-icon { width: 30px; height: 30px; margin-bottom: 10px; }
	.feature h3 { font-size: 0.68rem; margin-bottom: 6px; }
	.feature p { font-size: 0.72rem; }
	.gallery-teaser-media { grid-template-columns: repeat(3, 1fr); gap: 10px; }
	.cta-banner-inner { flex-direction: column; text-align: center; }
	.hero-media .hh-placeholder, .hero-media .hero-image { min-height: 68vh; }
	.hero-content { justify-content: flex-end; padding-bottom: 48px; }
	.hero-eyebrow { margin-bottom: 14px; }
	.site-footer-main { grid-template-columns: repeat(2, 1fr); gap: 40px; }
	.process-detail-row { grid-template-columns: 1fr; gap: 12px; }
	section { padding: 56px 20px; }
	.contact-form-wrap { padding: 28px 22px; }
}
@media (max-width: 480px) {
	.gallery-teaser-media { grid-template-columns: 1fr; }
	.site-footer-main { grid-template-columns: 1fr; }
	.site-footer-bottom { flex-direction: column; text-align: center; }
	.btn { width: 100%; text-align: center; }
	.section-cta .btn, .cta-inline .btn { width: auto; }
	.hero-content h1 { font-size: 1.9rem; }
}

/* --- Work gallery --- */
.work-gallery { max-width: var(--hh-container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-tile { position: relative; overflow: hidden; border-radius: var(--hh-radius); background: var(--hh-cream-dark); }
.work-tile img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4 / 3; min-height: 0; }
.work-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; background: linear-gradient(to top, rgba(22,19,15,0.75), rgba(22,19,15,0)); color: #fff; }
.work-tile figcaption strong { display: block; font-size: 1rem; letter-spacing: 0.02em; }
.work-tile figcaption span { display: block; font-size: 0.78rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.work-tile.is-empty { aspect-ratio: 4 / 3; }
.work-tile.is-empty .hh-placeholder { min-height: 100%; height: 100%; margin: 0; border-radius: var(--hh-radius); }
.work-gallery-note { max-width: var(--hh-container); margin: 24px auto 0; text-align: center; font-size: 0.85rem; color: var(--hh-text-muted, #6f675c); }
@media (max-width: 900px) { .work-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-gallery { grid-template-columns: 1fr; } }
/* --- Process redesign --- */
.process-steps { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.process-step { display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: baseline; padding: 48px 0; border-bottom: 1px solid var(--hh-border); }
.process-step:last-child { border-bottom: none; }
.process-step-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1; color: var(--hh-gold, #b08d57); }
.process-step h2 { margin: 0 0 10px; }
.process-step p { margin: 0 0 12px; }
.process-step-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hh-gold, #b08d57); }
.process-photo { max-width: 880px; margin: 0 auto 8px; }
.process-photo img { width: 100%; display: block; object-fit: cover; aspect-ratio: 21 / 9; border-radius: var(--hh-radius); }
.process-promise { max-width: 720px; margin: 0 auto; text-align: center; padding: 24px 32px 8px; }
.process-promise p { font-family: 'Playfair Display', serif; font-size: 1.35rem; line-height: 1.5; }
@media (max-width: 700px) { .process-step { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; } }


/* --- Redesigned CTA banner --- */
.cta-banner { background: var(--hh-cream-dark); padding: 96px 32px; border-top: 1px solid var(--hh-border); }
.cta-banner-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.cta-banner-eyebrow { font-family: var(--hh-font-sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--hh-gold); margin: 0 0 16px; }
.cta-banner h2 { color: var(--hh-black); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 18px; line-height: 1.2; }
.cta-banner-sub { color: var(--hh-text-muted); max-width: 52ch; margin: 0 0 32px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-outline-dark { color: var(--hh-black); border-color: var(--hh-black); }
.btn-outline-dark:hover { background: var(--hh-black); color: var(--hh-white); }
@media (max-width: 700px) { .cta-banner { padding: 72px 24px; } .cta-banner-actions { flex-direction: column; width: 100%; } .cta-banner-actions .btn { width: 100%; text-align: center; } }


.contact-map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; border-radius: var(--hh-radius); }


/* --- Reactive touches --- */
.page-view { animation: hh-page-fade 0.4s ease both; }
@keyframes hh-page-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.collection-card .hh-placeholder { overflow: hidden; }
.collection-card img, .work-tile img { transition: transform 0.55s ease; }
.collection-card:hover img, .work-tile:hover img { transform: scale(1.05); }
.collection-card .collection-link { transition: color var(--hh-transition); }
.collection-card:hover .collection-link { color: var(--hh-gold); }

.service-card, .value-card { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.service-card:hover, .value-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(22,19,15,0.10); border-color: var(--hh-gold-light); }

.work-tile { transition: box-shadow 0.3s ease; }
.work-tile:hover { box-shadow: 0 14px 32px rgba(22,19,15,0.18); }
.work-tile figcaption { transition: padding-bottom 0.3s ease; }
.work-tile:hover figcaption { padding-bottom: 20px; }

.btn { transition: background var(--hh-transition), color var(--hh-transition), border-color var(--hh-transition), transform 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(22,19,15,0.15); }
.btn:active { transform: translateY(0); box-shadow: none; }

.process-timeline-dot { transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; }
.process-timeline-step:hover .process-timeline-dot { transform: scale(1.12); background: var(--hh-gold-light); color: var(--hh-black); }
.process-step { transition: background 0.3s ease; }

.contact-detail-item, .process-step, .split-media, .split-content { will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
	.page-view { animation: none; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.collection-card img, .work-tile img, .btn, .service-card, .value-card, .process-timeline-dot { transition: none; }
}


.footer-social a { display: inline-flex; align-items: center; justify-content: center; }
.footer-social svg { display: block; }

