/* Arham Ltd - static rebuild of the GoDaddy Website Builder site */

@font-face { font-family: "EB Garamond"; src: url("../fonts/eb-garamond-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lora"; src: url("../fonts/lora-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lora"; src: url("../fonts/lora-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --dark: #161616;
  --black: #000;
  --grey-bg: #f6f6f6;
  --heading: #000;
  --text: #1b1b1b;
  --muted: #595959;
  --light: #f7f7f7;
  --hero-sub: #a9a9a9;
  --btn-dark: #2a2a2a;
  --line: #e2e2e2;
  --serif-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --serif-text: "Lora", Georgia, "Times New Roman", serif;
  --container: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--text); font-family: var(--serif-text); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif-display); font-weight: 400; color: var(--heading); line-height: 1.2; margin: 0 0 24px; }
h1, h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-family: var(--serif-text); font-weight: 400; font-size: 22px; line-height: 1.3; color: var(--text); margin: 0 0 16px; }
p { margin: 0 0 16px; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--grey { background: var(--grey-bg); }
.section--border { border-top: 1px solid var(--line); }
.section-title { text-align: center; margin-bottom: 48px; }
.center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 8px 40px; border: 0; border-radius: 48px; font-family: var(--serif-text); font-weight: 700; font-size: 14px; letter-spacing: 0.063em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: opacity .2s ease; }
.btn:hover { opacity: .85; }
.btn--dark { background: var(--btn-dark); color: var(--light); }
.btn--black { background: var(--black); color: var(--light); }
.btn--soft { background: #3a3a3a; color: var(--light); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 40px; }
.brand { display: block; width: 150px; height: 56px; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav a { font-family: var(--serif-text); font-weight: 700; font-size: 15px; letter-spacing: 0.063em; text-transform: uppercase; text-decoration: none; color: var(--text); padding: 4px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--text); }
.nav-toggle svg { width: 32px; height: 32px; display: block; }

/* Home: large logo tile overlapping the hero */
.home .site-header { border-bottom: 0; }
.home .brand { position: absolute; top: 16px; left: 40px; width: 150px; height: 150px; padding: 14px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.12); z-index: 5; }
.home.is-scrolled .brand { position: static; width: 150px; height: 56px; padding: 0; box-shadow: none; }
.home.is-scrolled .site-header { border-bottom: 1px solid var(--line); }

/* Hero (home) */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; background: var(--dark); }
.hero__media { position: relative; min-height: 300px; }
.hero__body { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px 48px; }
.hero__body h1 { color: var(--light); margin-bottom: 16px; max-width: 420px; }
.hero__body p { color: var(--hero-sub); font-size: 22px; margin-bottom: 24px; }

/* Three cards (What We Do) */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card { text-align: center; }
.card__media { margin-bottom: 24px; }
.card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.cards3--square .card img { aspect-ratio: 1 / 1; }
.card h4 { margin-bottom: 12px; }
.card p { font-size: 14px; }

