@font-face{font-family:'DM Sans';font-style:normal;font-weight:400 700;font-display:swap;src:url(fonts/dm-sans-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Outfit';font-style:normal;font-weight:500 800;font-display:swap;src:url(fonts/outfit-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}

/* ==========================================================================
   Dental On Macquarie – homepage styles
   Palette taken from the doM logo: charcoal #3C4448, orange #FE800C, white.
   ========================================================================== */

:root {
  --charcoal: #3C4448;
  --charcoal-900: #272D30;
  --charcoal-800: #323A3E;
  --charcoal-600: #4F585D;
  --ink: #22282B;
  --muted: #5E686D;
  --line: #E2E5E4;
  --paper: #F6F5F2;
  --paper-2: #EEEDE9;
  --white: #FFFFFF;
  --orange: #FE800C;
  --orange-bright: #FF8E2B;
  --orange-300: #FFA04A;
  --orange-ink: #B25400;
  --orange-50: #FFF3E7;
  --orange-100: #FFE2C6;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 14px 34px -16px rgba(39, 45, 48, .28);
  --font-display: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
address { font-style: normal; }
ul { margin: 0; padding: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.1; letter-spacing: -.015em; color: inherit; }
h1 { font-size: clamp(2.75rem, 6.5vw, 4.75rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.25; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.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; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.cta-band :focus-visible, .btn-primary:focus-visible { outline-color: var(--charcoal-900); }

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: .75rem 1rem; background: var(--orange); color: var(--charcoal-900); font-weight: 700; border-radius: 8px; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.container { width: min(1160px, 100% - 2rem); margin-inline: auto; }
@media (min-width: 768px) { .container { width: min(1160px, 100% - 3rem); } }

[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin: 0 0 .85rem;
}
.eyebrow-on-dark { color: var(--orange-300); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: #D6DBDE; max-width: 36rem; margin-top: 1.4rem; }
.section-head { max-width: 46rem; margin-bottom: 2.75rem; }
.section-intro { margin-top: 1rem; font-size: 1.1rem; color: var(--muted); }
.prose p + p { margin-top: 1rem; }
.prose a { color: var(--orange-ink); font-weight: 600; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose a:hover { color: var(--charcoal-900); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.0625rem; }
.btn-primary { background: var(--orange); border-color: var(--orange); color: var(--charcoal-900); }
.btn-primary:hover { background: var(--orange-bright); border-color: var(--orange-bright); box-shadow: 0 10px 24px -10px rgba(254, 128, 12, .7); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }
.btn-dark { background: var(--charcoal-900); border-color: var(--charcoal-900); color: #fff; }
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-outline { background: transparent; border-color: var(--charcoal); color: var(--charcoal-900); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--charcoal-900); color: var(--charcoal-900); }
.btn-outline-dark:hover { background: var(--charcoal-900); color: #fff; }

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */
.topbar { background: var(--charcoal-900); color: #C9CFD2; font-size: .85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: .5rem 1.5rem; flex-wrap: wrap; min-height: 38px; padding: .35rem 0; }
.topbar-hours { display: none; align-items: center; gap: .45rem; }
.topbar-phones { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--orange-300); }
.topbar-label { color: #C9CFD2; font-weight: 500; }
@media (min-width: 640px) { .topbar-hours { display: inline-flex; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 118px; height: auto; }
@media (min-width: 768px) { .brand img { width: 150px; } }

.site-nav ul { list-style: none; display: flex; gap: 1.6rem; }
.site-nav a { display: inline-block; padding: .35rem 0; color: #E6EAEC; font-weight: 500; font-size: .95rem; text-decoration: none; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.site-nav a:hover { color: #fff; border-color: var(--orange); }
.nav-contact { display: none; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-actions .btn { gap: 0; }
.btn-extra { display: none; }
@media (min-width: 420px) { .btn-extra { display: inline; } }

.nav-toggle { display: none; position: relative; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 12px; background: transparent; cursor: pointer; }
.burger, .burger::before, .burger::after { position: absolute; left: 11px; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; content: ""; }
.burger { top: 20px; }
.burger::before { left: 0; top: -6px; }
.burger::after { left: 0; top: 6px; }
.nav-open .burger { background: transparent; }
.nav-open .burger::before { transform: translateY(6px) rotate(45deg); }
.nav-open .burger::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .6);
    padding: .5rem 1rem 1.5rem;
  }
  .nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: .9rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .site-nav ul a:hover { border-color: rgba(255, 255, 255, .08); }
  .nav-contact { display: grid; gap: .35rem; margin-top: 1.25rem; }
  .nav-contact a { display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 0; color: #C9CFD2; text-decoration: none; font-size: .95rem; border: 0; }
  .nav-contact a:hover { color: #fff; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 calc(clamp(3.5rem, 8vw, 6.5rem) + 3rem);
  color: #fff;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(254, 128, 12, .16), transparent 62%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-800) 100%);
}
.hero-rings { position: absolute; right: -240px; top: -130px; width: 720px; height: 720px; pointer-events: none; }
@media (max-width: 959px) { .hero-rings { display: none; } }
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; } }
.hero h1 .accent { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 2.25rem; color: #C9CFD2; font-size: .95rem; }
.hero-facts li { display: inline-flex; align-items: center; gap: .55rem; }
.hero-facts li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.hero-card-title { font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #C9CFD2; margin-bottom: .75rem; }
.clinic-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
}
.clinic-name { grid-column: 1; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.clinic-addr { grid-column: 1; font-size: .92rem; color: #C9CFD2; }
.clinic-phone { grid-column: 2; grid-row: 1 / span 2; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: .01em; transition: color .2s; }
.clinic-row:hover .clinic-phone { color: var(--orange-300); }
.hero-card-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.hero-hours { display: inline-flex; align-items: center; gap: .5rem; color: #C9CFD2; font-size: .92rem; }

/* --------------------------------------------------------------------------
   Photography
   -------------------------------------------------------------------------- */
.welcome { background: var(--paper); }
.welcome .container { position: relative; z-index: 2; margin-top: -4.5rem; }
@media (min-width: 960px) { .welcome .container { margin-top: -6rem; } }
.welcome-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 34px 60px -30px rgba(39, 45, 48, .55);
}
@media (min-width: 640px) { .welcome-media { aspect-ratio: 16 / 9; } }
@media (min-width: 960px) { .welcome-media { aspect-ratio: 21 / 9; } }
.welcome-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.section-after-welcome { padding-top: clamp(2.75rem, 5vw, 4.5rem); }

.aside-media { margin-top: 1.75rem; aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
@media (min-width: 900px) { .aside-media { margin-top: 2.25rem; } }
.aside-media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(3.75rem, 8vw, 6.5rem) 0; }
.section-tight { padding-top: 0; }
.section-alt { background: var(--white); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(700px 420px at 0% 100%, rgba(254, 128, 12, .12), transparent 60%),
    var(--charcoal);
}
.split { display: grid; gap: 2.25rem; }
@media (min-width: 900px) { .split { grid-template-columns: 5fr 7fr; gap: 4.5rem; align-items: start; } }
.split-lead { margin-top: 1.25rem; color: #D6DBDE; font-size: 1.08rem; }

.icon-badge { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--orange-50); color: var(--orange-ink); margin-bottom: 1.1rem; }
.icon-badge .ico { width: 24px; height: 24px; }
.icon-badge-dark { background: rgba(254, 128, 12, .16); color: var(--orange-300); }

.values { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.value h3 { font-size: 1.15rem; }
.value p { margin-top: .5rem; color: var(--muted); font-size: .98rem; }

.service-grid { list-style: none; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.service { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: transform .2s, box-shadow .2s, border-color .2s; }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--orange-100); }
.service h3 { font-size: 1.1rem; }
.service p { margin-top: .45rem; color: var(--muted); font-size: .95rem; }
.service-note { margin-top: 2.25rem; max-width: 52rem; color: var(--muted); }
.service-note a { color: var(--orange-ink); font-weight: 600; text-underline-offset: 3px; }
.service-note a:hover { color: var(--charcoal-900); }

.cause-grid { list-style: none; display: grid; gap: 1rem; }
@media (min-width: 640px) { .cause-grid { grid-template-columns: repeat(2, 1fr); } .cause-wide { grid-column: 1 / -1; } }
.cause { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 1.5rem; }
.cause h3 { font-size: 1.1rem; color: #fff; }
.cause p { margin-top: .4rem; color: #C9CFD2; font-size: .95rem; }

.team-groups { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .team-groups { grid-template-columns: 1fr 1fr; } }
.team-group { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; }
.team-group h3 { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.team-group h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.team-list { list-style: none; }
.team-list li { display: flex; align-items: center; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.team-list li:first-child { border-top: 0; }
.avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--charcoal); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem; flex: none; letter-spacing: .02em; }
.avatar-alt { background: var(--orange); color: var(--charcoal-900); }
.person { display: grid; line-height: 1.35; }
.person strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.person span { color: var(--muted); font-size: .92rem; }
.team-note { margin-top: 1.75rem; max-width: 52rem; color: var(--muted); }

.location-grid { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location { display: flex; flex-direction: column; gap: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; }
.location h3 { font-size: 1.55rem; }
.location address { font-size: 1.05rem; }
.location dl { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.25rem; margin: .25rem 0 0; }
.location dt { color: var(--muted); font-size: .9rem; padding-top: .1rem; }
.location dd { margin: 0; }
.location dd a { color: var(--charcoal-900); font-weight: 600; text-decoration: none; }
.location dd a:hover { color: var(--orange-ink); }
.location-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: auto; padding-top: .5rem; }
.location dd { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 479px) {
  .location { padding: 1.5rem; }
  .location dl { grid-template-columns: 1fr; gap: 0; }
  .location dt { margin-top: .6rem; }
  .location dt:first-of-type { margin-top: 0; }
}

.careers-card { display: grid; gap: 1.75rem; background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--orange); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); }
@media (min-width: 900px) { .careers-card { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.careers-card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.careers-card p { margin-top: 1rem; color: var(--muted); }
.careers-actions { display: flex; flex-direction: column; gap: .6rem; }
.careers-card p a { color: var(--orange-ink); font-weight: 600; text-underline-offset: 3px; overflow-wrap: anywhere; }
.careers-card p a:hover { color: var(--charcoal-900); }
@media (min-width: 900px) { .careers-actions { align-items: flex-end; } }

.cta-band { background: var(--orange); color: var(--charcoal-900); padding: clamp(3.25rem, 7vw, 5.5rem) 0; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.cta-band p { margin: .9rem auto 0; max-width: 34rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2rem; }
.cta-band .btn-primary { display: none; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: #C9CFD2; padding: 3.5rem 0 2rem; font-size: .95rem; }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand img { width: 160px; }
.footer-brand p { margin-top: 1.25rem; max-width: 22rem; }
.site-footer h3 { color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #E6EAEC; text-decoration: none; }
.site-footer a:hover { color: var(--orange-300); }
.footer-links { list-style: none; display: grid; gap: .45rem; }
.footer-phone { display: inline-block; margin-top: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social a { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); color: #fff; transition: background-color .2s, border-color .2s, color .2s; }
.social a:hover { background: var(--orange); border-color: var(--orange); color: var(--charcoal-900); }
.social .ico { width: 20px; height: 20px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 1.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
