:root {
  --teal: #1a9e8f;
  --teal-dark: #157a6e;
  --teal-light: #e6f7f5;
  --navy: #1a2332;
  --charcoal: #2d3748;
  --slate: #4a5568;
  --warm-gray: #6b7280;
  --light-gray: #f0f2f5;
  --cream: #faf9f7;
  --white: #ffffff;
  --green-cross: #00a651;
  --coral: #e8705a;
  --gold: #d4a853;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 0; }
body { font-family: 'DM Sans', sans-serif; color: var(--charcoal); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { background: white; border-bottom: 1px solid rgba(0,0,0,0.06); }
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 60px; width: auto; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.25rem; }
.nav-logo-sub { font-size: 0.7rem; color: var(--warm-gray); letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-size: 0.9rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-links a.active { background: var(--teal); color: white; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--teal-dark); text-decoration: none; font-size: 0.9rem; }
.nav-phone svg { width: 18px; height: 18px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 99; padding: 80px 24px 24px; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 14px 16px; border-radius: 10px; text-decoration: none; color: var(--charcoal); font-size: 1rem; font-weight: 500; transition: background 0.2s; }
.mobile-menu a:hover { background: var(--teal-light); }
.mobile-menu .btn-primary { text-align: center; color: white; margin-top: 8px; }

/* HERO */
.hero {  background: linear-gradient(135deg, rgba(26,35,50,0.82) 0%, rgba(36,59,85,0.78) 100%), url('../images/howth-harbour.png') center/cover no-repeat; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(26,158,143,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,166,81,0.08) 0%, transparent 50%); }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content h1 { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: white; line-height: 1.15; margin-bottom: 16px; }
.hero-content h1 span { color: var(--teal); }
.hero-content p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,158,143,0.3); }
.btn-outline { background: rgba(255,255,255,0.1); color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-white { background: white; color: var(--teal-dark); font-weight: 700; padding: 16px 36px; border-radius: 12px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* HERO CARD */
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 24px; }
.hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pharmacy-cross { width: 38px; height: 38px; background: var(--green-cross); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.pharmacy-cross svg { width: 20px; height: 20px; color: white; }
.hero-card-header div h3 { color: white; font-size: 0.95rem; }
.hero-card-header div p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.hours-grid { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.hours-row.today { background: rgba(26,158,143,0.2); border: 1px solid rgba(26,158,143,0.3); }
.hours-row .day { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }
.hours-row .time { color: white; font-size: 0.85rem; font-weight: 600; }
.hours-row .open-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--teal); letter-spacing: 0.05em; }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 12px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--warm-gray); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 28px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); background: var(--cream); transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 24px; height: 24px; }
.service-icon.teal { background: var(--teal-light); color: var(--teal); }
.service-icon.coral { background: #fde8e4; color: var(--coral); }
.service-icon.gold { background: #fdf3e0; color: var(--gold); }
.service-icon.green { background: #e8f5e9; color: var(--green-cross); }
.service-icon.navy { background: #e3e8f0; color: var(--navy); }
.service-icon.purple { background: #ede7f6; color: #7c3aed; }
.service-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.6; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); position: relative; overflow: hidden; }

.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); background: var(--cream); }
.contact-card-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.6; }
.contact-card a { color: var(--teal-dark); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.contact-map iframe { width: 100%; flex: 1; min-height: 280px; border: 0; }

/* PAGE HEADER (sub-pages) */
.page-header {  background: linear-gradient(135deg, var(--navy) 0%, #243b55 100%); padding: 48px 24px; position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: white; }
.breadcrumb { margin-bottom: 12px; font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }
.breadcrumb span:last-child { color: rgba(255,255,255,0.8); margin: 0; }

/* PAGE CONTENT LAYOUT */
.page-content { background: var(--white); }
.page-content .container { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.content-card { background: var(--cream); border-radius: var(--radius); padding: 40px; border: 1px solid rgba(0,0,0,0.06); }
.content-card h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--navy); margin: 28px 0 12px; }
.content-card h2:first-child { margin-top: 0; }
.content-card p { color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.content-card ul { margin: 12px 0 20px 20px; color: var(--slate); }
.content-card ul li { margin-bottom: 8px; line-height: 1.6; }
.content-card a { color: var(--teal-dark); font-weight: 500; }
.content-card a:hover { text-decoration: underline; }
.content-card .highlight-box { background: var(--teal-light); border: 1px solid rgba(26,158,143,0.2); border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; }
.content-card .highlight-box p { color: var(--teal-dark); margin: 0; }
.content-card .warning-box { background: #fff3e0; border: 1px solid #ffe0b2; border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; }
.content-card .warning-box p { color: #e65100; margin: 0; }

/* SIDEBAR */
.content-sidebar { position: sticky; top: 24px; }
.sidebar-card { background: var(--cream); border-radius: var(--radius); padding: 24px; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 16px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.sidebar-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.7; margin-bottom: 8px; }
.sidebar-card a { color: var(--teal-dark); text-decoration: none; font-weight: 500; }

/* PHOTO SERVICES */
.photo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.photo-info h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; }
.photo-info > p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.photo-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.photo-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.05); }
.photo-list li .check { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; background: var(--teal-light); color: var(--teal); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.photo-list li .check svg { width: 14px; height: 14px; }
.photo-list li div strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 2px; }
.photo-list li div span { font-size: 0.82rem; color: var(--warm-gray); }
.photo-visual { background: linear-gradient(135deg, var(--navy), #243b55); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: center; }

.photo-visual-content { position: relative; z-index: 1; }
.photo-visual h4 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: white; margin-bottom: 12px; }
.photo-visual p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.photo-visual .tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.photo-tag { padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }

/* SERVICES LIST PAGE */
.services-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.services-list-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); background: var(--cream); text-decoration: none; color: inherit; transition: all 0.25s; }
.services-list-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.services-list-card .svc-icon { width: 40px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.services-list-card .svc-icon svg { width: 20px; height: 20px; }
.services-list-card div h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.services-list-card div p { font-size: 0.8rem; color: var(--warm-gray); margin-top: 2px; }

/* BOOK APPOINTMENT PAGE */
.book-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.book-option { padding: 28px; border-radius: var(--radius); border: 2px solid rgba(0,0,0,0.06); background: var(--cream); text-align: center; transition: all 0.25s; }
.book-option:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.book-option .book-icon { font-size: 2.5rem; margin-bottom: 12px; }
.book-option h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.book-option p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 16px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 48px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; gap: 32px; flex-wrap: wrap; }
.footer-brand p { margin-top: 12px; font-size: 0.85rem; max-width: 300px; line-height: 1.7; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: white; }
.footer-links h5 { color: white; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: var(--teal); color: white; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.psi-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 6px; background: rgba(255,255,255,0.06); font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .hero-content h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .photo-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-content .container { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .section-title { font-size: 2rem; }
  .cta-inner h2 { font-size: 2rem; }
  .services-list-grid { grid-template-columns: 1fr; }
  .book-options { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-inner { padding: 28px 16px; }
  .footer-top { flex-direction: column; }
  .page-header h1 { font-size: 1.8rem; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.6s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }

/* HERO IMAGE */
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-image { border-radius: 14px; overflow: hidden; border: 2px solid rgba(255,255,255,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.3); max-height: 280px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ABOUT PAGE IMAGE */
.about-image { border-radius: var(--radius); overflow: hidden; margin: 24px 0; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-md); }
.about-image img { width: 100%; height: auto; display: block; }

/* BOOKING WIDGET */
.booking-widget-container { margin-top: 40px; padding: 32px; border-radius: var(--radius); background: var(--cream); border: 1px solid rgba(0,0,0,0.06); min-height: 500px; }
.booking-widget-container h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.booking-widget-container > p { color: var(--warm-gray); margin-bottom: 24px; font-size: 0.95rem; }
#hh-widget-iframe { width: 100%; min-height: 400px; border: 0; border-radius: var(--radius-sm); }

@media (max-width: 600px) {
  .nav-logo-img { height: 44px; }
}
