/* ======== fonts ========*/

:root {
    --font-body: "Newsreader", "Charter", "Cambria", serif;
    --font-title: "Fraunces", "Baskerville", "Georgia", serif;
    --font-editorial: "Forum", "Palatino", "Times New Roman", serif;
    --font-luxe: "Cinzel", "Trajan Pro", "Times New Roman", serif;
    --font-accent: "Marcellus SC", "Cinzel", "Times New Roman", serif;
    --font-ref-light: "Cormorant SC", "Cormorant Garamond", "Georgia", serif;
    --font-ui: "Geist", "Lexend", "Segoe UI", sans-serif;

    --fs-xs: 0.75rem;
    --fs-small: 0.875rem;
    --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.06rem);
    --fs-lead: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
    --fs-h3: clamp(1.4rem, 2vw, 1.8rem);
    --fs-h4: clamp(1.2rem, 1.5vw, 1.45rem);
    --fs-h5: clamp(1.05rem, 1.2vw, 1.2rem);
    --fs-h6: 1rem;
    --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
}


:root {
    --color-turquoise: #1aa6a6;
    --color-turquoise-dark: #0f6f74;
    --turquoise-pale: #d8f4f2;
    --color-coral: #f27d72;
     --color-coral-strong: #f4220f;
    --color-coral-soft: #ffe7e2;
    --color-ink: #263238;
    --color-muted: #65767a;
    --color-line: #d9ecec;
    --color-soft: #f3fbfb;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(18, 92, 96, 0.12);
    --radius-card: 22px;
    --radius-pill: 999px;
    --container: 85%;
    --container-medium: 75%;
    --container-narrow: 65%;
    --container-full: 100%;
    --container-big: 95%;

    
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 122px;
}

#services-title,
#work-title,
#method-title,
#contact {
    scroll-margin-top: 102px;
}


body {
    margin: auto;
    width: 100%;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
}

em {
    font-style: italic;
    font-weight: 600;
}

.highlight {
    color: var(--color-turquoise-dark);
    font-style: italic;
    font-weight: 600;
}

[id] {
    scroll-margin-top: 10px;
}

.section,
.hero,
.cta,
.site-anchor-nav,
.site-header,
.site-footer {
    width: var(--container);
     margin: auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-coral);
    outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--color-turquoise-dark);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 500;
}

h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
}

h6 {
    font-size: var(--fs-h6);
    font-weight: 500;
}


.container {
    width: min(100% - .2rem, var(--container));
    margin-inline: auto;
}

.container-full {
    width: min(100% - .2rem, var(--container-full));
    margin-inline: auto;
}

.container-big {
    width: min(100% - .2rem, var(--container-big));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    transform: translateY(-140%);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: var(--color-ink);
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.dark > p,
.dark > h2 {
  color:#ffffff;
}


dl {
    border-left: 3px solid gold;
    padding-left: 1.6rem;
}

dt {
    position: relative;
    font-weight: 700;
    color: var(--color-white);
}

dt::before {
    content: "";
    position: absolute;
    left: -2.05rem;
    top: .35em;

    width: .8rem;
    height: .8rem;

    border-radius: 50%;
    background: gold;
}

dd {
    position: relative;
    margin: .5rem 0;
    padding-left: 1.5rem;
    color: var(--color-soft);
}

dd::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;

    width: 1rem;
    height: 3px;

    background: gold;
    border-radius: 2px;
}