/* Image + text rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature + .feature { margin-top: 56px; }
.feature__media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.feature--wide .feature__media img { aspect-ratio: 2 / 1; }
.feature--reverse .feature__media { order: 2; }
.feature--centered .feature__body { text-align: center; padding: 0 16px; }
.feature__body p { font-size: 15px; }
.feature--story { align-items: start; grid-template-columns: 1fr 2fr; }
.feature--story .feature__media img { aspect-ratio: 4 / 3; }

/* Split: text on one half, full-bleed image on the other */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split__body { padding: 72px 64px 72px max(24px, calc((100vw - var(--container)) / 2 + 24px)); display: flex; flex-direction: column; justify-content: center; }
.split__body > div { max-width: 460px; }
.split__body h4 { margin-top: 12px; }
.split__body p { font-size: 15px; }
.split__media { position: relative; overflow: hidden; min-height: 320px; }
.split__media--contain { background-color: #fff; }
.split__media--contain .plx-layer { background-size: 60%; }
.split--grey .split__body { background: var(--grey-bg); }

/* Image-left call to action (SME sector) */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.cta-split__media { position: relative; min-height: 320px; }
.cta-split__body { display: flex; flex-direction: column; justify-content: center; padding: 64px 48px; }
.cta-split__body > div { max-width: 520px; }
.cta-split__body p { font-size: 20px; margin-bottom: 32px; }
.cta-split--grey .cta-split__body { background: var(--grey-bg); }

/* Contact banner (home) */
.contact-banner { position: relative; overflow: hidden; padding: 72px 0; background: var(--dark); }
.contact-banner .plx-layer { background-image: linear-gradient(rgba(0,0,0,.66), rgba(0,0,0,.66)), url("../img/contact-banner.jpg"); }
.contact-banner > .container { position: relative; z-index: 1; }
.contact-banner h2 { color: var(--light); text-align: center; margin-bottom: 40px; }
.contact-card { max-width: 640px; margin: 0 auto; background: #fff; padding: 56px 48px; text-align: center; }
.contact-card h4 { margin-top: 32px; }
.contact-card h4:first-child { margin-top: 0; }

/* Contact details */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin-bottom: 14px; }
.contact-list .label { display: block; font-size: 14px; color: var(--muted); }
.contact-list a { color: var(--text); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.address { font-size: 15px; }
.hours { border-collapse: collapse; margin: 0 auto; font-size: 15px; }
.hours td { padding: 3px 10px; color: var(--muted); text-align: left; }
.hours td:last-child { color: var(--text); }
.hours tr.today td { color: var(--text); font-weight: 700; }

/* Contact page */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.contact-page__body { padding: 64px 48px 64px max(24px, calc((100vw - var(--container)) / 2 + 24px)); }
.contact-page__body .intro { margin-bottom: 32px; }
.contact-page__body h4 { margin-top: 32px; }
.contact-page__body .hours { margin: 0; }
.contact-page__body .hours td:first-child { padding-left: 0; }
.contact-page__map { position: relative; background: #e5e3df; min-height: 360px; }
.contact-page__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-page__map .btn { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 2; min-height: 40px; padding: 6px 24px; font-size: 12px; }

/* Subscribe */
.subscribe { padding: 64px 0; text-align: center; }
.subscribe--grey { background: var(--grey-bg); }
.subscribe--dark { position: relative; overflow: hidden; background: var(--dark); }
.subscribe--dark .plx-layer { background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("../img/subscribe-banner.jpg"); }
.subscribe--dark > .container { position: relative; z-index: 1; }
.subscribe h2 { margin-bottom: 16px; }
.subscribe--dark h2, .subscribe--dark p { color: var(--light); }
.subscribe-form { max-width: 680px; margin: 24px auto 0; }
.subscribe-row { display: flex; gap: 20px; justify-content: center; align-items: flex-end; }
.subscribe-row label { flex: 1; text-align: left; }
.subscribe-form input[type="email"] { width: 100%; height: 48px; padding: 12px 12px 8px; border: 0; border-bottom: 2px solid var(--text); background: #fff; font: inherit; font-size: 15px; color: var(--text); }
.subscribe--dark input[type="email"] { background: #262626; color: var(--light); border-bottom-color: var(--light); }
.subscribe-form input::placeholder { color: #767676; }
.subscribe--dark input::placeholder { color: #bdbdbd; }
.form-status { min-height: 1.6em; margin-top: 12px; font-size: 14px; }
.subscribe--dark .form-status { color: var(--light); }

/* Quote */
.quote { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.quote blockquote { margin: 0; text-align: center; font-family: var(--serif-text); font-size: 30px; line-height: 1.35; color: var(--text); }
.quote blockquote::before { content: "\201C"; display: block; font-size: 64px; line-height: 1; color: #b5b5b5; margin-bottom: 4px; }
.quote img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

/* Parallax: image moves inside a clipped frame */
.plx { position: relative; overflow: hidden; }
.plx-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.plx-layer { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
html.js [data-plx] { transform: translate3d(0, var(--py, 0px), 0) scale(var(--ps, 1.18)); will-change: transform; }
html.js .plx-bg [data-plx] { --ps: 1.32; }

/* Scroll reveal */
html.js [data-reveal] { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity .9s cubic-bezier(.22,.61,.36,1) var(--d, 0s), transform .9s cubic-bezier(.22,.61,.36,1) var(--d, 0s); }
html.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.js [data-plx] { transform: none; }
  html { scroll-behavior: auto; }
}

/* Partners */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
.partner { text-align: center; }
.partner__logo { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #fff; }
.partner__logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.partner__logo img.logo-small { max-width: 60%; }
.partner__logo--photo img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }
.partner h4 { margin-bottom: 8px; }
.partner p { font-size: 14px; margin-bottom: 12px; }
.partner a { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text); text-decoration: none; border-bottom: 1px solid currentColor; }

/* Let's Connect */
.connect { max-width: 760px; margin: 0 auto; text-align: center; }
.connect p { margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--dark); color: #a9a9a9; text-align: center; padding: 32px 24px; font-size: 14px; }
.site-footer p { color: inherit; margin: 0; }

/* Message widget (replaces the GoDaddy chat bubble) */
.msg-toggle { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--black); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.msg-toggle svg { width: 28px; height: 28px; }
.msg-panel { position: fixed; right: 24px; bottom: 92px; z-index: 60; width: min(360px, calc(100vw - 32px)); background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.2); padding: 24px; display: none; }
.msg-panel.open { display: block; }
.msg-panel h4 { margin-bottom: 4px; }
.msg-panel p { font-size: 14px; }
.msg-panel label { display: block; font-size: 13px; color: var(--muted); margin-top: 12px; }
.msg-panel input, .msg-panel textarea { width: 100%; padding: 10px; border: 1px solid #cfcfcf; font: inherit; font-size: 15px; color: var(--text); background: #fff; }
.msg-panel textarea { min-height: 96px; resize: vertical; }
.msg-panel .btn { width: 100%; margin-top: 16px; }
.msg-close { position: absolute; top: 10px; right: 10px; background: none; border: 0; cursor: pointer; font-size: 24px; line-height: 1; color: var(--muted); }

.hp { position: absolute; left: -9999px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Tablet */
@media (max-width: 1100px) {
  .site-header .bar { padding: 0 24px; }
  .nav ul { gap: 18px; }
  .nav a { font-size: 13px; }
  .home .brand { left: 24px; width: 120px; height: 120px; }
}

/* Mobile */
@media (max-width: 860px) {
  h1, h2 { font-size: 36px; }
  .section { padding: 48px 0; }
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); display: none; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .nav li a { display: block; padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
  .home .site-header { border-bottom: 1px solid var(--line); }
  .home .brand { position: static; width: 120px; height: 48px; padding: 0; box-shadow: none; }
  .brand { width: 120px; height: 48px; }
  .hero, .split, .cta-split, .contact-page, .feature, .quote { grid-template-columns: minmax(0, 1fr); }
  .hero__body h1 { max-width: 100%; }
  .hero__media { min-height: 0; aspect-ratio: 1200 / 628; }
  .hero__body { padding: 48px 24px; }
  .cards3, .partners { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .feature--reverse .feature__media { order: 0; }
  .feature + .feature { margin-top: 48px; }
  .feature--story { grid-template-columns: minmax(0, 1fr); }
  .split__body, .contact-page__body { padding: 48px 24px; }
  .split__media { min-height: 280px; }
  .split--media-first .split__media { order: -1; }
  .cta-split__body { padding: 48px 24px; }
  .contact-card { padding: 40px 24px; }
  .contact-banner { padding: 56px 16px; }
  .subscribe-row { flex-direction: column; align-items: stretch; }
  .quote blockquote { font-size: 24px; }
}
