
html { scroll-behavior: smooth; }
:root {
  --color-background: #f8f6f2; --color-background-rgb: 248, 246, 242;
  --color-foreground: #141414; --color-foreground-rgb: 20, 20, 20;
  --color-beige: #f2ede8; --color-beige-rgb: 242, 237, 232;
  --color-accent: #8f6842; --color-accent-rgb: 143, 104, 66;
  --color-accent-foreground: #ffffff; --color-accent-foreground-rgb: 255, 255, 255;
  --color-card: #ffffff; --color-card-rgb: 255, 255, 255;
  --color-card-foreground: #141414; --color-card-foreground-rgb: 20, 20, 20;
  --color-secondary: #f3f1ee; --color-secondary-rgb: 243, 241, 238;
  --color-muted-foreground: #737373; --color-muted-foreground-rgb: 115, 115, 115;
  --color-border: #e3ddd7; --color-border-rgb: 227, 221, 215;
  --color-input: #e3ddd7; --color-input-rgb: 227, 221, 215;
  --color-ring: #8f6842; --color-ring-rgb: 143, 104, 66;
  --color-white: #ffffff; --color-white-rgb: 255, 255, 255;
  --color-black: #000000; --color-black-rgb: 0, 0, 0;
  --radius-pill: 9999px; --radius-card: 12px; --container-max: 1400px;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--color-background); color: var(--color-foreground); font-family: "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: "Cormorant Garamond", serif; font-weight: 600; letter-spacing: -0.025em; }
p { margin: 0; }
.hrr-site { min-height: 100vh; }
.hrr-container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.hrr-section-spacing { padding: 96px 0; }
.hrr-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hrr-script { font-family: "Dancing Script", cursive; font-weight: 500; }
.hrr-about-title .hrr-script,
.hrr-portfolio-title .hrr-script,
.hrr-testimonials-title .hrr-script,
.hrr-team-title .hrr-script,
.hrr-faq-title .hrr-script,
.hrr-contact-title .hrr-script {
  color: var(--color-accent);
  text-transform: none;
}
.hrr-uppercase-label { display: inline-block; margin-bottom: 16px; color: var(--color-accent); text-transform: uppercase; letter-spacing: .2em; font-size: .875rem; font-weight: 500; }
.hrr-link-underline { position: relative; }
.hrr-link-underline::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--color-accent); transform: scaleX(0); transform-origin: right center; transition: transform .3s ease-out; }
.hrr-link-underline:hover::after, .hrr-link-underline:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.hrr-button, .hrr-button-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: var(--radius-pill); cursor: pointer; transition: background-color .3s ease-out, color .3s ease-out, border-color .3s ease-out, transform .3s ease-out, opacity .3s ease-out; white-space: nowrap; }
.hrr-button { background: var(--color-accent); color: var(--color-accent-foreground); }
.hrr-button:hover, .hrr-button:focus-visible { background: rgba(var(--color-accent-rgb), .9); }
.hrr-button-small { padding: 8px 16px; font-size: .875rem; font-weight: 500; letter-spacing: .08em; }
.hrr-button-large { padding: 12px 24px; font-size: .875rem; font-weight: 500; letter-spacing: .08em; }
.hrr-icon-button { width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-accent); background: var(--color-accent); color: var(--color-accent-foreground); cursor: pointer; transition: background-color .3s ease-out, border-color .3s ease-out, opacity .3s ease-out; }
.hrr-icon-button:hover, .hrr-icon-button:focus-visible { background: rgba(var(--color-accent-rgb), .9); }
.hrr-icon-button.is-dark { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }
.hrr-icon-button.is-dark:hover, .hrr-icon-button.is-dark:focus-visible { background: rgba(var(--color-foreground-rgb), .9); }
.hrr-icon-button:disabled, .hrr-button:disabled { opacity: .3; cursor: not-allowed; }
.hrr-icon { width: 1em; height: 1em; display: inline-block; flex-shrink: 0; }
.hrr-card-hover { transition: transform .3s ease-out, box-shadow .3s ease-out; }
.hrr-card-hover:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(var(--color-black-rgb), .1), 0 4px 6px -4px rgba(var(--color-black-rgb), .1); }
.hrr-image-zoom { overflow: hidden; }
.hrr-image-zoom img { transition: transform .5s ease-out; }
.hrr-image-zoom:hover img { transform: scale(1.05); }
.scroll-animate, .scroll-animate-left, .scroll-animate-right, .scroll-animate-scale, .stagger-children > * { opacity: 0; }
.scroll-animate { transform: translateY(32px); transition: transform .7s ease-out, opacity .7s ease-out; }
.scroll-animate-left { transform: translateX(-32px); transition: transform .7s ease-out, opacity .7s ease-out; }
.scroll-animate-right { transform: translateX(32px); transition: transform .7s ease-out, opacity .7s ease-out; }
.scroll-animate-scale { transform: scale(.95); transition: transform .7s ease-out, opacity .7s ease-out; }
.scroll-animate.visible, .scroll-animate-left.visible, .scroll-animate-right.visible, .scroll-animate-scale.visible { opacity: 1; transform: none; }
.stagger-children > * { transform: translateY(16px); transition: transform .5s ease-out, opacity .5s ease-out; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1){transition-delay:0ms}.stagger-children.visible > *:nth-child(2){transition-delay:80ms}.stagger-children.visible > *:nth-child(3){transition-delay:160ms}.stagger-children.visible > *:nth-child(4){transition-delay:240ms}.stagger-children.visible > *:nth-child(5){transition-delay:320ms}.stagger-children.visible > *:nth-child(6){transition-delay:400ms}.stagger-children.visible > *:nth-child(7){transition-delay:480ms}.stagger-children.visible > *:nth-child(8){transition-delay:560ms}.stagger-children.visible > *:nth-child(9){transition-delay:640ms}.stagger-children.visible > *:nth-child(10){transition-delay:720ms}.stagger-children.visible > *:nth-child(11){transition-delay:800ms}.stagger-children.visible > *:nth-child(12){transition-delay:880ms}
.hrr-site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background-color .3s ease-out, backdrop-filter .3s ease-out, box-shadow .3s ease-out; }

