/* ============================================
   Assemble Dublin — Design tokens
   ============================================ */
:root {
  --ink:        #14213D;   /* deep navy — headings, dark pills */
  --ink-soft:   #253458;   /* lighter navy for hover states */
  --paper:      #FFFFFF;   /* white — main background */
  --paper-alt:  #F6F4EE;   /* soft warm gray — alternating sections */
  --hivis:      #F4623A;   /* orange — primary CTA */
  --hivis-dark: #D94F2B;
  --hivis-tint: rgba(244,98,58,0.12);
  --ink-70:     rgba(20,33,61,0.7);
  --ink-45:     rgba(20,33,61,0.45);
  --ink-10:     rgba(20,33,61,0.08);
  --paper-70:   rgba(255,255,255,0.7);

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --wrap: 1180px;
  --edge: max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2.5px solid var(--hivis);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 760px; }

.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hivis-dark);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section-title { font-size: clamp(28px, 3.4vw, 40px); max-width: 640px; }
.section-lede {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 560px;
  margin: 0 0 40px;
}

/* ============================================
   Buttons — pill-shaped throughout
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-whatsapp {
  background: var(--hivis);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(244,98,58,0.28);
}
.btn-whatsapp:hover { background: var(--hivis-dark); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(20,33,61,0.18);
}
.btn-dark:hover { background: var(--ink-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-45);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-dark { color: var(--paper); border-color: rgba(255,255,255,0.5); }
.btn-ghost-dark:hover { border-color: var(--paper); }
.btn-small { padding: 9px 18px; font-size: 13.5px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; align-items: center; }
.brand-mark img { height: 36px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.main-nav {
  display: flex;
  gap: 4px;
  background: var(--paper-alt);
  border-radius: var(--radius-full);
  padding: 6px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--paper); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--ink-10);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--ink-10);
}
.mobile-nav a:not(.btn) {
  padding: 13px 4px;
  font-size: 15.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink-10);
}
.mobile-nav .btn { margin-top: 14px; }
.site-header.nav-open .mobile-nav { display: flex; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ============================================
   Hero — photo bleeding to the right edge
   ============================================ */
