/* gotreewalk.com
 *
 * Rebuilt from the Wix original. Every colour here was read out of the live
 * site's stylesheet, not sampled from a screenshot: sampling over a gradient
 * returns a point on the gradient rather than the token, which on the first
 * attempt produced eight plausible and entirely wrong values.
 *
 * See theme/DESIGN-REFERENCE.md for the structure this matches.
 */

:root {
  --ink:   #333333;
  --near:  #282626;
  --navy:  #324158;
  --green: #46825E;
  --blue:  #116DFF;
  --muted: #8F8F8F;
  --hair:  #E2E2E2;
  --white: #FFFFFF;
  --wash:  #E9F2FE;

  --gutter: clamp(1.25rem, 5vw, 3rem);
  --wide: 1180px;
  --measure: 34em;
}

/* ---------------------------------------------------------------- layout --
 * Sections own their own content column via padding-inline rather than
 * relying on WordPress's constrained layout. Constrained leaves the group
 * full width and centres each CHILD independently, which produces two
 * different left edges on the same page and is most of what makes a rebuild
 * read as "not quite the same". Learned on the other GoDaddy site.
 */
.gotw-sec {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  padding-inline: max(var(--gutter), calc((100% - var(--wide)) / 2));
}
.gotw-sec > * { max-width: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ---------------------------------------------------------------- header -- */
.gotw-header {
  background: var(--white);
  border-bottom: 1px solid var(--hair);
  position: relative;
  z-index: 5;
}
.gotw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
  padding-inline: max(var(--gutter), calc((100% - var(--wide)) / 2));
}
/* The wordmark is an image on the Wix site. Set as live text in Moderat Thin
 * instead: it is the same typeface, it stays crisp at any density, it scales
 * for screen readers, and it is one less asset to serve. */
.gotw-wordmark {
  font-weight: 100;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: 0.42em;
  color: var(--near);
  text-decoration: none;
  white-space: nowrap;
}
.gotw-nav-cta {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
.gotw-nav-cta:hover { color: var(--blue); }

/* ------------------------------------------------------------------ hero -- */
.gotw-hero {
  background: linear-gradient(105deg, #C6E3E4 0%, #DCE7D4 38%, #EFF3F7 72%, #F7F9FB 100%);
  text-align: center;
  padding-block: clamp(3.25rem, 7vw, 5rem);
}
.gotw-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  color: var(--near);
  letter-spacing: -0.01em;
}
.gotw-hero .gotw-hero-sub {
  margin: 0 0 1.5rem;
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}
.gotw-hero ul.gotw-checks {
  list-style: none;
  margin: 0 auto 1.9rem;
  padding: 0;
  display: inline-block;
  text-align: left;
}
.gotw-checks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.gotw-checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.2em;
  width: 0.95em; height: 0.95em;
  border: 1px solid var(--near);
  box-sizing: border-box;
}
/* The tick itself: two borders on a rotated box. Drawn rather than set as a
   character because the glyph coverage for boxed ticks is unreliable across
   platforms, and drawn rather than a background gradient because the gradient
   version rendered as an X. */
.gotw-checks li::after {
  content: "";
  position: absolute;
  left: 0.26em; top: 0.36em;
  width: 0.3em; height: 0.55em;
  border: solid var(--near);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------- buttons -- */
.gotw-btn {
  display: inline-block;
  background: var(--near);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--near);
  transition: background .15s ease, color .15s ease;
}
.gotw-btn:hover { background: var(--white); color: var(--near); }