/* Anclas (#about, #contact, …): margen bajo el header fijo si el navegador usa hash o scroll nativo. */
main section[id] {
  scroll-margin-top: 96px;
}
.hrr-site-header.is-scrolled { background: rgba(var(--color-background-rgb), .95); backdrop-filter: blur(4px); box-shadow: 0 1px 2px 0 rgba(var(--color-black-rgb), .05); }
.hrr-nav { display: flex; align-items: center; justify-content: space-between; min-height: 88px; }
.hrr-nav-logo-link { display: inline-flex; align-items: center; }
.hrr-nav-logo { height: 88px; width: auto; transition: height .3s ease, filter .3s ease; filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(var(--color-black-rgb), .35)); }
.hrr-site-header.is-scrolled .hrr-nav-logo { height: 62px; filter: none; }
.hrr-nav-desktop { display: flex; align-items: center; gap: 32px; }
.hrr-nav-mobile-actions { display: none; align-items: center; gap: 8px; }
.hrr-nav-link { font-size: .875rem; font-weight: 500; letter-spacing: .08em; border: 0; background: transparent; padding: 0; cursor: pointer; color: rgba(var(--color-white-rgb), .9); filter: drop-shadow(0 2px 4px rgba(var(--color-black-rgb), .2)); transition: color .3s ease-out; }
.hrr-site-header.is-scrolled .hrr-nav-link { color: var(--color-muted-foreground); filter: none; }
.hrr-nav-link:hover, .hrr-nav-link:focus-visible, .hrr-site-header.is-scrolled .hrr-nav-link:hover, .hrr-site-header.is-scrolled .hrr-nav-link:focus-visible { color: var(--color-foreground); }
.hrr-nav-toggle { border: 0; background: transparent; color: var(--color-white); cursor: pointer; padding: 8px; filter: drop-shadow(0 2px 4px rgba(var(--color-black-rgb), .2)); }
.hrr-site-header.is-scrolled .hrr-nav-toggle { color: var(--color-foreground); filter: none; }
.hrr-nav-mobile-panel { display: none; background: var(--color-background); border-top: 1px solid var(--color-border); }
.hrr-nav-mobile-panel.is-open { display: block; }
.hrr-nav-mobile-inner { padding: 16px 24px; display: flex; flex-direction: column; gap: 16px; }
.hrr-nav-mobile-link { border: 0; background: transparent; text-align: left; padding: 8px 0; color: var(--color-muted-foreground); font-size: .875rem; font-weight: 500; letter-spacing: .08em; cursor: pointer; }
.hrr-nav-mobile-link:hover, .hrr-nav-mobile-link:focus-visible { color: var(--color-foreground); }
.hrr-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hrr-hero-background, .hrr-hero-overlay, .hrr-hero-background-layer { position: absolute; inset: 0; }
.hrr-hero-background-layer { background-size: cover; background-position: center; z-index: 0; }
.hrr-hero-overlay { background: rgba(var(--color-foreground-rgb), .7); z-index: 1; }
.hrr-hero-content { position: relative; z-index: 2; max-width: 56rem; margin: 0 auto; padding: 24px; text-align: center; }
.hrr-hero-title-top { color: var(--color-white); font-size: 2.25rem; line-height: 1; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; animation: hrr-fade-up .6s ease-out forwards; animation-delay: .2s; opacity: 0; }
.hrr-hero-title-script { color: var(--color-accent); font-size: 3rem; line-height: 1; margin-bottom: 32px; animation: hrr-fade-up .6s ease-out forwards; animation-delay: .4s; opacity: 0; }
.hrr-hero-title-script > span { display: inline-block; border-bottom: 2px solid rgba(var(--color-accent-rgb), .5); padding-bottom: 4px; }
.hrr-hero-description { color: rgba(var(--color-white-rgb), .8); max-width: 36rem; margin: 0 auto 40px; font-size: 1rem; line-height: 1.625; letter-spacing: .08em; animation: hrr-fade-up .6s ease-out forwards; animation-delay: .6s; opacity: 0; }
.hrr-hero-actions { animation: hrr-fade-up .6s ease-out forwards; animation-delay: .8s; opacity: 0; }
.hrr-hero-bottom { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; }
.hrr-hero-stats-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 48px 16px; }
.hrr-hero-stats { display: flex; align-items: center; gap: 40px; }
.hrr-hero-stat-value { color: var(--color-white); font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.hrr-hero-stat-label { color: rgba(var(--color-white-rgb), .6); margin-top: 4px; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; }
.hrr-hero-feature-bar { background: rgba(var(--color-foreground-rgb), .4); backdrop-filter: blur(4px); border-top: 1px solid rgba(var(--color-white-rgb), .1); padding: 12px 48px; }
.hrr-hero-feature-list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; color: rgba(var(--color-white-rgb), .6); font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; }
.hrr-hero-feature-item { display: inline-flex; align-items: center; gap: 8px; }
.hrr-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.hrr-about { background: var(--color-beige); }
.hrr-about-grid, .hrr-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 80px; align-items: center; }
.hrr-about-image-wrap { position: relative; }
.hrr-about-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-card); }
.hrr-about-accent-box { position: absolute; right: -16px; bottom: -16px; width: 96px; height: 96px; border-radius: var(--radius-card); background: var(--color-accent); }
.hrr-about-title, .hrr-services-title, .hrr-portfolio-title, .hrr-testimonials-title, .hrr-team-title, .hrr-faq-title, .hrr-contact-title { font-size: 1.875rem; font-weight: 700; line-height: 1.1; }
.hrr-about-text, .hrr-portfolio-description, .hrr-team-description, .hrr-contact-description, .hrr-why-description, .hrr-footer-description, .hrr-testimonial-text, .hrr-contact-form-note { color: var(--color-muted-foreground); line-height: 1.625; }
.hrr-about-text + .hrr-about-text { margin-top: 24px; }
.hrr-values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.hrr-value-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.hrr-value-icon { color: var(--color-accent); font-size: 1.5rem; }
.hrr-value-text { font-size: .875rem; color: var(--color-muted-foreground); }
.hrr-services { background: var(--color-secondary); }
.hrr-services-grid { display: grid; grid-template-columns: minmax(280px, .6fr) minmax(0, 1.4fr); gap: 48px; align-items: start; }
.hrr-services-title { text-transform: uppercase; letter-spacing: .04em; }
.hrr-services-title-line { display: block; }
.hrr-services-script { color: var(--color-accent); font-size: 2.25rem; font-weight: 700; text-transform: none; }
.hrr-services-underline { width: 64px; height: 4px; border-radius: 999px; background: var(--color-accent); margin-top: 12px; }
.hrr-services-controls { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.hrr-services-counter { color: var(--color-muted-foreground); margin-top: 24px; letter-spacing: .05em; font-size: .875rem; }
.hrr-services-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.hrr-service-card { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 3 / 4; cursor: pointer; }
.hrr-service-card.is-hidden,
.hrr-service-card.is-empty,
.hrr-grid-card.is-hidden,
.hrr-grid-card.is-empty,
.hrr-team-member.is-hidden,
.hrr-team-member.is-empty,
.hrr-faq-item.is-hidden,
.hrr-faq-item.is-empty,
.hrr-contact-select-option.is-hidden,
.hrr-contact-select-option.is-empty,
.hrr-testimonial-card.is-hidden,
.hrr-testimonial-card.is-empty { display: none !important; }
.hrr-service-card-overlay { position: absolute; inset: 0; background: rgba(var(--color-foreground-rgb), .4); transition: background-color .3s ease-out; }
.hrr-service-card:hover .hrr-service-card-overlay { background: rgba(var(--color-foreground-rgb), .6); }
.hrr-service-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease-out; }
.hrr-service-card:hover .hrr-service-card-image { transform: scale(1.05); }
.hrr-service-card-number { position: absolute; top: 20px; left: 24px; color: rgba(var(--color-white-rgb), .3); font-size: 3rem; font-weight: 700; line-height: 1; }
.hrr-service-card-arrow { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(var(--color-white-rgb), .3); color: var(--color-white); background: transparent; cursor: pointer; transition: background-color .3s ease-out, border-color .3s ease-out; }
.hrr-service-card:hover .hrr-service-card-arrow { background: var(--color-accent); border-color: var(--color-accent); }
.hrr-service-card-content { position: absolute; right: 24px; bottom: 24px; left: 24px; transition: transform .3s ease-out; }
.hrr-service-card:hover .hrr-service-card-content { transform: translateY(-16px); }
.hrr-service-card-title { color: var(--color-white); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.hrr-service-card-description { color: rgba(var(--color-white-rgb), .7); font-size: .875rem; line-height: 1.625; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease-out, opacity .3s ease-out; }
.hrr-service-card:hover .hrr-service-card-description { max-height: 96px; opacity: 1; }
.hrr-portfolio { background: var(--color-beige); }
.hrr-section-header { text-align: center; margin-bottom: 64px; }
.hrr-section-header p:last-child { max-width: 42rem; margin: 0 auto; }
.hrr-portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.hrr-testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.hrr-grid-card { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.hrr-grid-card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hrr-grid-card-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; background: rgba(var(--color-foreground-rgb), 0); transition: background-color .3s ease-out; }
.hrr-grid-card:hover .hrr-grid-card-overlay { background: rgba(var(--color-foreground-rgb), .6); }
.hrr-grid-card-meta { padding: 24px; transform: translateY(16px); opacity: 0; transition: transform .3s ease-out, opacity .3s ease-out; }
.hrr-grid-card:hover .hrr-grid-card-meta { transform: translateY(0); opacity: 1; }
.hrr-grid-card-category { color: var(--color-accent); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.hrr-grid-card-title { color: var(--color-white); font-size: 1.125rem; font-weight: 700; margin-top: 4px; }
.hrr-portfolio-note { margin-top: 48px; text-align: center; font-style: italic; color: var(--color-muted-foreground); }
.hrr-why { position: relative; min-height: 85vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.hrr-why-background, .hrr-why-overlay { position: absolute; inset: 0; }
.hrr-why-background { background-size: cover; background-position: center; }
.hrr-why-overlay { background: rgba(var(--color-foreground-rgb), .5); }
.hrr-why-inner { position: relative; z-index: 2; display: flex; flex: 1; flex-direction: column; justify-content: space-between; padding: 64px 24px 80px; }
.hrr-why-title { color: var(--color-white); font-size: clamp(3rem, 7vw, 4.75rem); line-height: .95; text-transform: uppercase; letter-spacing: .04em; max-width: 320px; }
.hrr-why-description-wrap { align-self: flex-end; max-width: 512px; }
.hrr-why-description { color: rgba(var(--color-white-rgb), .8); font-size: 1.125rem; line-height: 1.625; }
.hrr-why-bottom { position: relative; z-index: 2; background: rgba(var(--color-foreground-rgb), .7); backdrop-filter: blur(6px); border-top: 1px solid rgba(var(--color-white-rgb), .1); }
.hrr-why-highlights, .hrr-hero-feature-list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.hrr-why-highlights { padding: 16px 24px; }
.hrr-why-highlight { display: inline-flex; align-items: center; gap: 8px; }
.hrr-why-highlight span { color: rgba(var(--color-white-rgb), .9); font-size: .875rem; }
.hrr-highlight-icon { color: var(--color-accent); font-size: 1rem; }
.hrr-testimonials { background: var(--color-background); padding: 96px 0 48px; }
.hrr-testimonial-card { background: var(--color-card); color: var(--color-card-foreground); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 32px; }
.hrr-quote-icon { color: rgba(var(--color-accent-rgb), .3); font-size: 2rem; margin-bottom: 16px; }
.hrr-testimonial-stars { display: flex; gap: 4px; margin: 0 0 12px; color: var(--color-accent); }
.hrr-testimonial-name { font-weight: 700; margin-top: 0; }
.hrr-testimonial-project { color: var(--color-muted-foreground); font-size: .875rem; }
.hrr-team { background: var(--color-background); padding: 32px 0 96px; }
.hrr-divider { width: 100%; height: 1px; background: var(--color-border); margin-bottom: 64px; }
.hrr-team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; max-width: 672px; margin: 0 auto; }
.hrr-team-member { text-align: center; }
.hrr-team-image { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-card); margin-bottom: 16px; }
.hrr-team-name { font-size: 1.25rem; font-weight: 700; }
.hrr-team-role { color: var(--color-muted-foreground); font-size: .875rem; }
.hrr-faq { position: relative; overflow: hidden; }
.hrr-faq-background, .hrr-faq-overlay { position: absolute; inset: 0; }
.hrr-faq-background { background-size: cover; background-position: center; background-attachment: fixed; }
.hrr-faq-overlay { background: rgba(var(--color-foreground-rgb), .7); }
.hrr-faq-inner { position: relative; z-index: 2; max-width: 768px; }
.hrr-faq-header { text-align: center; margin-bottom: 64px; }
.hrr-faq-header h2 { color: var(--color-white); }
.hrr-faq-list { display: flex; flex-direction: column; gap: 16px; }
.hrr-faq-item { background: rgba(var(--color-white-rgb), .1); backdrop-filter: blur(4px); border: 1px solid rgba(var(--color-white-rgb), .15); border-radius: var(--radius-card); padding: 0 24px; }
.hrr-faq-trigger { width: 100%; display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: transparent; color: var(--color-white); font-family: "Inter", system-ui, sans-serif; font-size: 1rem; line-height: 1.5rem; font-weight: 600; letter-spacing: normal; text-align: left; padding: 16px 0; cursor: pointer; transition: color .2s ease-out; -webkit-font-smoothing: antialiased; }
.hrr-faq-trigger:hover { text-decoration: none; }
.hrr-faq-trigger:focus-visible { outline: 2px solid rgba(var(--color-white-rgb), .5); outline-offset: 2px; }
.hrr-faq-chevron { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform .2s ease-out; }
.hrr-faq-item.is-open .hrr-faq-chevron { transform: rotate(180deg); }
.hrr-faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .2s ease-out; }
.hrr-faq-item.is-open .hrr-faq-content { grid-template-rows: 1fr; }
.hrr-faq-content-inner { overflow: hidden; min-height: 0; }
.hrr-faq-answer { color: rgba(var(--color-white-rgb), .7); font-size: 1rem; line-height: 1.625; padding-bottom: 16px; margin: 0; }
.hrr-contact-form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 40px; }
.hrr-contact-meta { display: flex; align-items: center; gap: 16px; }
.hrr-contact-meta + .hrr-contact-meta { margin-top: 24px; }
.hrr-contact-meta-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--color-accent); color: var(--color-accent-foreground); }
.hrr-contact-meta-label { color: var(--color-muted-foreground); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; font-size: .9375rem; }
.hrr-contact-meta-link { font-weight: 500; }
.hrr-contact-meta-link:hover, .hrr-contact-meta-link:focus-visible { color: var(--color-accent); }
.hrr-contact-quote-wrap { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.hrr-contact-quote { color: rgba(var(--color-foreground-rgb), .8); font-family: "Cormorant Garamond", serif; font-size: clamp(1.25rem, 3vw, 1.5rem); font-style: italic; line-height: 1.7; }
.hrr-contact-quote-signature { margin-top: 12px; color: var(--color-accent); font-size: .875rem; font-weight: 500; }
.hrr-contact-form-title { font-size: 1.25rem; margin-bottom: 8px; }
.hrr-contact-form-subtitle { color: var(--color-muted-foreground); margin-bottom: 24px; font-size: .9375rem; }
.hrr-contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hrr-contact-form-row + .hrr-contact-form-row, .hrr-contact-form-grid + .hrr-contact-form-row { margin-top: 20px; }
.hrr-contact-form-label { display: block; margin-bottom: 6px; color: var(--color-foreground); font-weight: 500; font-size: .9375rem; }
.hrr-field, .hrr-select, .hrr-textarea { width: 100%; border: 1px solid var(--color-input); border-radius: var(--radius-card); background: var(--color-background); color: var(--color-foreground); padding: 10px 12px; outline: none; font-size: .9375rem; }
.hrr-field:focus, .hrr-select:focus, .hrr-textarea:focus { border-color: var(--color-ring); box-shadow: 0 0 0 2px rgba(var(--color-ring-rgb), .15); }
.hrr-textarea { resize: none; min-height: 112px; }
.hrr-contact-form-note { margin-top: 12px; text-align: center; font-size: .75rem; }
.hrr-footer { background: var(--color-beige); border-top: 1px solid var(--color-border); padding: 64px 0; }
.hrr-footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 64px; }
.hrr-footer-brand { font-size: 2rem; line-height: 1; text-transform: uppercase; }
.hrr-footer-heading { margin-bottom: 20px; font-size: .875rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.hrr-footer-links { display: flex; flex-direction: column; gap: 12px; }
.hrr-footer-link { color: var(--color-muted-foreground); display: inline-flex; align-items: center; gap: 12px; font-size: .9375rem; }
.hrr-footer-link:hover, .hrr-footer-link:focus-visible { color: var(--color-accent); }
.hrr-footer-bottom { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hrr-footer-copy { color: var(--color-muted-foreground); font-size: .9375rem; }
.hrr-footer-attribution { color: rgba(var(--color-muted-foreground-rgb), .7); font-size: .75rem; }
.hrr-footer-attribution a { text-decoration: underline; text-underline-offset: 2px; }
.hrr-footer-attribution a:hover, .hrr-footer-attribution a:focus-visible { color: var(--color-accent); }
@keyframes hrr-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) {
  .hrr-hero-title-top { font-size: 3.75rem; }
  .hrr-hero-title-script { font-size: 4.5rem; }
  .hrr-about-title, .hrr-services-title, .hrr-portfolio-title, .hrr-testimonials-title, .hrr-team-title, .hrr-faq-title, .hrr-contact-title { font-size: 2.25rem; }
  .hrr-services-script { font-size: 3rem; }
  .hrr-service-card-title { font-size: 1.5rem; }
  .hrr-faq-trigger { font-size: 1.125rem; line-height: 1.75rem; }
}
@media (min-width: 1024px) {
  .hrr-section-spacing { padding: 128px 0; }
  .hrr-hero-title-top { font-size: 4.5rem; }
  .hrr-hero-title-script { font-size: 6rem; }
  .hrr-about-title, .hrr-services-title, .hrr-portfolio-title, .hrr-testimonials-title, .hrr-team-title, .hrr-faq-title, .hrr-contact-title { font-size: 3rem; }
  .hrr-services-script { font-size: 3.75rem; }
  .hrr-testimonials { padding: 128px 0 64px; }
  .hrr-team { padding: 48px 0 128px; }
}
@media (max-width: 1023px) {
  .hrr-about-grid, .hrr-contact-grid, .hrr-services-grid { grid-template-columns: 1fr; gap: 48px; }
  .hrr-portfolio-grid, .hrr-testimonials-grid, .hrr-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hrr-hero-stats-row, .hrr-hero-feature-bar { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 767px) {
  main section[id] { scroll-margin-top: 80px; }
  .hrr-nav { min-height: 72px; }
  .hrr-nav-desktop { display: none; }
  .hrr-nav-mobile-actions { display: flex; }
  .hrr-nav-logo { height: 72px; }
  .hrr-site-header.is-scrolled .hrr-nav-logo { height: 56px; }
  .hrr-button-mobile-small { font-size: .75rem; padding: 6px 12px; min-height: 32px; }
  .hrr-hero-content { padding-top: 104px; padding-bottom: 140px; }
  .hrr-hero-description { font-size: .875rem; }
  .hrr-hero-stats { display: none; }
  .hrr-hero-stats-row { justify-content: center; }
  .hrr-hero-secondary-cta { display: none; }
  .hrr-hero-feature-list, .hrr-why-highlights { justify-content: center; }
  .hrr-values-grid, .hrr-contact-form-grid, .hrr-team-grid, .hrr-testimonials-grid, .hrr-footer-grid, .hrr-portfolio-grid { grid-template-columns: 1fr; }
  .hrr-services-cards { grid-template-columns: 1fr; }
  .hrr-contact-form-card { padding: 32px 24px; }
  .hrr-faq-item { padding-left: 20px; padding-right: 20px; }
  .hrr-footer-bottom { flex-direction: column; text-align: center; }
}