.hero {
  background: var(--paper);
  padding-top: 40px;
}
.hero-flex {
  display: flex;
  align-items: stretch;
  min-height: 560px;
}
.hero-copy-wrap {
  flex: 0 0 auto;
  width: min(560px, 47%);
  padding: 30px 40px 30px var(--edge);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--hivis);
}
.hero-lede {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 460px;
  margin: 0 0 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photo {
  flex: 1 1 auto;
  position: relative;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
  min-height: 460px;
  background: var(--paper-alt);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

@media (max-width: 900px) {
  .hero { padding-top: 0; }
  .hero-flex { flex-direction: column-reverse; min-height: 0; }
  .hero-copy-wrap { width: auto; padding: 34px 24px 30px; }
  .hero-photo { border-radius: 0 0 32px 32px; min-height: 380px; }
  .hero-photo img { object-position: 58% 15%; }
}

/* ============================================
   Trust pill bar — overlaps hero bottom edge
   ============================================ */
.trust-pillbar {
  position: relative;
  z-index: 5;
  max-width: calc(var(--wrap) - 40px);
  margin: -30px auto 0;
  background: var(--paper);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 44px rgba(20,33,61,0.14);
  border: 1px solid var(--ink-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 8px 8px 26px;
  flex-wrap: wrap;
}
.trust-pillbar .pill {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
  padding: 10px 4px;
}
.trust-pillbar .pill-cta {
  color: var(--paper);
  background: var(--hivis);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.trust-pillbar .pill-cta:hover { background: var(--hivis-dark); }

@media (max-width: 640px) {
  .trust-pillbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    margin: -24px 16px 0;
    padding: 14px;
    gap: 4px;
  }
  .trust-pillbar .pill { padding: 6px 4px; }
  .trust-pillbar .pill-cta { justify-content: center; margin-top: 6px; }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }

/* ============================================
   Services — photo cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(20,33,61,0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20,33,61,0.12);
}
.service-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-body { padding: 22px 22px 24px; }
.service-body h3 { font-size: 18px; margin-bottom: 6px; }
.service-body p { font-size: 14px; color: var(--ink-70); margin: 0 0 18px; }
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service-foot .price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Pricing — light card panel
   ============================================ */
.pricing-panel {
  background: var(--paper);
  border-radius: 28px;
  border: 1px solid var(--ink-10);
  box-shadow: 0 20px 60px rgba(20,33,61,0.07);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-copy .section-lede { margin-bottom: 24px; }
.pricing-copy .btn { margin-top: 8px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 14.5px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink-10);
}
.price-table th { color: var(--ink-45); font-weight: 500; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; }
.price-table td { color: var(--ink); }
.price-table td:last-child { text-align: right; font-weight: 600; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .ok { color: var(--hivis-dark); }

@media (max-width: 860px) {
  .pricing-panel { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ============================================
   How it works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  border-top: 2.5px solid var(--hivis);
  padding-top: 18px;
}
.step-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-45);
  margin-bottom: 10px;
}
.steps h3 { font-size: 17px; margin-bottom: 6px; }
.steps p { font-size: 14.5px; color: var(--ink-70); margin: 0; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   Why us / features — light bordered cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 2px 14px rgba(20,33,61,0.05);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--hivis-tint);
  color: var(--hivis-dark);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}
.feature h3 { font-size: 16.5px; margin-bottom: 8px; color: var(--ink); }
.feature p { font-size: 14px; color: var(--ink-70); margin: 0; }

@media (max-width: 860px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Reviews
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  margin: 0;
  padding: 26px;
  background: var(--paper-alt);
  border-radius: var(--radius);
}
.review-card p { font-size: 15px; margin: 0 0 14px; color: var(--ink); }
.review-card cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-45);
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Areas
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.areas-grid-3 { grid-template-columns: repeat(3, 1fr); }
.area-col h3 { font-size: 15.5px; margin-bottom: 8px; color: var(--hivis-dark); }
.area-col p { font-size: 14px; color: var(--ink-70); margin: 0; }

@media (max-width: 860px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .areas-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--hivis);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; font-size: 14.5px; color: var(--ink-70); }

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: var(--hivis);
  color: var(--paper);
  padding: 64px 0;
  margin: 0 24px;
  border-radius: 32px;
  max-width: calc(var(--wrap) + 48px);
  margin-left: auto;
  margin-right: auto;
}
.cta-band-inner { text-align: center; }
.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--paper);
  margin-bottom: 10px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.9); margin: 0 0 28px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-whatsapp { background: var(--ink); box-shadow: none; }
.cta-band .btn-whatsapp:hover { background: var(--ink-soft); }
.cta-band .btn-ghost-dark { border-color: rgba(255,255,255,0.6); }

@media (max-width: 640px) {
  .cta-band { margin: 0 16px; border-radius: 24px; }
}

/* ============================================
   Contact
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.contact-list li { font-size: 15px; display: flex; gap: 10px; align-items: baseline; }
.contact-list .mono { font-size: 12px; color: var(--ink-45); min-width: 82px; text-transform: uppercase; letter-spacing: 0.06em; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper-alt);
  padding: 30px;
  border-radius: var(--radius);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-70);
}
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-10);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--hivis);
}
.form-note { font-size: 12px; color: var(--ink-45); margin: 0; }

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: var(--paper-70); padding: 52px 0 0; margin-top: 40px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-inner .brand-word { color: var(--paper); font-size: 17px; }
.footer-inner p { max-width: 320px; font-size: 14px; margin: 10px 0 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-self: flex-start; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--hivis); }
.footer-bottom {
  padding: 18px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   WhatsApp floating button (mobile)
   ============================================ */
.wa-fab {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--hivis);
  color: var(--paper);
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(244,98,58,0.4);
  z-index: 50;
}
@media (max-width: 860px) {
  .wa-fab { display: flex; }
}