/* ------------------------------------------------------------- trust bar -- */
.gotw-trust {
  background: var(--white);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  padding-inline: max(var(--gutter), calc((100% - var(--wide)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  flex-wrap: wrap;
}
.gotw-trust p {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 17em;
  line-height: 1.35;
}
.gotw-trust img { height: 105px; width: auto; }
.gotw-trust img.gotw-cpa { height: 107px; }

/* -------------------------------------------------------------- services -- */
.gotw-services {
  background: linear-gradient(170deg, #DCE8FA 0%, #E4EAFB 45%, #F1F1F6 100%);
}
.gotw-eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}
.gotw-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
@media (min-width: 860px) {
  .gotw-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.gotw-split h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--near);
}
.gotw-split p { max-width: var(--measure); font-size: 0.95rem; }

/* The service list: a plain list with hairline rules, which is what the
 * original is. Not links on the Wix site either, so not links here. */
.gotw-servicelist { list-style: none; margin: 0; padding: 0; }
.gotw-servicelist li {
  border-bottom: 1px solid var(--near);
  padding: 0.95rem 0;
  font-size: 0.95rem;
  color: var(--near);
}

/* ---------------------------------------------------------- testimonials -- */
.gotw-quotes {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 780px) {
  .gotw-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gotw-quote {
  background: var(--white);
  border: 1px solid var(--hair);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.gotw-quote img.gotw-stars { height: 20px; width: auto; margin-bottom: 0.9rem; }
.gotw-quote-lead { font-weight: 700; color: var(--near); margin: 0 0 0.8rem; }
.gotw-quote p { font-size: 0.92rem; margin: 0 0 0.8rem; }
.gotw-quote-by { font-weight: 700; font-size: 0.85rem; color: var(--near); margin: 0; line-height: 1.4; }
.gotw-quote-by span { display: block; font-weight: 400; color: var(--muted); }

/* -------------------------------------------------------------- numbered -- */
.gotw-numbered {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}
@media (min-width: 780px) {
  .gotw-numbered { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gotw-num { color: var(--green); font-weight: 700; font-size: 0.9rem; margin: 0 0 0.6rem; }
.gotw-numbered h3 { margin: 0 0 0.7rem; font-size: 1rem; color: var(--near); }
.gotw-numbered p { margin: 0; font-size: 0.87rem; color: var(--ink); }

/* --------------------------------------------------------------- clients -- */
.gotw-clients {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: clamp(1.5rem, 4vw, 3rem);
}
.gotw-clients img { height: 58px; width: auto; }

/* ------------------------------------------------------------------- FAQ --
 * Native details/summary. No script, works without JS, and the question stays
 * a real heading so the document outline and the FAQPage schema extraction
 * both keep working.
 */
.gotw-faq { border-top: 1px solid var(--hair); max-width: 46em; }
.gotw-qa { border-bottom: 1px solid var(--hair); }
.gotw-qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
}
.gotw-qa summary::-webkit-details-marker { display: none; }
.gotw-qa summary h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--near);
  display: inline;
}
.gotw-qa summary::after {
  content: "+";
  position: absolute;
  right: 0.35rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1;
}
.gotw-qa[open] summary::after { content: "\2013"; }
.gotw-qa p { margin: 0 0 1.15rem; font-size: 0.93rem; max-width: var(--measure); }

/* ------------------------------------------------------------------ form -- */
.gotw-contact { background: var(--wash); }
.gotw-form label { display: block; margin-bottom: 1.15rem; }
.gotw-form .gotw-label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.gotw-form .gotw-req { color: #FF4040; }

/* !important on these three is the documented remedy, not laziness. The
 * platform injects `body .wp-site-blocks input:not(...)` with eight chained
 * :not() clauses, setting colours from Twenty Twenty-Five's palette slugs.
 * This theme does not define those slugs, so they resolve to nothing and the
 * fields render with no background and no border: invisible rather than
 * merely wrong. It happened on the other GoDaddy site and cost real time. */
.gotw-form input,
.gotw-form select,
.gotw-form textarea {
  display: block;
  width: 100%;
  /* content-box here would add padding and border OUTSIDE the declared width,
   * pushing each control past its grid cell and into the one beside it. That
   * exact defect shipped on the other site and read as "the form is broken". */
  box-sizing: border-box;
  background: var(--white) !important;
  color: var(--ink) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--near) !important;
  border-radius: 0;
  padding: 0.6rem 0.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: transparent !important;
}
.gotw-form input:focus,
.gotw-form select:focus,
.gotw-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.gotw-form textarea { resize: vertical; min-height: 4.5rem; }
.gotw-form-grid { display: grid; gap: 0 1.25rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 620px) {
  .gotw-form-grid.gotw-form-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gotw-submit {
  background: var(--near) !important;
  color: var(--white) !important;
  border: 1px solid var(--near) !important;
  padding: 0.85rem 2.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  width: auto !important;
  border-radius: 0;
}
.gotw-submit:hover { background: var(--white) !important; color: var(--near) !important; }
.gotw-formnote { font-size: 0.85rem; color: var(--muted); }

/* ---------------------------------------------------------------- footer -- */
.gotw-footer {
  background: var(--white);
  border-top: 1px solid var(--hair);
  padding-block: clamp(2rem, 4vw, 2.75rem);
  padding-inline: max(var(--gutter), calc((100% - var(--wide)) / 2));
}
.gotw-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.gotw-footer address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.55;
}
.gotw-footer a { color: var(--ink); }
.gotw-footer img { height: 42px; width: auto; }

/* Skip link, because the header CTA is the first focusable thing on the page
 * and keyboard users should not have to tab through it on every page. */
.gotw-skip {
  position: absolute; left: -9999px;
  background: var(--near); color: var(--white);
  padding: 0.6rem 1rem; z-index: 100;
}
.gotw-skip:focus { left: 0.5rem; top: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* -------------------------------------------------------------- calendly --
 * Replaces the Wix Bookings widget. Given a minimum height so the page does
 * not collapse and then jump when the iframe loads.
 */
.gotw-calendly { border: 1px solid var(--hair); background: var(--white); min-height: 720px; }
.gotw-calendly iframe { display: block; width: 100%; border: 0; }

/* Clutch badges are links. Keep them looking like badges, not like links. */
.gotw-trust a { display: inline-flex; line-height: 0; text-decoration: none; }
.gotw-trust a:hover img { opacity: 0.85; }
